
    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_da4b6ab7e4ed2bccbdecabc2.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_b4c2e7c86431bf1f44b9e272.woff2')format("woff");}.ff2_c00000{font-family:ff2_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:ff3_c00000;src:url('chunks/assets/font_07d42792feda6ae4d216aa7c.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.884277;font-style:normal;font-weight:normal;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_9759580d8e615d9b8d1d1bd8.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.158691;font-style:normal;font-weight: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_b89b9118786d3d6fe8649182.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:1.173828;font-style:normal;font-weight: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_89ba7174d819397e142be005.woff2')format("woff");}.ff6_c00000{font-family:ff6_c00000;line-height:0.721680;font-style:normal;font-weight: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_71cd4f959740b7b08bea23d8.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:1.054688;font-style:normal;font-weight: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_574935ef1a88a7d99ca1ed20.woff2')format("woff");}.ff8_c00000{font-family:ff8_c00000;line-height:0.679199;font-style:normal;font-weight: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_a611c2dde4d93fb594a93cb5.woff2')format("woff");}.ff9_c00000{font-family:ff9_c00000;line-height:0.883789;font-style:normal;font-weight: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_7e26fce9440c0beba53850ad.woff2')format("woff");}.ffa_c00000{font-family:ffa_c00000;line-height:0.677734;font-style:normal;font-weight: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_6a2f5c7d3a881703c13b12ad.woff2')format("woff");}.ffb_c00000{font-family:ffb_c00000;line-height:0.829000;font-style:normal;font-weight: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_84b290060cd3e2ae21b23296.woff2')format("woff");}.ffc_c00000{font-family:ffc_c00000;line-height:0.874023;font-style:normal;font-weight: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_9de41822a3ffb37a7c46982f.woff2')format("woff");}.ffd_c00000{font-family:ffd_c00000;line-height:1.113281;font-style:normal;font-weight: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_c1f340692fdc0b0bad7fea5b.woff2')format("woff");}.ffe_c00000{font-family:ffe_c00000;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00000;src:url('chunks/assets/font_c1ecb7ba1a400043ef2c7c6c.woff2')format("woff");}.fff_c00000{font-family:fff_c00000;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00000;src:url('chunks/assets/font_6fd3582185141c559b9b5aaa.woff2')format("woff");}.ff10_c00000{font-family:ff10_c00000;line-height:0.910645;font-style:normal;font-weight: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_c00000;src:url('chunks/assets/font_31fe62620a0e197d072fb2ca.woff2')format("woff");}.ff11_c00000{font-family:ff11_c00000;line-height:0.687988;font-style:normal;font-weight: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_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff12_c00000{font-family:ff12_c00000;line-height:1.005371;font-style:normal;font-weight: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_c00000;src:url('chunks/assets/font_5a258d6a2f61d6c4f0f69bf2.woff2')format("woff");}.ff13_c00000{font-family:ff13_c00000;line-height:1.575000;font-style:normal;font-weight: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_c00000;src:url('chunks/assets/font_8bef8bf63f88fab97a09fd35.woff2')format("woff");}.ff14_c00000{font-family:ff14_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00000;src:url('chunks/assets/font_d51d7df4364157fcbc7f1545.woff2')format("woff");}.ff15_c00000{font-family:ff15_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:ff16_c00000;src:url('chunks/assets/font_19d723b3cb6ba52faf5b82a0.woff2')format("woff");}.ff16_c00000{font-family:ff16_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00000;src:url('chunks/assets/font_538a83f8434e755e8ac300c4.woff2')format("woff");}.ff17_c00000{font-family:ff17_c00000;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00000;src:url('chunks/assets/font_5cbe351359f034debeeec40c.woff2')format("woff");}.ff18_c00000{font-family:ff18_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00000;src:url('chunks/assets/font_05effafbd953cb64414b09cc.woff2')format("woff");}.ff19_c00000{font-family:ff19_c00000;line-height:1.220215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff1a_c00000{font-family:ff1a_c00000;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:ff1b_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff1b_c00000{font-family:ff1b_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff1c_c00000{font-family:ff1c_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00000;src:url('chunks/assets/font_b2f692337d512a3bb781f931.woff2')format("woff");}.ff1d_c00000{font-family:ff1d_c00000;line-height:0.873047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00000;src:url('chunks/assets/font_c819937a11a828fe1f96d163.woff2')format("woff");}.ff1e_c00000{font-family:ff1e_c00000;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff1f_c00000{font-family:ff1f_c00000;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:ff20_c00000;src:url('chunks/assets/font_d239cd2d487e9b05a80bee16.woff2')format("woff");}.ff20_c00000{font-family:ff20_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00000;src:url('chunks/assets/font_1b179769e669aae0e97ebb10.woff2')format("woff");}.ff21_c00000{font-family:ff21_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00000;src:url('chunks/assets/font_3a9cef40e580211cb8e323f4.woff2')format("woff");}.ff22_c00000{font-family:ff22_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:ff23_c00000;src:url('chunks/assets/font_a8cbd98e912d98772577fb06.woff2')format("woff");}.ff23_c00000{font-family:ff23_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00000;src:url('chunks/assets/font_36749ed384185c4fcc630708.woff2')format("woff");}.ff24_c00000{font-family:ff24_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00000;src:url('chunks/assets/font_dfab3f9815baafc1a46c75bd.woff2')format("woff");}.ff25_c00000{font-family:ff25_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff26_c00000{font-family:ff26_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff27_c00000{font-family:ff27_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00000;src:url('chunks/assets/font_341ce4a384a98e0dab4da798.woff2')format("woff");}.ff28_c00000{font-family:ff28_c00000;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff29_c00000{font-family:ff29_c00000;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:ff2a_c00000;src:url('chunks/assets/font_4f292286b755992da0064dfd.woff2')format("woff");}.ff2a_c00000{font-family:ff2a_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00000;src:url('chunks/assets/font_4353ef2a34344ac149efa726.woff2')format("woff");}.ff2b_c00000{font-family:ff2b_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00000;src:url('chunks/assets/font_f09084f93fb8ba5e6eff6bba.woff2')format("woff");}.ff2c_c00000{font-family:ff2c_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:ff2d_c00000;src:url('chunks/assets/font_9ba76da8efa3552cc5e63c82.woff2')format("woff");}.ff2d_c00000{font-family:ff2d_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00000;src:url('chunks/assets/font_3871bf5b8b151eb6b6a9de04.woff2')format("woff");}.ff2e_c00000{font-family:ff2e_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00000;src:url('chunks/assets/font_0c8e23b02226d2f360c8db2d.woff2')format("woff");}.ff2f_c00000{font-family:ff2f_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff30_c00000{font-family:ff30_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff31_c00000{font-family:ff31_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00000;src:url('chunks/assets/font_2c4520aeb3bb45031e592857.woff2')format("woff");}.ff32_c00000{font-family:ff32_c00000;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff33_c00000{font-family:ff33_c00000;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:ff34_c00000;src:url('chunks/assets/font_e67dab5f8b920706da114e5b.woff2')format("woff");}.ff34_c00000{font-family:ff34_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00000;src:url('chunks/assets/font_ef2686546dea750d62a4385a.woff2')format("woff");}.ff35_c00000{font-family:ff35_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00000;src:url('chunks/assets/font_d0a5718ca97b26a5df107fe0.woff2')format("woff");}.ff36_c00000{font-family:ff36_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:ff37_c00000;src:url('chunks/assets/font_e069286b7ce02494d4e9335c.woff2')format("woff");}.ff37_c00000{font-family:ff37_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00000;src:url('chunks/assets/font_704cc7e29e8f2ea1aa345f70.woff2')format("woff");}.ff38_c00000{font-family:ff38_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00000;src:url('chunks/assets/font_05c2c1f31a32a2ca60076cc1.woff2')format("woff");}.ff39_c00000{font-family:ff39_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00000;src:url('chunks/assets/font_bd27b0fabdf71a108bf205d0.woff2')format("woff");}.ff3a_c00000{font-family:ff3a_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00000;src:url('chunks/assets/font_a1f1251f198ce1cd436e2e15.woff2')format("woff");}.ff3b_c00000{font-family:ff3b_c00000;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff3c_c00000{font-family:ff3c_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff3d_c00000{font-family:ff3d_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00000;src:url('chunks/assets/font_d9ca7dc6318d4cbfb4c66a94.woff2')format("woff");}.ff3e_c00000{font-family:ff3e_c00000;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff3f_c00000{font-family:ff3f_c00000;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:ff40_c00000;src:url('chunks/assets/font_22132af8a3ae41b325058977.woff2')format("woff");}.ff40_c00000{font-family:ff40_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00000;src:url('chunks/assets/font_b90ec63417a5bc979770bdce.woff2')format("woff");}.ff41_c00000{font-family:ff41_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00000;src:url('chunks/assets/font_173b0e539e12bb16d972bf78.woff2')format("woff");}.ff42_c00000{font-family:ff42_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:ff43_c00000;src:url('chunks/assets/font_dd555899de449e1e0eb68997.woff2')format("woff");}.ff43_c00000{font-family:ff43_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00000;src:url('chunks/assets/font_144a7776e228d0b6a3caea08.woff2')format("woff");}.ff44_c00000{font-family:ff44_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00000;src:url('chunks/assets/font_9e5bb52718097376a6691a3d.woff2')format("woff");}.ff45_c00000{font-family:ff45_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff46_c00000{font-family:ff46_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00000;src:url('chunks/assets/font_bd12932487023e59e4d1cbaf.woff2')format("woff");}.ff47_c00000{font-family:ff47_c00000;line-height:0.873047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff48_c00000{font-family:ff48_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49_c00000;src:url('chunks/assets/font_e90e049901fa3a90c60fa60c.woff2')format("woff");}.ff49_c00000{font-family:ff49_c00000;line-height:0.987793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4a_c00000{font-family:ff4a_c00000;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:ff4b_c00000;src:url('chunks/assets/font_4cf1adb3d31ec00d82c9ebe7.woff2')format("woff");}.ff4b_c00000{font-family:ff4b_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c_c00000;src:url('chunks/assets/font_3fe988c42bb6b61abc24bd13.woff2')format("woff");}.ff4c_c00000{font-family:ff4c_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d_c00000;src:url('chunks/assets/font_f09084f93fb8ba5e6eff6bba.woff2')format("woff");}.ff4d_c00000{font-family:ff4d_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:ff4e_c00000;src:url('chunks/assets/font_301475c70857ef6fbb23416e.woff2')format("woff");}.ff4e_c00000{font-family:ff4e_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f_c00000;src:url('chunks/assets/font_2b6c38a083f5075dee02c0f7.woff2')format("woff");}.ff4f_c00000{font-family:ff4f_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50_c00000;src:url('chunks/assets/font_4d0c800275138293e14f9186.woff2')format("woff");}.ff50_c00000{font-family:ff50_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff51_c00000{font-family:ff51_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff52_c00000{font-family:ff52_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53_c00000;src:url('chunks/assets/font_3f1ed4db3c6f3904040134b6.woff2')format("woff");}.ff53_c00000{font-family:ff53_c00000;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff54_c00000{font-family:ff54_c00000;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:ff55_c00000;src:url('chunks/assets/font_f73a2da76d131d5d0ca2f0a9.woff2')format("woff");}.ff55_c00000{font-family:ff55_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56_c00000;src:url('chunks/assets/font_561fae0a02c8028b8c619109.woff2')format("woff");}.ff56_c00000{font-family:ff56_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57_c00000;src:url('chunks/assets/font_f8d1cfc6eb465b0bd9e9cd46.woff2')format("woff");}.ff57_c00000{font-family:ff57_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:ff58_c00000;src:url('chunks/assets/font_c462c0cf5fcb98f5ebeea5a6.woff2')format("woff");}.ff58_c00000{font-family:ff58_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59_c00000;src:url('chunks/assets/font_ca8c9b7c61ed6bca28b2f441.woff2')format("woff");}.ff59_c00000{font-family:ff59_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00000;src:url('chunks/assets/font_3e834f646f2ef630f4b849f1.woff2')format("woff");}.ff5a_c00000{font-family:ff5a_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b_c00000;src:url('chunks/assets/font_c03ccb53f27f3f5830296d2a.woff2')format("woff");}.ff5b_c00000{font-family:ff5b_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c_c00000;src:url('chunks/assets/font_3d6a77c0ee6922f12f01e762.woff2')format("woff");}.ff5c_c00000{font-family:ff5c_c00000;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d_c00000;src:url('chunks/assets/font_eb98f15d25e3e8006f6ee9f0.woff2')format("woff");}.ff5d_c00000{font-family:ff5d_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e_c00000;src:url('chunks/assets/font_c2496abcc4de78c23b6fb706.woff2')format("woff");}.ff5e_c00000{font-family:ff5e_c00000;line-height:1.034268;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff5f_c00000{font-family:ff5f_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60_c00000;src:url('chunks/assets/font_4a61b2c300decf9c46ad8499.woff2')format("woff");}.ff60_c00000{font-family:ff60_c00000;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff61_c00000{font-family:ff61_c00000;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:ff62_c00000;src:url('chunks/assets/font_a120d0928cccaa11fc7a56be.woff2')format("woff");}.ff62_c00000{font-family:ff62_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00000;src:url('chunks/assets/font_ee55ff46deef2241b2b3d0ba.woff2')format("woff");}.ff63_c00000{font-family:ff63_c00000;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64_c00000;src:url('chunks/assets/font_173b0e539e12bb16d972bf78.woff2')format("woff");}.ff64_c00000{font-family:ff64_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:ff65_c00000;src:url('chunks/assets/font_ebc12eb7483e7e32e2f4150f.woff2')format("woff");}.ff65_c00000{font-family:ff65_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66_c00000;src:url('chunks/assets/font_e5c819fffc3c1723ba108906.woff2')format("woff");}.ff66_c00000{font-family:ff66_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67_c00000;src:url('chunks/assets/font_229da3c95c7bdfb83ce71950.woff2')format("woff");}.ff67_c00000{font-family:ff67_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff68_c00000{font-family:ff68_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff69_c00000{font-family:ff69_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a_c00000;src:url('chunks/assets/font_7311bfc4cd70ccb705d74f1b.woff2')format("woff");}.ff6a_c00000{font-family:ff6a_c00000;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff6b_c00000{font-family:ff6b_c00000;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:ff6c_c00000;src:url('chunks/assets/font_ff626f7d28baa9baf43f8b57.woff2')format("woff");}.ff6c_c00000{font-family:ff6c_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d_c00000;src:url('chunks/assets/font_9f2c33b07ba45e20f4e91328.woff2')format("woff");}.ff6d_c00000{font-family:ff6d_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e_c00000;src:url('chunks/assets/font_173b0e539e12bb16d972bf78.woff2')format("woff");}.ff6e_c00000{font-family:ff6e_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:ff6f_c00000;src:url('chunks/assets/font_9ba84e693e91a7807839c351.woff2')format("woff");}.ff6f_c00000{font-family:ff6f_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70_c00000;src:url('chunks/assets/font_70576cbb07043be9fc4ab579.woff2')format("woff");}.ff70_c00000{font-family:ff70_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00000;src:url('chunks/assets/font_c791b7ba6715cc255677e2fb.woff2')format("woff");}.ff71_c00000{font-family:ff71_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff72_c00000{font-family:ff72_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff73_c00000{font-family:ff73_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74_c00000;src:url('chunks/assets/font_52463ea9a2467362dfac7f7d.woff2')format("woff");}.ff74_c00000{font-family:ff74_c00000;line-height:0.873047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75_c00000;src:url('chunks/assets/font_b60b9272f5a806b635c3fa9d.woff2')format("woff");}.ff75_c00000{font-family:ff75_c00000;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff76_c00000{font-family:ff76_c00000;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:ff77_c00000;src:url('chunks/assets/font_5d0c2699411a3264227d1dc0.woff2')format("woff");}.ff77_c00000{font-family:ff77_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78_c00000;src:url('chunks/assets/font_bf19c4f04c3bfeba0e7b99c1.woff2')format("woff");}.ff78_c00000{font-family:ff78_c00000;line-height:1.187012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79_c00000;src:url('chunks/assets/font_173b0e539e12bb16d972bf78.woff2')format("woff");}.ff79_c00000{font-family:ff79_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:ff7a_c00000;src:url('chunks/assets/font_19d286d4ce059cad52befefd.woff2')format("woff");}.ff7a_c00000{font-family:ff7a_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b_c00000;src:url('chunks/assets/font_991710bcaaec318ffb16f52b.woff2')format("woff");}.ff7b_c00000{font-family:ff7b_c00000;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c_c00000;src:url('chunks/assets/font_ba185ba0c178fb68919fdeef.woff2')format("woff");}.ff7c_c00000{font-family:ff7c_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d_c00000;src:url('chunks/assets/font_678d4e3688a843cb485a73dc.woff2')format("woff");}.ff7d_c00000{font-family:ff7d_c00000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e_c00000;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff7e_c00000{font-family:ff7e_c00000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f_c00000;src:url('chunks/assets/font_b7ccd30faf9ba672ed99e29e.woff2')format("woff");}.ff7f_c00000{font-family:ff7f_c00000;line-height:0.873047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80_c00000;src:url('chunks/assets/font_0bb3ee359fef7b08fe07ef72.woff2')format("woff");}.ff80_c00000{font-family:ff80_c00000;line-height:0.979004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81_c00000;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff81_c00000{font-family:ff81_c00000;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:ff82_c00000;src:url('chunks/assets/font_1460721c5832d7072d7d471e.woff2')format("woff");}.ff82_c00000{font-family:ff82_c00000;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83_c00000;src:url('chunks/assets/font_c918c1df170a5fb5ad6da339.woff2')format("woff");}.ff83_c00000{font-family:ff83_c00000;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84_c00000;src:url('chunks/assets/font_173b0e539e12bb16d972bf78.woff2')format("woff");}.ff84_c00000{font-family:ff84_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:ff85_c00000;src:url('chunks/assets/font_d93c2f0101fb17dc45261f6a.woff2')format("woff");}.ff85_c00000{font-family:ff85_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86_c00000;src:url('chunks/assets/font_29b729cf0f9359babf90bc71.woff2')format("woff");}.ff86_c00000{font-family:ff86_c00000;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87_c00000;src:url('chunks/assets/font_df5ff2a040276eb9236776af.woff2')format("woff");}.ff87_c00000{font-family:ff87_c00000;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88_c00000;src:url('chunks/assets/font_a1f1251f198ce1cd436e2e15.woff2')format("woff");}.ff88_c00000{font-family:ff88_c00000;line-height:0.767578;font-style: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);}
.v3_c00000{vertical-align:-20.856000px;}
.v1_c00000{vertical-align:-2.160000px;}
.v0_c00000{vertical-align:0.000000px;}
.v4_c00000{vertical-align:20.880000px;}
.v2_c00000{vertical-align:23.760000px;}
.ls74_c00000{letter-spacing:-4.176000px;}
.lsf_c00000{letter-spacing:-1.746000px;}
.ls85_c00000{letter-spacing:-1.680000px;}
.ls55_c00000{letter-spacing:-1.440000px;}
.ls97_c00000{letter-spacing:-1.296000px;}
.ls77_c00000{letter-spacing:-0.936000px;}
.ls50_c00000{letter-spacing:-0.900000px;}
.ls32_c00000{letter-spacing:-0.864000px;}
.ls12_c00000{letter-spacing:-0.720000px;}
.ls6f_c00000{letter-spacing:-0.630000px;}
.ls15_c00000{letter-spacing:-0.576000px;}
.ls4d_c00000{letter-spacing:-0.540600px;}
.ls73_c00000{letter-spacing:-0.504000px;}
.ls6b_c00000{letter-spacing:-0.463800px;}
.ls1a_c00000{letter-spacing:-0.432000px;}
.ls54_c00000{letter-spacing:-0.360000px;}
.ls44_c00000{letter-spacing:-0.337200px;}
.ls4e_c00000{letter-spacing:-0.325200px;}
.lsd_c00000{letter-spacing:-0.305400px;}
.ls39_c00000{letter-spacing:-0.292200px;}
.ls29_c00000{letter-spacing:-0.272400px;}
.lsc_c00000{letter-spacing:-0.262200px;}
.ls80_c00000{letter-spacing:-0.259800px;}
.ls27_c00000{letter-spacing:-0.247800px;}
.ls24_c00000{letter-spacing:-0.216000px;}
.ls82_c00000{letter-spacing:-0.189600px;}
.ls26_c00000{letter-spacing:-0.181200px;}
.ls4a_c00000{letter-spacing:-0.175200px;}
.ls37_c00000{letter-spacing:-0.166200px;}
.ls28_c00000{letter-spacing:-0.152400px;}
.ls1b_c00000{letter-spacing:-0.144000px;}
.ls84_c00000{letter-spacing:-0.118200px;}
.lsb_c00000{letter-spacing:-0.109200px;}
.ls6c_c00000{letter-spacing:-0.106800px;}
.ls36_c00000{letter-spacing:-0.072000px;}
.ls7b_c00000{letter-spacing:-0.069600px;}
.ls4f_c00000{letter-spacing:-0.053400px;}
.ls48_c00000{letter-spacing:-0.035400px;}
.ls6_c00000{letter-spacing:-0.031800px;}
.ls87_c00000{letter-spacing:-0.017400px;}
.ls1_c00000{letter-spacing:0.000000px;}
.ls86_c00000{letter-spacing:0.040800px;}
.ls41_c00000{letter-spacing:0.047400px;}
.ls2_c00000{letter-spacing:0.059760px;}
.ls76_c00000{letter-spacing:0.072000px;}
.ls95_c00000{letter-spacing:0.076200px;}
.ls2e_c00000{letter-spacing:0.076320px;}
.ls3d_c00000{letter-spacing:0.108000px;}
.ls3_c00000{letter-spacing:0.132480px;}
.ls18_c00000{letter-spacing:0.144000px;}
.ls38_c00000{letter-spacing:0.149760px;}
.ls19_c00000{letter-spacing:0.150000px;}
.ls16_c00000{letter-spacing:0.152400px;}
.ls3c_c00000{letter-spacing:0.152640px;}
.ls89_c00000{letter-spacing:0.164400px;}
.ls0_c00000{letter-spacing:0.173520px;}
.ls5c_c00000{letter-spacing:0.174000px;}
.ls1f_c00000{letter-spacing:0.174240px;}
.ls5b_c00000{letter-spacing:0.186000px;}
.ls88_c00000{letter-spacing:0.189360px;}
.ls1d_c00000{letter-spacing:0.204600px;}
.ls35_c00000{letter-spacing:0.205680px;}
.ls20_c00000{letter-spacing:0.209400px;}
.ls40_c00000{letter-spacing:0.209520px;}
.ls13_c00000{letter-spacing:0.216000px;}
.ls33_c00000{letter-spacing:0.228960px;}
.ls34_c00000{letter-spacing:0.229200px;}
.ls23_c00000{letter-spacing:0.229440px;}
.ls2d_c00000{letter-spacing:0.229680px;}
.ls5_c00000{letter-spacing:0.239040px;}
.ls17_c00000{letter-spacing:0.256200px;}
.ls45_c00000{letter-spacing:0.256216px;}
.ls6a_c00000{letter-spacing:0.256320px;}
.ls10_c00000{letter-spacing:0.288000px;}
.ls8_c00000{letter-spacing:0.305400px;}
.ls91_c00000{letter-spacing:0.325440px;}
.ls4_c00000{letter-spacing:0.331200px;}
.ls49_c00000{letter-spacing:0.331800px;}
.ls6d_c00000{letter-spacing:0.341400px;}
.ls9d_c00000{letter-spacing:0.348960px;}
.ls1c_c00000{letter-spacing:0.350640px;}
.ls5a_c00000{letter-spacing:0.382800px;}
.ls2a_c00000{letter-spacing:0.385920px;}
.ls56_c00000{letter-spacing:0.504000px;}
.ls42_c00000{letter-spacing:0.564480px;}
.ls3a_c00000{letter-spacing:0.567600px;}
.ls57_c00000{letter-spacing:0.567840px;}
.ls3f_c00000{letter-spacing:0.568080px;}
.ls63_c00000{letter-spacing:0.612000px;}
.ls7a_c00000{letter-spacing:0.650160px;}
.ls2c_c00000{letter-spacing:0.684480px;}
.ls64_c00000{letter-spacing:0.720000px;}
.ls2b_c00000{letter-spacing:0.864000px;}
.ls9e_c00000{letter-spacing:0.869760px;}
.ls59_c00000{letter-spacing:0.870000px;}
.ls2f_c00000{letter-spacing:0.930000px;}
.ls8d_c00000{letter-spacing:0.972000px;}
.ls8b_c00000{letter-spacing:0.984000px;}
.ls5f_c00000{letter-spacing:1.260480px;}
.ls5e_c00000{letter-spacing:1.584000px;}
.ls5d_c00000{letter-spacing:2.304000px;}
.ls7d_c00000{letter-spacing:3.024000px;}
.ls6e_c00000{letter-spacing:3.029760px;}
.ls66_c00000{letter-spacing:3.744000px;}
.ls98_c00000{letter-spacing:3.749760px;}
.ls8e_c00000{letter-spacing:3.924000px;}
.ls51_c00000{letter-spacing:4.464000px;}
.ls67_c00000{letter-spacing:5.184000px;}
.ls21_c00000{letter-spacing:5.904000px;}
.ls92_c00000{letter-spacing:6.600000px;}
.ls22_c00000{letter-spacing:6.624000px;}
.ls65_c00000{letter-spacing:7.344000px;}
.ls72_c00000{letter-spacing:7.349760px;}
.ls3b_c00000{letter-spacing:8.640000px;}
.ls61_c00000{letter-spacing:8.784000px;}
.ls93_c00000{letter-spacing:9.504000px;}
.ls8f_c00000{letter-spacing:9.534240px;}
.ls62_c00000{letter-spacing:10.224000px;}
.ls83_c00000{letter-spacing:10.944000px;}
.ls60_c00000{letter-spacing:11.664000px;}
.ls69_c00000{letter-spacing:12.384000px;}
.ls14_c00000{letter-spacing:13.824000px;}
.ls8a_c00000{letter-spacing:14.244480px;}
.ls78_c00000{letter-spacing:14.544000px;}
.ls8c_c00000{letter-spacing:15.984000px;}
.ls90_c00000{letter-spacing:16.578720px;}
.ls68_c00000{letter-spacing:17.424000px;}
.ls58_c00000{letter-spacing:17.820480px;}
.ls71_c00000{letter-spacing:18.144000px;}
.ls9b_c00000{letter-spacing:18.864000px;}
.ls4c_c00000{letter-spacing:19.656000px;}
.ls99_c00000{letter-spacing:20.304000px;}
.ls52_c00000{letter-spacing:20.784000px;}
.ls53_c00000{letter-spacing:20.808000px;}
.ls7c_c00000{letter-spacing:21.024000px;}
.ls9c_c00000{letter-spacing:21.618720px;}
.ls9a_c00000{letter-spacing:23.778720px;}
.ls7f_c00000{letter-spacing:25.344000px;}
.ls4b_c00000{letter-spacing:27.504000px;}
.ls79_c00000{letter-spacing:28.224000px;}
.ls46_c00000{letter-spacing:31.824000px;}
.ls11_c00000{letter-spacing:31.944000px;}
.ls75_c00000{letter-spacing:32.544000px;}
.ls31_c00000{letter-spacing:36.018720px;}
.ls94_c00000{letter-spacing:36.144000px;}
.ls3e_c00000{letter-spacing:39.096000px;}
.ls47_c00000{letter-spacing:41.381280px;}
.ls43_c00000{letter-spacing:42.101280px;}
.ls81_c00000{letter-spacing:42.624000px;}
.ls7e_c00000{letter-spacing:46.949760px;}
.ls1e_c00000{letter-spacing:50.741280px;}
.ls30_c00000{letter-spacing:52.181280px;}
.ls70_c00000{letter-spacing:54.144000px;}
.ls25_c00000{letter-spacing:57.941280px;}
.lse_c00000{letter-spacing:193.985496px;}
.ls96_c00000{letter-spacing:1197.084000px;}
.ls7_c00000{letter-spacing:1593.965280px;}
.lsa_c00000{letter-spacing:1719.425280px;}
.ls9_c00000{letter-spacing:1733.825280px;}
.sc__c00000{text-shadow:none;}
.sc1_c00000{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c00000{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws22_c00000{word-spacing:-72.000000px;}
.ws11_c00000{word-spacing:-51.084000px;}
.ws53_c00000{word-spacing:-45.294480px;}
.ws2f_c00000{word-spacing:-42.570000px;}
.ws1c_c00000{word-spacing:-40.050120px;}
.ws2d_c00000{word-spacing:-39.845520px;}
.ws8_c00000{word-spacing:-26.483760px;}
.ws24_c00000{word-spacing:-23.940000px;}
.ws4e_c00000{word-spacing:-23.750400px;}
.ws3e_c00000{word-spacing:-23.418720px;}
.ws23_c00000{word-spacing:-21.965520px;}
.ws41_c00000{word-spacing:-21.905520px;}
.ws34_c00000{word-spacing:-21.367320px;}
.ws1f_c00000{word-spacing:-21.244920px;}
.ws42_c00000{word-spacing:-21.221520px;}
.ws52_c00000{word-spacing:-21.199920px;}
.ws17_c00000{word-spacing:-21.187920px;}
.ws2e_c00000{word-spacing:-21.082920px;}
.ws51_c00000{word-spacing:-21.076320px;}
.ws1e_c00000{word-spacing:-21.035520px;}
.ws32_c00000{word-spacing:-21.000120px;}
.ws4b_c00000{word-spacing:-20.965920px;}
.ws49_c00000{word-spacing:-20.883120px;}
.ws2a_c00000{word-spacing:-20.880000px;}
.ws29_c00000{word-spacing:-20.869320px;}
.ws33_c00000{word-spacing:-20.860320px;}
.ws30_c00000{word-spacing:-20.698320px;}
.ws3c_c00000{word-spacing:-20.554560px;}
.ws40_c00000{word-spacing:-20.520000px;}
.ws31_c00000{word-spacing:-20.437920px;}
.ws4f_c00000{word-spacing:-20.436360px;}
.ws13_c00000{word-spacing:-20.304000px;}
.ws21_c00000{word-spacing:-20.232000px;}
.ws48_c00000{word-spacing:-20.194560px;}
.ws27_c00000{word-spacing:-20.160000px;}
.ws12_c00000{word-spacing:-20.016000px;}
.ws26_c00000{word-spacing:-19.944000px;}
.ws19_c00000{word-spacing:-19.872000px;}
.ws20_c00000{word-spacing:-19.800000px;}
.ws2b_c00000{word-spacing:-19.584000px;}
.ws4a_c00000{word-spacing:-19.512000px;}
.ws43_c00000{word-spacing:-19.440000px;}
.ws3f_c00000{word-spacing:-19.296000px;}
.ws25_c00000{word-spacing:-19.152000px;}
.ws50_c00000{word-spacing:-18.874560px;}
.ws9_c00000{word-spacing:-18.414720px;}
.wsa_c00000{word-spacing:-18.305520px;}
.ws57_c00000{word-spacing:-18.288000px;}
.ws10_c00000{word-spacing:-18.109320px;}
.ws3d_c00000{word-spacing:-18.000000px;}
.ws3b_c00000{word-spacing:-17.640000px;}
.ws55_c00000{word-spacing:-17.568000px;}
.ws44_c00000{word-spacing:-17.225280px;}
.ws1_c00000{word-spacing:-16.891200px;}
.ws3_c00000{word-spacing:-16.692480px;}
.wsf_c00000{word-spacing:-16.668720px;}
.ws35_c00000{word-spacing:-16.613280px;}
.ws2_c00000{word-spacing:-16.560000px;}
.ws46_c00000{word-spacing:-16.506480px;}
.ws4c_c00000{word-spacing:-16.353480px;}
.ws36_c00000{word-spacing:-16.234800px;}
.ws18_c00000{word-spacing:-15.226440px;}
.ws0_c00000{word-spacing:-14.999760px;}
.ws45_c00000{word-spacing:-14.506440px;}
.ws37_c00000{word-spacing:-13.410720px;}
.ws59_c00000{word-spacing:-13.229520px;}
.ws7_c00000{word-spacing:-0.728640px;}
.ws2c_c00000{word-spacing:-0.720000px;}
.ws4d_c00000{word-spacing:-0.576000px;}
.ws39_c00000{word-spacing:-0.408000px;}
.ws6_c00000{word-spacing:-0.239040px;}
.ws5_c00000{word-spacing:-0.132480px;}
.ws38_c00000{word-spacing:-0.126000px;}
.ws1b_c00000{word-spacing:-0.072000px;}
.ws4_c00000{word-spacing:0.000000px;}
.ws56_c00000{word-spacing:0.138000px;}
.ws58_c00000{word-spacing:0.282000px;}
.ws3a_c00000{word-spacing:0.288000px;}
.ws47_c00000{word-spacing:0.312000px;}
.ws1a_c00000{word-spacing:0.648000px;}
.ws54_c00000{word-spacing:0.714000px;}
.ws16_c00000{word-spacing:0.978000px;}
.ws1d_c00000{word-spacing:4.752000px;}
.ws28_c00000{word-spacing:14.616000px;}
.wsb_c00000{word-spacing:34.668720px;}
.wsd_c00000{word-spacing:40.058280px;}
.wsc_c00000{word-spacing:43.571880px;}
.ws15_c00000{word-spacing:199.560000px;}
.ws14_c00000{word-spacing:256.728000px;}
.wse_c00000{word-spacing:1551.239040px;}
._58_c00000{margin-left:-195.956464px;}
._6_c00000{margin-left:-24.221952px;}
._54_c00000{margin-left:-17.521584px;}
._2a_c00000{margin-left:-16.006383px;}
._45_c00000{margin-left:-14.459555px;}
._9b_c00000{margin-left:-12.672000px;}
._e1_c00000{margin-left:-10.846944px;}
._e2_c00000{margin-left:-9.835442px;}
._2e_c00000{margin-left:-8.761340px;}
._71_c00000{margin-left:-6.078052px;}
._1e_c00000{margin-left:-4.834487px;}
._5_c00000{margin-left:-3.274464px;}
._2_c00000{margin-left:-2.195568px;}
._0_c00000{margin-left:-1.080432px;}
._1_c00000{width:1.212192px;}
._55_c00000{width:2.280864px;}
._32_c00000{width:3.349063px;}
._5c_c00000{width:4.464000px;}
._5d_c00000{width:6.120000px;}
._60_c00000{width:7.222524px;}
._1c_c00000{width:8.492811px;}
._23_c00000{width:9.718128px;}
._3b_c00000{width:11.148027px;}
._63_c00000{width:12.779424px;}
._62_c00000{width:14.184000px;}
._47_c00000{width:16.154934px;}
._61_c00000{width:17.856000px;}
._57_c00000{width:19.845153px;}
._24_c00000{width:22.004499px;}
._5e_c00000{width:23.233812px;}
._5f_c00000{width:24.636352px;}
._c_c00000{width:25.730918px;}
._65_c00000{width:26.928000px;}
._6d_c00000{width:27.991716px;}
._34_c00000{width:29.116092px;}
._5b_c00000{width:30.394063px;}
._35_c00000{width:31.710969px;}
._68_c00000{width:33.432504px;}
._1d_c00000{width:34.559664px;}
._66_c00000{width:35.736624px;}
._37_c00000{width:37.047867px;}
._73_c00000{width:38.091606px;}
._3e_c00000{width:39.139295px;}
._38_c00000{width:40.219793px;}
._70_c00000{width:41.544000px;}
._6e_c00000{width:42.552000px;}
._69_c00000{width:43.679736px;}
._67_c00000{width:44.760024px;}
._7b_c00000{width:45.767160px;}
._f_c00000{width:46.847445px;}
._25_c00000{width:48.488304px;}
._9c_c00000{width:49.547478px;}
._4_c00000{width:50.580038px;}
._4b_c00000{width:52.498247px;}
._33_c00000{width:53.845692px;}
._21_c00000{width:55.027509px;}
._6c_c00000{width:56.736000px;}
._6b_c00000{width:58.536000px;}
._6f_c00000{width:59.688000px;}
._87_c00000{width:61.632000px;}
._86_c00000{width:63.216000px;}
._2d_c00000{width:64.746674px;}
._7a_c00000{width:65.782460px;}
._82_c00000{width:66.801856px;}
._2c_c00000{width:68.486144px;}
._81_c00000{width:70.488000px;}
._31_c00000{width:72.280400px;}
._9d_c00000{width:74.002441px;}
._b2_c00000{width:75.899952px;}
._97_c00000{width:77.088024px;}
._7e_c00000{width:78.840000px;}
._89_c00000{width:80.832024px;}
._28_c00000{width:82.653312px;}
._8a_c00000{width:83.664968px;}
._20_c00000{width:84.815032px;}
._c5_c00000{width:85.896000px;}
._c4_c00000{width:86.904000px;}
._42_c00000{width:89.327488px;}
._39_c00000{width:92.986664px;}
._76_c00000{width:95.904000px;}
._f0_c00000{width:97.992000px;}
._8f_c00000{width:100.440644px;}
._3_c00000{width:101.676026px;}
._52_c00000{width:106.128953px;}
._d6_c00000{width:107.928000px;}
._51_c00000{width:109.198764px;}
._2f_c00000{width:111.964133px;}
._b3_c00000{width:115.632000px;}
._99_c00000{width:121.176000px;}
._98_c00000{width:122.520024px;}
._56_c00000{width:123.938461px;}
._59_c00000{width:126.078971px;}
._e_c00000{width:127.647312px;}
._2b_c00000{width:148.558012px;}
._18_c00000{width:151.935168px;}
._22_c00000{width:155.674066px;}
._53_c00000{width:168.713977px;}
._b_c00000{width:173.301216px;}
._16_c00000{width:175.305003px;}
._64_c00000{width:176.736000px;}
._30_c00000{width:178.138980px;}
._27_c00000{width:182.629454px;}
._29_c00000{width:185.409063px;}
._36_c00000{width:189.278281px;}
._1f_c00000{width:193.985496px;}
._26_c00000{width:195.039768px;}
._9_c00000{width:233.872559px;}
._4d_c00000{width:248.531785px;}
._eb_c00000{width:301.824000px;}
._d5_c00000{width:316.404000px;}
._46_c00000{width:366.047072px;}
._d0_c00000{width:378.144000px;}
._da_c00000{width:396.324000px;}
._49_c00000{width:398.117456px;}
._48_c00000{width:405.721517px;}
._cf_c00000{width:417.204000px;}
._3d_c00000{width:431.102688px;}
._4e_c00000{width:436.158889px;}
._b9_c00000{width:449.460000px;}
._d1_c00000{width:452.424000px;}
._13_c00000{width:466.659915px;}
._cd_c00000{width:487.704000px;}
._41_c00000{width:502.569888px;}
._cc_c00000{width:512.640000px;}
._4f_c00000{width:515.958384px;}
._a_c00000{width:518.518896px;}
._f2_c00000{width:522.324000px;}
._4c_c00000{width:527.284704px;}
._ce_c00000{width:540.324000px;}
._ca_c00000{width:542.424000px;}
._6a_c00000{width:545.880000px;}
._cb_c00000{width:548.964000px;}
._a0_c00000{width:568.368000px;}
._4a_c00000{width:578.916480px;}
._93_c00000{width:584.760000px;}
._d4_c00000{width:594.144000px;}
._78_c00000{width:596.484000px;}
._e4_c00000{width:600.084000px;}
._79_c00000{width:612.264000px;}
._43_c00000{width:618.151925px;}
._e5_c00000{width:630.264000px;}
._b6_c00000{width:648.144000px;}
._3c_c00000{width:650.675355px;}
._dd_c00000{width:660.564000px;}
._af_c00000{width:683.459520px;}
._d2_c00000{width:696.564000px;}
._ed_c00000{width:702.120000px;}
._d3_c00000{width:703.704000px;}
._dc_c00000{width:705.864000px;}
._b5_c00000{width:710.964000px;}
._1b_c00000{width:718.754736px;}
._8d_c00000{width:720.264000px;}
._ad_c00000{width:728.909760px;}
._a6_c00000{width:740.340000px;}
._c6_c00000{width:748.404000px;}
._3a_c00000{width:751.775712px;}
._8c_c00000{width:767.699760px;}
._a3_c00000{width:791.460000px;}
._c3_c00000{width:798.168000px;}
._ab_c00000{width:802.260000px;}
._14_c00000{width:808.632048px;}
._9e_c00000{width:810.120000px;}
._75_c00000{width:813.072000px;}
._ba_c00000{width:823.944000px;}
._7_c00000{width:827.436000px;}
._aa_c00000{width:833.160000px;}
._5a_c00000{width:835.428000px;}
._c7_c00000{width:840.701280px;}
._72_c00000{width:844.140000px;}
._96_c00000{width:849.185760px;}
._d8_c00000{width:850.908000px;}
._8e_c00000{width:882.324000px;}
._b0_c00000{width:886.619520px;}
._be_c00000{width:890.040000px;}
._ef_c00000{width:892.980000px;}
._40_c00000{width:896.369739px;}
._ae_c00000{width:899.609760px;}
._c2_c00000{width:901.020000px;}
._bf_c00000{width:908.760000px;}
._9a_c00000{width:912.041280px;}
._bb_c00000{width:926.940000px;}
._d7_c00000{width:928.344000px;}
._e6_c00000{width:936.840000px;}
._b4_c00000{width:945.480000px;}
._db_c00000{width:954.120000px;}
._e3_c00000{width:956.748000px;}
._91_c00000{width:958.500000px;}
._c1_c00000{width:962.039520px;}
._19_c00000{width:979.154400px;}
._77_c00000{width:993.180000px;}
._44_c00000{width:1001.141216px;}
._bd_c00000{width:1003.080000px;}
._d9_c00000{width:1016.904000px;}
._e8_c00000{width:1030.644000px;}
._c9_c00000{width:1037.964000px;}
._d_c00000{width:1043.884186px;}
._e7_c00000{width:1046.460000px;}
._a9_c00000{width:1052.964000px;}
._c8_c00000{width:1062.444000px;}
._83_c00000{width:1065.900000px;}
._a7_c00000{width:1080.300000px;}
._8b_c00000{width:1097.921280px;}
._ee_c00000{width:1106.940000px;}
._a1_c00000{width:1111.260000px;}
._bc_c00000{width:1116.444000px;}
._12_c00000{width:1136.520048px;}
._b7_c00000{width:1138.764000px;}
._9f_c00000{width:1161.084000px;}
._92_c00000{width:1162.380000px;}
._15_c00000{width:1165.895904px;}
._88_c00000{width:1192.044000px;}
._ac_c00000{width:1198.380000px;}
._10_c00000{width:1215.493467px;}
._a8_c00000{width:1217.100000px;}
._17_c00000{width:1227.182736px;}
._c0_c00000{width:1230.204000px;}
._df_c00000{width:1235.100000px;}
._b1_c00000{width:1241.579520px;}
._7f_c00000{width:1243.308000px;}
._7c_c00000{width:1245.900000px;}
._ea_c00000{width:1250.364000px;}
._74_c00000{width:1251.804000px;}
._3f_c00000{width:1256.285185px;}
._e9_c00000{width:1261.164000px;}
._a4_c00000{width:1270.524000px;}
._90_c00000{width:1278.300000px;}
._e0_c00000{width:1282.764000px;}
._de_c00000{width:1299.324000px;}
._84_c00000{width:1314.444000px;}
._1a_c00000{width:1339.672800px;}
._11_c00000{width:1350.077808px;}
._94_c00000{width:1418.699040px;}
._95_c00000{width:1451.819280px;}
._ec_c00000{width:1466.519520px;}
._f1_c00000{width:1494.444000px;}
._80_c00000{width:1538.220000px;}
._a2_c00000{width:1558.380000px;}
._b8_c00000{width:1629.084000px;}
._7d_c00000{width:1737.084000px;}
._85_c00000{width:1764.444000px;}
._50_c00000{width:1785.892272px;}
._a5_c00000{width:1965.360000px;}
._8_c00000{width:1983.142416px;}
.fcf_c00000{color:rgb(255,0,0);}
.fce_c00000{color:rgb(79,129,189);}
.fc0_c00000{color:rgb(0,0,0);}
.fc4_c00000{color:rgb(5,5,5);}
.fcc_c00000{color:rgb(51,51,51);}
.fc3_c00000{color:rgb(255,238,221);}
.fca_c00000{color:rgb(33,33,33);}
.fc2_c00000{color:rgb(46,116,181);}
.fc5_c00000{color:rgb(238,119,0);}
.fc8_c00000{color:rgb(192,0,0);}
.fcd_c00000{color:rgb(68,84,106);}
.fc9_c00000{color:rgb(37,37,37);}
.fc1_c00000{color:rgb(0,0,255);}
.fc6_c00000{color:transparent;}
.fc7_c00000{color:rgb(54,95,145);}
.fcb_c00000{color:rgb(65,64,64);}
.fsd_c00000{font-size:38.880000px;}
.fsf_c00000{font-size:41.760000px;}
.fsc_c00000{font-size:48.240000px;}
.fs12_c00000{font-size:51.120000px;}
.fs3_c00000{font-size:54.000000px;}
.fs2_c00000{font-size:59.760000px;}
.fs1_c00000{font-size:63.360000px;}
.fs0_c00000{font-size:66.240000px;}
.fs10_c00000{font-size:69.120000px;}
.fsa_c00000{font-size:72.000000px;}
.fs13_c00000{font-size:77.760000px;}
.fse_c00000{font-size:84.240000px;}
.fs11_c00000{font-size:90.000000px;}
.fsb_c00000{font-size:95.760000px;}
.fs9_c00000{font-size:108.000000px;}
.fs4_c00000{font-size:120.240000px;}
.fs7_c00000{font-size:131.760000px;}
.fs5_c00000{font-size:144.000000px;}
.fs6_c00000{font-size:167.760000px;}
.fs8_c00000{font-size:180.000000px;}
.y13a9_c00000{bottom:-57.600000px;}
.yd93_c00000{bottom:-24.840000px;}
.y13a8_c00000{bottom:-23.760000px;}
.yb77_c00000{bottom:-20.535000px;}
.y12ae_c00000{bottom:-20.505000px;}
.yf2a_c00000{bottom:-16.569000px;}
.y1204_c00000{bottom:-11.520000px;}
.yd8c_c00000{bottom:-11.145000px;}
.yba4_c00000{bottom:-1.980000px;}
.y1269_c00000{bottom:-1.965000px;}
.yfe1_c00000{bottom:-1.800000px;}
.ycda_c00000{bottom:-1.785000px;}
.y0_c00000{bottom:0.000000px;}
.y874_c00000{bottom:0.531000px;}
.yb1c_c00000{bottom:0.720000px;}
.yf29_c00000{bottom:0.891000px;}
.y1388_c00000{bottom:0.900000px;}
.y11ed_c00000{bottom:1.260000px;}
.yd61_c00000{bottom:1.275000px;}
.yed8_c00000{bottom:1.431000px;}
.y1403_c00000{bottom:1.440000px;}
.y107b_c00000{bottom:1.455000px;}
.ydb2_c00000{bottom:1.815000px;}
.yf08_c00000{bottom:1.980000px;}
.y1342_c00000{bottom:1.995000px;}
.y1214_c00000{bottom:2.145000px;}
.ycaf_c00000{bottom:2.160000px;}
.y13d0_c00000{bottom:2.331000px;}
.ybd3_c00000{bottom:2.340000px;}
.ye11_c00000{bottom:2.505000px;}
.yfa8_c00000{bottom:2.520000px;}
.yf24_c00000{bottom:2.535000px;}
.yd5d_c00000{bottom:2.685000px;}
.ycba_c00000{bottom:2.700000px;}
.yd65_c00000{bottom:2.715000px;}
.ye44_c00000{bottom:2.865000px;}
.yacd_c00000{bottom:2.871000px;}
.y100a_c00000{bottom:2.880000px;}
.yeee_c00000{bottom:2.895000px;}
.y105f_c00000{bottom:3.045000px;}
.y5e1_c00000{bottom:3.060000px;}
.y5e6_c00000{bottom:3.075000px;}
.y140e_c00000{bottom:3.225000px;}
.y779_c00000{bottom:3.231000px;}
.y5df_c00000{bottom:3.240000px;}
.y5ea_c00000{bottom:3.255000px;}
.y12d5_c00000{bottom:3.405000px;}
.ydc0_c00000{bottom:3.435000px;}
.y12c2_c00000{bottom:3.585000px;}
.y90c_c00000{bottom:3.600000px;}
.y1276_c00000{bottom:3.615000px;}
.y5fd_c00000{bottom:3.780000px;}
.ybb8_c00000{bottom:3.795000px;}
.y1348_c00000{bottom:3.810000px;}
.ye87_c00000{bottom:3.945000px;}
.y5fa_c00000{bottom:3.960000px;}
.y47a_c00000{bottom:4.125000px;}
.ye8b_c00000{bottom:4.131000px;}
.y46c_c00000{bottom:4.140000px;}
.y46f_c00000{bottom:4.155000px;}
.ybff_c00000{bottom:4.311000px;}
.yfc5_c00000{bottom:4.320000px;}
.yf43_c00000{bottom:4.335000px;}
.yf6c_c00000{bottom:4.485000px;}
.y1111_c00000{bottom:4.500000px;}
.y1026_c00000{bottom:4.515000px;}
.y126d_c00000{bottom:4.665000px;}
.y112d_c00000{bottom:4.680000px;}
.yf69_c00000{bottom:4.695000px;}
.y1128_c00000{bottom:4.845000px;}
.yfbd_c00000{bottom:4.851000px;}
.yab1_c00000{bottom:4.860000px;}
.y10e0_c00000{bottom:4.875000px;}
.y885_c00000{bottom:5.025000px;}
.y87a_c00000{bottom:5.040000px;}
.y87e_c00000{bottom:5.055000px;}
.yf1e_c00000{bottom:5.070000px;}
.yfb1_c00000{bottom:5.205000px;}
.yb25_c00000{bottom:5.220000px;}
.yc20_c00000{bottom:5.235000px;}
.yf5c_c00000{bottom:5.385000px;}
.y1227_c00000{bottom:5.400000px;}
.yf1a_c00000{bottom:5.415000px;}
.ya15_c00000{bottom:5.571000px;}
.y1053_c00000{bottom:5.580000px;}
.yb72_c00000{bottom:5.595000px;}
.ye6c_c00000{bottom:5.751000px;}
.yd3f_c00000{bottom:5.760000px;}
.yad7_c00000{bottom:5.775000px;}
.ye8c_c00000{bottom:5.805000px;}
.yf94_c00000{bottom:5.925000px;}
.yf96_c00000{bottom:5.940000px;}
.y11d4_c00000{bottom:5.955000px;}
.y1391_c00000{bottom:6.105000px;}
.yb0e_c00000{bottom:6.120000px;}
.ya17_c00000{bottom:6.135000px;}
.ycd7_c00000{bottom:6.285000px;}
.y1199_c00000{bottom:6.291000px;}
.ycc8_c00000{bottom:6.300000px;}
.yb19_c00000{bottom:6.315000px;}
.yfff_c00000{bottom:6.465000px;}
.yccb_c00000{bottom:6.480000px;}
.y120d_c00000{bottom:6.495000px;}
.y1085_c00000{bottom:6.645000px;}
.y860_c00000{bottom:6.660000px;}
.yee1_c00000{bottom:6.675000px;}
.ycd1_c00000{bottom:6.840000px;}
.y7c9_c00000{bottom:6.855000px;}
.y848_c00000{bottom:7.005000px;}
.ybfa_c00000{bottom:7.020000px;}
.y1434_c00000{bottom:7.035000px;}
.yce6_c00000{bottom:7.185000px;}
.yc54_c00000{bottom:7.191000px;}
.y10b4_c00000{bottom:7.200000px;}
.yca0_c00000{bottom:7.215000px;}
.y142c_c00000{bottom:7.365000px;}
.y1259_c00000{bottom:7.380000px;}
.y1001_c00000{bottom:7.545000px;}
.ya25_c00000{bottom:7.575000px;}
.ya1f_c00000{bottom:7.740000px;}
.yf46_c00000{bottom:7.755000px;}
.y1185_c00000{bottom:7.905000px;}
.yeb5_c00000{bottom:7.911000px;}
.y75c_c00000{bottom:7.920000px;}
.y75f_c00000{bottom:7.935000px;}
.y764_c00000{bottom:7.950000px;}
.yb0b_c00000{bottom:8.100000px;}
.y122e_c00000{bottom:8.115000px;}
.y83d_c00000{bottom:8.265000px;}
.y11fa_c00000{bottom:8.271000px;}
.y91b_c00000{bottom:8.280000px;}
.y12dc_c00000{bottom:8.295000px;}
.y56f_c00000{bottom:8.445000px;}
.y102c_c00000{bottom:8.451000px;}
.y9c4_c00000{bottom:8.460000px;}
.ye68_c00000{bottom:8.475000px;}
.y811_c00000{bottom:8.625000px;}
.y10dd_c00000{bottom:8.640000px;}
.y11a7_c00000{bottom:8.655000px;}
.y881_c00000{bottom:8.820000px;}
.ya66_c00000{bottom:8.835000px;}
.ya33_c00000{bottom:9.000000px;}
.y581_c00000{bottom:9.015000px;}
.ycd8_c00000{bottom:9.165000px;}
.ycc9_c00000{bottom:9.180000px;}
.y733_c00000{bottom:9.195000px;}
.yd1d_c00000{bottom:9.345000px;}
.y12b0_c00000{bottom:9.351000px;}
.yccc_c00000{bottom:9.360000px;}
.y1004_c00000{bottom:9.525000px;}
.y1262_c00000{bottom:9.531000px;}
.y10a9_c00000{bottom:9.540000px;}
.y10c3_c00000{bottom:9.555000px;}
.y10a7_c00000{bottom:9.705000px;}
.y10b5_c00000{bottom:9.711000px;}
.ya35_c00000{bottom:9.720000px;}
.yf3f_c00000{bottom:9.735000px;}
.ybc7_c00000{bottom:9.885000px;}
.y83a_c00000{bottom:9.900000px;}
.y1143_c00000{bottom:9.915000px;}
.y7c7_c00000{bottom:10.071000px;}
.y10cf_c00000{bottom:10.080000px;}
.yf22_c00000{bottom:10.251000px;}
.ya73_c00000{bottom:10.275000px;}
.y9d0_c00000{bottom:10.425000px;}
.yee9_c00000{bottom:10.440000px;}
.ya83_c00000{bottom:10.611000px;}
.yafb_c00000{bottom:10.620000px;}
.yaca_c00000{bottom:10.635000px;}
.y10bd_c00000{bottom:10.785000px;}
.yadd_c00000{bottom:10.800000px;}
.yac2_c00000{bottom:10.815000px;}
.y1365_c00000{bottom:10.845000px;}
.yf99_c00000{bottom:10.965000px;}
.ye0a_c00000{bottom:10.980000px;}
.yb58_c00000{bottom:10.995000px;}
.y131b_c00000{bottom:11.010000px;}
.yc06_c00000{bottom:11.145000px;}
.yc12_c00000{bottom:11.160000px;}
.yfef_c00000{bottom:11.175000px;}
.ydd7_c00000{bottom:11.340000px;}
.y128d_c00000{bottom:11.505000px;}
.yd1a_c00000{bottom:11.520000px;}
.y13d4_c00000{bottom:11.535000px;}
.y1401_c00000{bottom:11.691000px;}
.ydca_c00000{bottom:11.700000px;}
.y13e1_c00000{bottom:11.715000px;}
.ya6a_c00000{bottom:11.871000px;}
.y12a1_c00000{bottom:11.895000px;}
.y115c_c00000{bottom:12.045000px;}
.y94e_c00000{bottom:12.060000px;}
.yf65_c00000{bottom:12.075000px;}
.y943_c00000{bottom:12.225000px;}
.y13f4_c00000{bottom:12.231000px;}
.y5dd_c00000{bottom:12.240000px;}
.y12cf_c00000{bottom:12.420000px;}
.ydb6_c00000{bottom:12.465000px;}
.yd33_c00000{bottom:12.600000px;}
.y11aa_c00000{bottom:12.795000px;}
.y1019_c00000{bottom:12.951000px;}
.y5f1_c00000{bottom:12.960000px;}
.y5f8_c00000{bottom:13.005000px;}
.y5f3_c00000{bottom:13.140000px;}
.y100d_c00000{bottom:13.155000px;}
.y140a_c00000{bottom:13.320000px;}
.yed2_c00000{bottom:13.485000px;}
.ydf1_c00000{bottom:13.491000px;}
.y723_c00000{bottom:13.500000px;}
.yb74_c00000{bottom:13.665000px;}
.ybae_c00000{bottom:13.680000px;}
.y6f8_c00000{bottom:13.695000px;}
.yb76_c00000{bottom:13.710000px;}
.yb8b_c00000{bottom:13.725000px;}
.y731_c00000{bottom:13.845000px;}
.y761_c00000{bottom:13.860000px;}
.yd01_c00000{bottom:13.875000px;}
.y11f0_c00000{bottom:14.025000px;}
.y13a5_c00000{bottom:14.031000px;}
.y1222_c00000{bottom:14.040000px;}
.y10b1_c00000{bottom:14.055000px;}
.y93c_c00000{bottom:14.385000px;}
.y10c6_c00000{bottom:14.400000px;}
.y12ad_c00000{bottom:14.415000px;}
.yfab_c00000{bottom:14.565000px;}
.yb9c_c00000{bottom:14.580000px;}
.y880_c00000{bottom:14.760000px;}
.y122a_c00000{bottom:14.775000px;}
.yf83_c00000{bottom:14.940000px;}
.ye0c_c00000{bottom:15.105000px;}
.yb9e_c00000{bottom:15.120000px;}
.y1393_c00000{bottom:15.135000px;}
.ya53_c00000{bottom:15.285000px;}
.yd7f_c00000{bottom:15.300000px;}
.yaef_c00000{bottom:15.465000px;}
.y1338_c00000{bottom:15.480000px;}
.y1260_c00000{bottom:15.660000px;}
.yba9_c00000{bottom:15.675000px;}
.y11d9_c00000{bottom:15.825000px;}
.ybde_c00000{bottom:15.840000px;}
.yfdf_c00000{bottom:16.005000px;}
.yff1_c00000{bottom:16.011000px;}
.yaf0_c00000{bottom:16.020000px;}
.yfe3_c00000{bottom:16.035000px;}
.y1130_c00000{bottom:16.185000px;}
.y1051_c00000{bottom:16.380000px;}
.y1017_c00000{bottom:16.395000px;}
.ydc7_c00000{bottom:16.545000px;}
.y105c_c00000{bottom:16.560000px;}
.y1055_c00000{bottom:16.575000px;}
.y1293_c00000{bottom:16.725000px;}
.yfe8_c00000{bottom:16.935000px;}
.yf2e_c00000{bottom:17.091000px;}
.ya12_c00000{bottom:17.100000px;}
.y108d_c00000{bottom:17.115000px;}
.yf52_c00000{bottom:17.130000px;}
.yd50_c00000{bottom:17.145000px;}
.y7e0_c00000{bottom:17.265000px;}
.yada_c00000{bottom:17.451000px;}
.ydc4_c00000{bottom:17.460000px;}
.y13d6_c00000{bottom:17.475000px;}
.y1367_c00000{bottom:17.631000px;}
.ydee_c00000{bottom:17.640000px;}
.yc52_c00000{bottom:17.655000px;}
.y124d_c00000{bottom:17.805000px;}
.y13b3_c00000{bottom:17.820000px;}
.y13b5_c00000{bottom:17.835000px;}
.yba5_c00000{bottom:17.991000px;}
.y13b1_c00000{bottom:18.000000px;}
.y13b7_c00000{bottom:18.015000px;}
.yf28_c00000{bottom:18.171000px;}
.yb1b_c00000{bottom:18.180000px;}
.y1418_c00000{bottom:18.195000px;}
.y931_c00000{bottom:18.345000px;}
.yb3c_c00000{bottom:18.351000px;}
.y56c_c00000{bottom:18.360000px;}
.y7d8_c00000{bottom:18.375000px;}
.y13cd_c00000{bottom:18.405000px;}
.yfdd_c00000{bottom:18.540000px;}
.y11ce_c00000{bottom:18.585000px;}
.y93f_c00000{bottom:18.705000px;}
.y8b2_c00000{bottom:18.720000px;}
.yd60_c00000{bottom:18.735000px;}
.yed7_c00000{bottom:18.891000px;}
.ybbc_c00000{bottom:18.900000px;}
.y1405_c00000{bottom:18.915000px;}
.yaf3_c00000{bottom:19.260000px;}
.ydb1_c00000{bottom:19.275000px;}
.y11cc_c00000{bottom:19.425000px;}
.y13e0_c00000{bottom:19.440000px;}
.y1213_c00000{bottom:19.605000px;}
.y11a4_c00000{bottom:19.611000px;}
.ycae_c00000{bottom:19.620000px;}
.yeb3_c00000{bottom:19.635000px;}
.ye10_c00000{bottom:19.785000px;}
.y13cf_c00000{bottom:19.791000px;}
.ybd2_c00000{bottom:19.800000px;}
.yb1f_c00000{bottom:19.815000px;}
.y1021_c00000{bottom:19.995000px;}
.y1289_c00000{bottom:20.145000px;}
.yacc_c00000{bottom:20.151000px;}
.ycb9_c00000{bottom:20.160000px;}
.yd64_c00000{bottom:20.175000px;}
.yd5c_c00000{bottom:20.190000px;}
.ye43_c00000{bottom:20.325000px;}
.ye5a_c00000{bottom:20.331000px;}
.yeed_c00000{bottom:20.355000px;}
.y10e7_c00000{bottom:20.505000px;}
.ye01_c00000{bottom:20.520000px;}
.ye2f_c00000{bottom:20.535000px;}
.y140d_c00000{bottom:20.685000px;}
.y778_c00000{bottom:20.691000px;}
.ye2d_c00000{bottom:20.700000px;}
.ydbf_c00000{bottom:20.715000px;}
.y12d4_c00000{bottom:20.865000px;}
.yf67_c00000{bottom:20.895000px;}
.y12c1_c00000{bottom:21.045000px;}
.y90b_c00000{bottom:21.060000px;}
.y1275_c00000{bottom:21.075000px;}
.y142f_c00000{bottom:21.090000px;}
.y5e7_c00000{bottom:21.240000px;}
.ybb7_c00000{bottom:21.255000px;}
.y5e3_c00000{bottom:21.270000px;}
.y113a_c00000{bottom:21.285000px;}
.yc14_c00000{bottom:21.405000px;}
.y5de_c00000{bottom:21.420000px;}
.yfec_c00000{bottom:21.435000px;}
.y5f7_c00000{bottom:21.465000px;}
.y1009_c00000{bottom:21.600000px;}
.ybfe_c00000{bottom:21.765000px;}
.y11e0_c00000{bottom:21.780000px;}
.yf42_c00000{bottom:21.795000px;}
.yf6b_c00000{bottom:21.945000px;}
.y10ba_c00000{bottom:21.960000px;}
.ye1c_c00000{bottom:21.975000px;}
.ycd4_c00000{bottom:21.990000px;}
.yb6c_c00000{bottom:22.131000px;}
.y10c9_c00000{bottom:22.140000px;}
.yf68_c00000{bottom:22.155000px;}
.y11db_c00000{bottom:22.305000px;}
.yab0_c00000{bottom:22.320000px;}
.ya3c_c00000{bottom:22.335000px;}
.yf1d_c00000{bottom:22.350000px;}
.y11e6_c00000{bottom:22.365000px;}
.y862_c00000{bottom:22.485000px;}
.yf38_c00000{bottom:22.500000px;}
.y119c_c00000{bottom:22.515000px;}
.yf59_c00000{bottom:22.530000px;}
.y1164_c00000{bottom:22.680000px;}
.yd6f_c00000{bottom:22.695000px;}
.yf5b_c00000{bottom:22.710000px;}
.y104a_c00000{bottom:22.851000px;}
.yfc4_c00000{bottom:22.860000px;}
.yf34_c00000{bottom:22.875000px;}
.yf3b_c00000{bottom:22.890000px;}
.ya4e_c00000{bottom:22.905000px;}
.ye7c_c00000{bottom:23.025000px;}
.ya14_c00000{bottom:23.031000px;}
.yd4e_c00000{bottom:23.040000px;}
.yb71_c00000{bottom:23.055000px;}
.yede_c00000{bottom:23.070000px;}
.ye6b_c00000{bottom:23.205000px;}
.ye9c_c00000{bottom:23.220000px;}
.yd24_c00000{bottom:23.235000px;}
.y10ac_c00000{bottom:23.400000px;}
.yc17_c00000{bottom:23.415000px;}
.y1115_c00000{bottom:23.565000px;}
.yb0d_c00000{bottom:23.580000px;}
.ybd8_c00000{bottom:23.595000px;}
.y1198_c00000{bottom:23.751000px;}
.y10f7_c00000{bottom:23.760000px;}
.yb18_c00000{bottom:23.775000px;}
.yfb0_c00000{bottom:23.925000px;}
.yde1_c00000{bottom:23.940000px;}
.y120c_c00000{bottom:23.955000px;}
.y1031_c00000{bottom:24.105000px;}
.y85f_c00000{bottom:24.120000px;}
.yee0_c00000{bottom:24.135000px;}
.yf6f_c00000{bottom:24.285000px;}
.ybf9_c00000{bottom:24.300000px;}
.yece_c00000{bottom:24.315000px;}
.yd81_c00000{bottom:24.465000px;}
.y1427_c00000{bottom:24.471000px;}
.yf95_c00000{bottom:24.480000px;}
.y1210_c00000{bottom:24.495000px;}
.yce5_c00000{bottom:24.645000px;}
.ybe0_c00000{bottom:24.660000px;}
.yd14_c00000{bottom:24.675000px;}
.y479_c00000{bottom:24.825000px;}
.ye8a_c00000{bottom:24.831000px;}
.y46b_c00000{bottom:24.840000px;}
.y10e5_c00000{bottom:24.855000px;}
.ycd5_c00000{bottom:24.870000px;}
.y1092_c00000{bottom:24.885000px;}
.y10c1_c00000{bottom:25.035000px;}
.yffe_c00000{bottom:25.185000px;}
.yeb4_c00000{bottom:25.191000px;}
.ya1e_c00000{bottom:25.200000px;}
.yf45_c00000{bottom:25.215000px;}
.y13f6_c00000{bottom:25.395000px;}
.y141f_c00000{bottom:25.410000px;}
.y9e3_c00000{bottom:25.560000px;}
.y9d7_c00000{bottom:25.575000px;}
.y83c_c00000{bottom:25.725000px;}
.y11f9_c00000{bottom:25.731000px;}
.y91a_c00000{bottom:25.740000px;}
.y1375_c00000{bottom:25.755000px;}
.y56e_c00000{bottom:25.770000px;}
.yda6_c00000{bottom:25.920000px;}
.y810_c00000{bottom:26.130000px;}
.ybd4_c00000{bottom:26.280000px;}
.yd73_c00000{bottom:26.295000px;}
.y1299_c00000{bottom:26.451000px;}
.ya32_c00000{bottom:26.460000px;}
.y580_c00000{bottom:26.475000px;}
.yaac_c00000{bottom:26.625000px;}
.y1005_c00000{bottom:26.640000px;}
.y74d_c00000{bottom:26.655000px;}
.ydfd_c00000{bottom:26.670000px;}
.yd1c_c00000{bottom:26.805000px;}
.y12af_c00000{bottom:26.811000px;}
.y103c_c00000{bottom:26.985000px;}
.y102b_c00000{bottom:26.991000px;}
.y141d_c00000{bottom:27.165000px;}
.ya34_c00000{bottom:27.180000px;}
.y1193_c00000{bottom:27.360000px;}
.y879_c00000{bottom:27.540000px;}
.y884_c00000{bottom:27.570000px;}
.y1069_c00000{bottom:27.585000px;}
.y941_c00000{bottom:27.705000px;}
.yf21_c00000{bottom:27.711000px;}
.ya72_c00000{bottom:27.735000px;}
.yea5_c00000{bottom:27.885000px;}
.ya93_c00000{bottom:27.900000px;}
.ya50_c00000{bottom:27.915000px;}
.ya82_c00000{bottom:28.071000px;}
.yadc_c00000{bottom:28.080000px;}
.yac1_c00000{bottom:28.095000px;}
.yac5_c00000{bottom:28.275000px;}
.yf57_c00000{bottom:28.440000px;}
.y112b_c00000{bottom:28.785000px;}
.y111f_c00000{bottom:28.800000px;}
.y128c_c00000{bottom:28.965000px;}
.y1379_c00000{bottom:28.971000px;}
.y101c_c00000{bottom:28.980000px;}
.yc04_c00000{bottom:29.025000px;}
.ydc9_c00000{bottom:29.160000px;}
.ya69_c00000{bottom:29.331000px;}
.y115b_c00000{bottom:29.505000px;}
.yf98_c00000{bottom:29.685000px;}
.y13f3_c00000{bottom:29.691000px;}
.y1426_c00000{bottom:29.700000px;}
.ybba_c00000{bottom:29.715000px;}
.y91d_c00000{bottom:29.865000px;}
.yd32_c00000{bottom:29.880000px;}
.ydb5_c00000{bottom:29.925000px;}
.y11a9_c00000{bottom:30.255000px;}
.y1409_c00000{bottom:30.825000px;}
.ydf0_c00000{bottom:30.951000px;}
.y10e3_c00000{bottom:30.960000px;}
.yab3_c00000{bottom:31.125000px;}
.y87c_c00000{bottom:31.140000px;}
.y121f_c00000{bottom:31.155000px;}
.yb24_c00000{bottom:31.320000px;}
.y10b0_c00000{bottom:31.335000px;}
.y11ef_c00000{bottom:31.485000px;}
.y1018_c00000{bottom:31.491000px;}
.y121c_c00000{bottom:31.500000px;}
.y1216_c00000{bottom:31.515000px;}
.y12bc_c00000{bottom:31.665000px;}
.y101b_c00000{bottom:31.680000px;}
.y100c_c00000{bottom:31.695000px;}
.y1129_c00000{bottom:31.845000px;}
.y10c5_c00000{bottom:31.860000px;}
.y12ac_c00000{bottom:31.875000px;}
.y950_c00000{bottom:32.211000px;}
.y103a_c00000{bottom:32.220000px;}
.ya52_c00000{bottom:32.565000px;}
.yd7e_c00000{bottom:32.580000px;}
.yaee_c00000{bottom:32.925000px;}
.yfaa_c00000{bottom:33.105000px;}
.y131d_c00000{bottom:33.150000px;}
.y13a1_c00000{bottom:33.291000px;}
.y112f_c00000{bottom:33.645000px;}
.yba2_c00000{bottom:33.660000px;}
.ydc6_c00000{bottom:34.005000px;}
.y127c_c00000{bottom:34.020000px;}
.y1292_c00000{bottom:34.185000px;}
.yf2d_c00000{bottom:34.371000px;}
.yd4f_c00000{bottom:34.605000px;}
.y7df_c00000{bottom:34.725000px;}
.ydc3_c00000{bottom:34.740000px;}
.y7d6_c00000{bottom:34.755000px;}
.y123f_c00000{bottom:34.920000px;}
.y1366_c00000{bottom:35.091000px;}
.yb6e_c00000{bottom:35.145000px;}
.yf27_c00000{bottom:35.451000px;}
.y1149_c00000{bottom:35.631000px;}
.y1387_c00000{bottom:35.640000px;}
.yfe7_c00000{bottom:35.655000px;}
.y93e_c00000{bottom:35.805000px;}
.y141b_c00000{bottom:35.811000px;}
.y8b1_c00000{bottom:35.820000px;}
.y13af_c00000{bottom:35.835000px;}
.y13cc_c00000{bottom:35.865000px;}
.yed6_c00000{bottom:35.991000px;}
.yd5f_c00000{bottom:36.015000px;}
.y12a9_c00000{bottom:36.180000px;}
.yf31_c00000{bottom:36.351000px;}
.ybbb_c00000{bottom:36.360000px;}
.y1233_c00000{bottom:36.525000px;}
.yaf2_c00000{bottom:36.540000px;}
.ydb0_c00000{bottom:36.555000px;}
.y1296_c00000{bottom:36.705000px;}
.yab9_c00000{bottom:36.900000px;}
.ye0f_c00000{bottom:37.065000px;}
.y1428_c00000{bottom:37.071000px;}
.ybd1_c00000{bottom:37.080000px;}
.yb1e_c00000{bottom:37.095000px;}
.y763_c00000{bottom:37.290000px;}
.y1288_c00000{bottom:37.425000px;}
.yacb_c00000{bottom:37.431000px;}
.y75b_c00000{bottom:37.440000px;}
.yd63_c00000{bottom:37.455000px;}
.yd5b_c00000{bottom:37.470000px;}
.ye42_c00000{bottom:37.605000px;}
.ye59_c00000{bottom:37.611000px;}
.yeec_c00000{bottom:37.635000px;}
.y953_c00000{bottom:37.785000px;}
.ye00_c00000{bottom:37.800000px;}
.y140c_c00000{bottom:37.965000px;}
.ye2c_c00000{bottom:37.980000px;}
.ydbe_c00000{bottom:37.995000px;}
.y12d3_c00000{bottom:38.145000px;}
.y12a5_c00000{bottom:38.160000px;}
.y12c0_c00000{bottom:38.325000px;}
.y1274_c00000{bottom:38.355000px;}
.y1382_c00000{bottom:38.370000px;}
.yefb_c00000{bottom:38.535000px;}
.y1086_c00000{bottom:38.700000px;}
.y1020_c00000{bottom:38.715000px;}
.ycdd_c00000{bottom:38.880000px;}
.yf41_c00000{bottom:38.895000px;}
.ybfd_c00000{bottom:39.045000px;}
.y1110_c00000{bottom:39.060000px;}
.y11df_c00000{bottom:39.105000px;}
.y1029_c00000{bottom:39.225000px;}
.y10b9_c00000{bottom:39.240000px;}
.ye1b_c00000{bottom:39.255000px;}
.y126c_c00000{bottom:39.270000px;}
.y1230_c00000{bottom:39.435000px;}
.y10c8_c00000{bottom:39.465000px;}
.y1159_c00000{bottom:39.600000px;}
.ya3b_c00000{bottom:39.615000px;}
.yf1c_c00000{bottom:39.630000px;}
.ya6f_c00000{bottom:39.765000px;}
.yf37_c00000{bottom:39.960000px;}
.yd6e_c00000{bottom:39.975000px;}
.yf3a_c00000{bottom:39.990000px;}
.y1226_c00000{bottom:40.140000px;}
.y105e_c00000{bottom:40.305000px;}
.y10bb_c00000{bottom:40.320000px;}
.y1380_c00000{bottom:40.335000px;}
.ya4d_c00000{bottom:40.365000px;}
.ycf0_c00000{bottom:40.485000px;}
.y10ab_c00000{bottom:40.500000px;}
.y12e2_c00000{bottom:40.515000px;}
.yd8b_c00000{bottom:40.695000px;}
.y87f_c00000{bottom:40.860000px;}
.ybd7_c00000{bottom:40.875000px;}
.y1197_c00000{bottom:41.031000px;}
.yde0_c00000{bottom:41.040000px;}
.y10f6_c00000{bottom:41.220000px;}
.y120b_c00000{bottom:41.235000px;}
.y12d1_c00000{bottom:41.250000px;}
.y136b_c00000{bottom:41.385000px;}
.y1203_c00000{bottom:41.400000px;}
.yb61_c00000{bottom:41.415000px;}
.y1049_c00000{bottom:41.565000px;}
.ybf8_c00000{bottom:41.580000px;}
.yecd_c00000{bottom:41.595000px;}
.yf06_c00000{bottom:41.760000px;}
.y1025_c00000{bottom:41.775000px;}
.yee3_c00000{bottom:41.925000px;}
.y10b3_c00000{bottom:41.940000px;}
.y120f_c00000{bottom:41.955000px;}
.y142d_c00000{bottom:41.970000px;}
.y10d1_c00000{bottom:42.285000px;}
.y10c0_c00000{bottom:42.315000px;}
.y12b7_c00000{bottom:42.495000px;}
.y1030_c00000{bottom:42.645000px;}
.y122d_c00000{bottom:42.675000px;}
.y11f8_c00000{bottom:43.005000px;}
.yce3_c00000{bottom:43.020000px;}
.y13a7_c00000{bottom:43.200000px;}
.yda5_c00000{bottom:43.380000px;}
.y1008_c00000{bottom:43.395000px;}
.yaa8_c00000{bottom:43.560000px;}
.yd72_c00000{bottom:43.575000px;}
.yffd_c00000{bottom:43.725000px;}
.y57f_c00000{bottom:43.755000px;}
.ydfc_c00000{bottom:43.770000px;}
.y1298_c00000{bottom:43.905000px;}
.yaab_c00000{bottom:44.085000px;}
.y1256_c00000{bottom:44.100000px;}
.y12a7_c00000{bottom:44.460000px;}
.yfe5_c00000{bottom:44.835000px;}
.yf20_c00000{bottom:44.985000px;}
.ya71_c00000{bottom:45.015000px;}
.yea4_c00000{bottom:45.345000px;}
.yafa_c00000{bottom:45.360000px;}
.yac4_c00000{bottom:45.375000px;}
.y11c8_c00000{bottom:45.540000px;}
.y102a_c00000{bottom:45.705000px;}
.yf56_c00000{bottom:45.720000px;}
.y1335_c00000{bottom:45.750000px;}
.y1336_c00000{bottom:45.930000px;}
.y128b_c00000{bottom:46.065000px;}
.y1378_c00000{bottom:46.425000px;}
.ya68_c00000{bottom:46.605000px;}
.y1425_c00000{bottom:47.025000px;}
.yd31_c00000{bottom:47.160000px;}
.ydb4_c00000{bottom:47.205000px;}
.y1408_c00000{bottom:48.105000px;}
.ydef_c00000{bottom:48.225000px;}
.yfee_c00000{bottom:48.465000px;}
.y10af_c00000{bottom:48.615000px;}
.yba1_c00000{bottom:48.780000px;}
.y13f9_c00000{bottom:48.795000px;}
.y12bb_c00000{bottom:48.945000px;}
.y10c4_c00000{bottom:49.140000px;}
.y12ab_c00000{bottom:49.155000px;}
.yd7d_c00000{bottom:49.860000px;}
.y118c_c00000{bottom:50.205000px;}
.y760_c00000{bottom:50.760000px;}
.y1291_c00000{bottom:51.465000px;}
.yf2c_c00000{bottom:51.645000px;}
.y7de_c00000{bottom:52.005000px;}
.ydc2_c00000{bottom:52.020000px;}
.y133a_c00000{bottom:52.185000px;}
.y123e_c00000{bottom:52.200000px;}
.yf26_c00000{bottom:52.725000px;}
.ye57_c00000{bottom:52.920000px;}
.yc34_c00000{bottom:53.085000px;}
.y141a_c00000{bottom:53.265000px;}
.y12a8_c00000{bottom:53.460000px;}
.y1192_c00000{bottom:53.505000px;}
.yf30_c00000{bottom:53.625000px;}
.y878_c00000{bottom:53.640000px;}
.y883_c00000{bottom:53.670000px;}
.y1068_c00000{bottom:53.685000px;}
.y1232_c00000{bottom:53.805000px;}
.y1295_c00000{bottom:53.985000px;}
.ye0e_c00000{bottom:54.345000px;}
.yeeb_c00000{bottom:54.735000px;}
.ye41_c00000{bottom:54.885000px;}
.ydff_c00000{bottom:55.080000px;}
.y12bf_c00000{bottom:55.605000px;}
.y11bb_c00000{bottom:55.980000px;}
.y10cb_c00000{bottom:56.025000px;}
.y12c9_c00000{bottom:56.175000px;}
.ye1a_c00000{bottom:56.535000px;}
.y1158_c00000{bottom:56.700000px;}
.y10c7_c00000{bottom:56.745000px;}
.y10df_c00000{bottom:56.895000px;}
.yd6d_c00000{bottom:57.075000px;}
.y1225_c00000{bottom:57.240000px;}
.y101f_c00000{bottom:57.255000px;}
.yd4d_c00000{bottom:57.465000px;}
.y27_c00000{bottom:57.636000px;}
.y11ba_c00000{bottom:57.975000px;}
.ybd6_c00000{bottom:58.155000px;}
.yddf_c00000{bottom:58.320000px;}
.yb60_c00000{bottom:58.515000px;}
.yecc_c00000{bottom:58.695000px;}
.ybf7_c00000{bottom:58.860000px;}
.yf05_c00000{bottom:59.040000px;}
.y1223_c00000{bottom:59.220000px;}
.y12b6_c00000{bottom:59.775000px;}
.y1048_c00000{bottom:60.105000px;}
.y1206_c00000{bottom:60.285000px;}
.yd71_c00000{bottom:60.675000px;}
.ydfb_c00000{bottom:61.050000px;}
.yaaa_c00000{bottom:61.365000px;}
.yaf9_c00000{bottom:62.460000px;}
.yda4_c00000{bottom:62.505000px;}
.yea3_c00000{bottom:62.625000px;}
.y13f2_c00000{bottom:63.180000px;}
.y1377_c00000{bottom:63.705000px;}
.y12ba_c00000{bottom:66.225000px;}
.y118b_c00000{bottom:67.305000px;}
.y7dd_c00000{bottom:69.285000px;}
.ydc1_c00000{bottom:69.300000px;}
.ye1f_c00000{bottom:70.035000px;}
.y12be_c00000{bottom:72.885000px;}
.y12c8_c00000{bottom:73.455000px;}
.ye19_c00000{bottom:73.815000px;}
.y1157_c00000{bottom:73.980000px;}
.y11b9_c00000{bottom:75.255000px;}
.ydde_c00000{bottom:75.600000px;}
.y101e_c00000{bottom:75.795000px;}
.y13ab_c00000{bottom:76.140000px;}
.y12b5_c00000{bottom:77.055000px;}
.y26_c00000{bottom:77.796000px;}
.yc18_c00000{bottom:78.109500px;}
.ydfa_c00000{bottom:78.330000px;}
.y118a_c00000{bottom:84.585000px;}
.ye1e_c00000{bottom:87.495000px;}
.y11b8_c00000{bottom:92.535000px;}
.yddd_c00000{bottom:92.880000px;}
.y1189_c00000{bottom:101.865000px;}
.yb6b_c00000{bottom:106.245000px;}
.ye58_c00000{bottom:106.605000px;}
.yf2f_c00000{bottom:106.785000px;}
.y7c6_c00000{bottom:106.965000px;}
.y873_c00000{bottom:107.145000px;}
.ya13_c00000{bottom:107.325000px;}
.y13a0_c00000{bottom:107.505000px;}
.ye89_c00000{bottom:107.685000px;}
.y11ab_c00000{bottom:108.045000px;}
.yca1_c00000{bottom:108.225000px;}
.yf2b_c00000{bottom:108.585000px;}
.y1148_c00000{bottom:108.945000px;}
.y14c_c00000{bottom:109.296000px;}
.y1400_c00000{bottom:109.845000px;}
.y2a7_c00000{bottom:110.196000px;}
.y12e0_c00000{bottom:110.376000px;}
.yed4_c00000{bottom:110.556000px;}
.yfba_c00000{bottom:110.736000px;}
.ya6e_c00000{bottom:110.745000px;}
.yf1f_c00000{bottom:111.105000px;}
.yff0_c00000{bottom:111.285000px;}
.y1424_c00000{bottom:111.636000px;}
.y1376_c00000{bottom:111.645000px;}
.yd4_c00000{bottom:112.176000px;}
.yf80_c00000{bottom:112.536000px;}
.yf50_c00000{bottom:112.716000px;}
.yc53_c00000{bottom:112.725000px;}
.y3c5_c00000{bottom:113.256000px;}
.y1419_c00000{bottom:113.265000px;}
.y123_c00000{bottom:113.436000px;}
.yeaa_c00000{bottom:113.796000px;}
.y1028_c00000{bottom:113.985000px;}
.y72f_c00000{bottom:114.156000px;}
.y229_c00000{bottom:114.516000px;}
.ybf6_c00000{bottom:114.696000px;}
.y6b5_c00000{bottom:114.876000px;}
.yb20_c00000{bottom:115.056000px;}
.ya64_c00000{bottom:115.236000px;}
.y2a6_c00000{bottom:115.416000px;}
.y7c5_c00000{bottom:115.596000px;}
.y1047_c00000{bottom:115.605000px;}
.y311_c00000{bottom:115.956000px;}
.y1371_c00000{bottom:116.136000px;}
.yb22_c00000{bottom:116.316000px;}
.y1180_c00000{bottom:117.216000px;}
.y94f_c00000{bottom:117.405000px;}
.y104b_c00000{bottom:117.756000px;}
.yb3b_c00000{bottom:117.945000px;}
.ya67_c00000{bottom:118.485000px;}
.y12d7_c00000{bottom:118.656000px;}
.y8f8_c00000{bottom:118.836000px;}
.y43b_c00000{bottom:119.016000px;}
.y1188_c00000{bottom:119.145000px;}
.yf7_c00000{bottom:119.376000px;}
.y13a4_c00000{bottom:119.385000px;}
.y127b_c00000{bottom:119.556000px;}
.y1062_c00000{bottom:119.736000px;}
.y48f_c00000{bottom:119.916000px;}
.yfbc_c00000{bottom:119.925000px;}
.yc71_c00000{bottom:120.816000px;}
.y7d4_c00000{bottom:121.356000px;}
.y1330_c00000{bottom:121.536000px;}
.y777_c00000{bottom:121.545000px;}
.ya81_c00000{bottom:121.725000px;}
.y872_c00000{bottom:122.076000px;}
.y8b_c00000{bottom:122.256000px;}
.yc60_c00000{bottom:122.616000px;}
.y1106_c00000{bottom:122.625000px;}
.yd2f_c00000{bottom:122.976000px;}
.yc48_c00000{bottom:123.156000px;}
.y44d_c00000{bottom:123.336000px;}
.y621_c00000{bottom:123.696000px;}
.y11f7_c00000{bottom:123.885000px;}
.y11a3_c00000{bottom:124.245000px;}
.y130d_c00000{bottom:124.776000px;}
.yec6_c00000{bottom:124.956000px;}
.y1340_c00000{bottom:125.316000px;}
.y1140_c00000{bottom:125.676000px;}
.y10f4_c00000{bottom:125.856000px;}
.y74b_c00000{bottom:126.036000px;}
.y12a4_c00000{bottom:126.396000px;}
.y25_c00000{bottom:126.552960px;}
.y1058_c00000{bottom:126.756000px;}
.yb6a_c00000{bottom:126.936000px;}
.y138d_c00000{bottom:127.296000px;}
.y14b_c00000{bottom:127.476000px;}
.y754_c00000{bottom:127.656000px;}
.yf18_c00000{bottom:127.836000px;}
.yeef_c00000{bottom:127.845000px;}
.y1050_c00000{bottom:128.016000px;}
.y1b4_c00000{bottom:128.376000px;}
.ye6a_c00000{bottom:128.565000px;}
.y7a0_c00000{bottom:128.736000px;}
.y190_c00000{bottom:128.916000px;}
.y6b2_c00000{bottom:129.096000px;}
.ycee_c00000{bottom:129.276000px;}
.ye26_c00000{bottom:129.636000px;}
.y1002_c00000{bottom:129.816000px;}
.y2a5_c00000{bottom:129.996000px;}
.yed0_c00000{bottom:130.176000px;}
.yf75_c00000{bottom:130.356000px;}
.ybfc_c00000{bottom:130.365000px;}
.y94d_c00000{bottom:130.896000px;}
.ycac_c00000{bottom:131.256000px;}
.y1436_c00000{bottom:131.265000px;}
.y1105_c00000{bottom:131.436000px;}
.y11a2_c00000{bottom:131.796000px;}
.yf47_c00000{bottom:131.985000px;}
.y10b2_c00000{bottom:132.336000px;}
.y14a_c00000{bottom:132.696000px;}
.y13f0_c00000{bottom:132.876000px;}
.y1398_c00000{bottom:133.056000px;}
.yb3a_c00000{bottom:133.416000px;}
.y1b3_c00000{bottom:133.596000px;}
.y8f7_c00000{bottom:133.776000px;}
.yab7_c00000{bottom:133.956000px;}
.yabf_c00000{bottom:134.136000px;}
.yd3_c00000{bottom:134.316000px;}
.yced_c00000{bottom:134.496000px;}
.y137e_c00000{bottom:135.036000px;}
.y846_c00000{bottom:135.216000px;}
.y1421_c00000{bottom:135.225000px;}
.ya6d_c00000{bottom:135.396000px;}
.y6b4_c00000{bottom:135.576000px;}
.y122_c00000{bottom:135.756000px;}
.yea9_c00000{bottom:135.936000px;}
.y1014_c00000{bottom:136.116000px;}
.y1187_c00000{bottom:136.425000px;}
.y72e_c00000{bottom:136.476000px;}
.y1429_c00000{bottom:136.656000px;}
.y1063_c00000{bottom:136.665000px;}
.y1370_c00000{bottom:137.016000px;}
.y125f_c00000{bottom:137.196000px;}
.yc02_c00000{bottom:137.736000px;}
.ye9f_c00000{bottom:138.276000px;}
.y13e7_c00000{bottom:138.456000px;}
.ya11_c00000{bottom:138.636000px;}
.ya92_c00000{bottom:138.816000px;}
.ya63_c00000{bottom:138.996000px;}
.y9fb_c00000{bottom:139.176000px;}
.y7c4_c00000{bottom:139.536000px;}
.yffb_c00000{bottom:140.076000px;}
.ye3a_c00000{bottom:140.256000px;}
.y13aa_c00000{bottom:140.436000px;}
.yfb9_c00000{bottom:140.976000px;}
.y8a_c00000{bottom:141.156000px;}
.y43a_c00000{bottom:141.336000px;}
.yf6_c00000{bottom:141.516000px;}
.y102e_c00000{bottom:141.696000px;}
.y48e_c00000{bottom:142.236000px;}
.y795_c00000{bottom:142.416000px;}
.y8f5_c00000{bottom:142.596000px;}
.yb34_c00000{bottom:143.136000px;}
.yad5_c00000{bottom:143.316000px;}
.yf9a_c00000{bottom:143.496000px;}
.ydec_c00000{bottom:144.396000px;}
.y847_c00000{bottom:144.405000px;}
.y57_c00000{bottom:144.756000px;}
.yc5f_c00000{bottom:144.936000px;}
.y7d3_c00000{bottom:145.116000px;}
.y909_c00000{bottom:145.296000px;}
.yc33_c00000{bottom:145.305000px;}
.y24_c00000{bottom:145.447920px;}
.yc47_c00000{bottom:145.476000px;}
.y12e5_c00000{bottom:145.485000px;}
.y166_c00000{bottom:145.656000px;}
.yfa9_c00000{bottom:145.845000px;}
.y620_c00000{bottom:146.016000px;}
.ya4c_c00000{bottom:146.196000px;}
.yf7f_c00000{bottom:146.376000px;}
.y1da_c00000{bottom:146.556000px;}
.y11a5_c00000{bottom:146.736000px;}
.y7db_c00000{bottom:146.916000px;}
.y44c_c00000{bottom:147.096000px;}
.y149_c00000{bottom:147.276000px;}
.yda2_c00000{bottom:147.456000px;}
.yad9_c00000{bottom:147.816000px;}
.y138c_c00000{bottom:147.996000px;}
.y348_c00000{bottom:148.176000px;}
.y74a_c00000{bottom:148.356000px;}
.y1435_c00000{bottom:148.716000px;}
.y132b_c00000{bottom:148.896000px;}
.ycec_c00000{bottom:149.076000px;}
.ye88_c00000{bottom:149.085000px;}
.y1057_c00000{bottom:149.256000px;}
.y113f_c00000{bottom:149.436000px;}
.y13c6_c00000{bottom:149.616000px;}
.y102f_c00000{bottom:149.625000px;}
.y753_c00000{bottom:149.796000px;}
.y310_c00000{bottom:150.150000px;}
.y24b_c00000{bottom:150.870000px;}
.y18f_c00000{bottom:151.050000px;}
.y1147_c00000{bottom:151.230000px;}
.y8cd_c00000{bottom:151.410000px;}
.y420_c00000{bottom:151.590000px;}
.y1d9_c00000{bottom:151.770000px;}
.ye25_c00000{bottom:151.950000px;}
.y79f_c00000{bottom:152.490000px;}
.y1247_c00000{bottom:152.505000px;}
.yda1_c00000{bottom:152.670000px;}
.ycab_c00000{bottom:153.570000px;}
.y132a_c00000{bottom:154.830000px;}
.y1104_c00000{bottom:155.190000px;}
.y13f7_c00000{bottom:155.370000px;}
.y6b3_c00000{bottom:156.270000px;}
.y92f_c00000{bottom:156.450000px;}
.y9c3_c00000{bottom:157.170000px;}
.yb39_c00000{bottom:157.350000px;}
.y8f6_c00000{bottom:157.530000px;}
.yab6_c00000{bottom:157.710000px;}
.ybcf_c00000{bottom:157.890000px;}
.y121_c00000{bottom:158.070000px;}
.yea8_c00000{bottom:158.250000px;}
.y1013_c00000{bottom:158.430000px;}
.y72d_c00000{bottom:158.790000px;}
.yfa6_c00000{bottom:159.330000px;}
.y62f_c00000{bottom:159.690000px;}
.y968_c00000{bottom:159.870000px;}
.y89_c00000{bottom:160.050000px;}
.y940_c00000{bottom:160.245000px;}
.ye9e_c00000{bottom:160.590000px;}
.y13e6_c00000{bottom:160.770000px;}
.y11f6_c00000{bottom:160.950000px;}
.y13d2_c00000{bottom:161.130000px;}
.y112e_c00000{bottom:161.145000px;}
.y1038_c00000{bottom:161.850000px;}
.y11a1_c00000{bottom:162.030000px;}
.y104f_c00000{bottom:162.210000px;}
.ye39_c00000{bottom:162.390000px;}
.ya91_c00000{bottom:162.570000px;}
.ya62_c00000{bottom:162.750000px;}
.y124c_c00000{bottom:162.765000px;}
.y9fa_c00000{bottom:162.930000px;}
.y132f_c00000{bottom:163.110000px;}
.ye40_c00000{bottom:163.125000px;}
.y7c3_c00000{bottom:163.290000px;}
.y439_c00000{bottom:163.650000px;}
.yd2e_c00000{bottom:163.830000px;}
.yaa9_c00000{bottom:163.845000px;}
.y165_c00000{bottom:164.010000px;}
.ye9d_c00000{bottom:164.025000px;}
.y6b1_c00000{bottom:164.190000px;}
.y8f2_c00000{bottom:164.205000px;}
.y23_c00000{bottom:164.342880px;}
.y48d_c00000{bottom:164.550000px;}
.y2da_c00000{bottom:164.910000px;}
.y129e_c00000{bottom:165.270000px;}
.y24a_c00000{bottom:165.450000px;}
.y52b_c00000{bottom:165.630000px;}
.y94c_c00000{bottom:165.810000px;}
.yf7b_c00000{bottom:166.170000px;}
.y1205_c00000{bottom:166.185000px;}
.y1d8_c00000{bottom:166.350000px;}
.yda0_c00000{bottom:166.530000px;}
.y10bc_c00000{bottom:166.545000px;}
.ydeb_c00000{bottom:166.710000px;}
.ycef_c00000{bottom:166.725000px;}
.y590_c00000{bottom:166.890000px;}
.yedc_c00000{bottom:167.070000px;}
.yc5e_c00000{bottom:167.250000px;}
.ye17_c00000{bottom:167.430000px;}
.yb40_c00000{bottom:167.445000px;}
.yc46_c00000{bottom:167.790000px;}
.ycff_c00000{bottom:168.150000px;}
.y111e_c00000{bottom:168.330000px;}
.y138b_c00000{bottom:168.510000px;}
.y7d2_c00000{bottom:169.050000px;}
.y164_c00000{bottom:169.230000px;}
.yec5_c00000{bottom:169.590000px;}
.yd2d_c00000{bottom:169.770000px;}
.y3c4_c00000{bottom:170.130000px;}
.y749_c00000{bottom:170.670000px;}
.y44b_c00000{bottom:170.850000px;}
.yee2_c00000{bottom:170.865000px;}
.y12d2_c00000{bottom:171.045000px;}
.y776_c00000{bottom:171.210000px;}
.y5f0_c00000{bottom:171.390000px;}
.ydae_c00000{bottom:171.570000px;}
.ybb4_c00000{bottom:171.750000px;}
.y347_c00000{bottom:171.930000px;}
.y752_c00000{bottom:172.110000px;}
.y139f_c00000{bottom:172.290000px;}
.y12bd_c00000{bottom:172.485000px;}
.y8f1_c00000{bottom:172.650000px;}
.y1165_c00000{bottom:173.025000px;}
.ye56_c00000{bottom:173.190000px;}
.y18e_c00000{bottom:173.370000px;}
.ye0d_c00000{bottom:173.565000px;}
.y1415_c00000{bottom:173.730000px;}
.y41f_c00000{bottom:173.910000px;}
.y116e_c00000{bottom:174.090000px;}
.y7dc_c00000{bottom:174.105000px;}
.ya31_c00000{bottom:174.270000px;}
.yffa_c00000{bottom:174.450000px;}
.y141c_c00000{bottom:174.465000px;}
.yb69_c00000{bottom:174.630000px;}
.y93a_c00000{bottom:174.810000px;}
.y8cc_c00000{bottom:175.170000px;}
.y103b_c00000{bottom:175.185000px;}
.y4fa_c00000{bottom:175.350000px;}
.y80e_c00000{bottom:175.530000px;}
.y942_c00000{bottom:175.545000px;}
.ycaa_c00000{bottom:175.890000px;}
.yf5_c00000{bottom:176.070000px;}
.y79e_c00000{bottom:176.250000px;}
.yc01_c00000{bottom:176.430000px;}
.y137d_c00000{bottom:176.790000px;}
.y228_c00000{bottom:176.970000px;}
.yb56_c00000{bottom:177.150000px;}
.y1061_c00000{bottom:177.330000px;}
.ya10_c00000{bottom:177.510000px;}
.ye7a_c00000{bottom:177.690000px;}
.ye2a_c00000{bottom:177.705000px;}
.yd80_c00000{bottom:177.885000px;}
.y1184_c00000{bottom:178.065000px;}
.y136f_c00000{bottom:178.410000px;}
.y11d6_c00000{bottom:178.770000px;}
.y39_c00000{bottom:178.950000px;}
.y88_c00000{bottom:179.130000px;}
.ydc8_c00000{bottom:179.310000px;}
.y1286_c00000{bottom:179.670000px;}
.y2a4_c00000{bottom:179.850000px;}
.yd3e_c00000{bottom:180.030000px;}
.y92e_c00000{bottom:180.210000px;}
.y62e_c00000{bottom:180.390000px;}
.y120_c00000{bottom:180.570000px;}
.yc05_c00000{bottom:180.585000px;}
.ye08_c00000{bottom:180.750000px;}
.y871_c00000{bottom:180.930000px;}
.y72c_c00000{bottom:181.110000px;}
.yf4f_c00000{bottom:181.290000px;}
.y8e8_c00000{bottom:181.470000px;}
.yc13_c00000{bottom:181.485000px;}
.yab5_c00000{bottom:181.650000px;}
.yabe_c00000{bottom:181.830000px;}
.y10e8_c00000{bottom:181.845000px;}
.y36d_c00000{bottom:182.010000px;}
.y163_c00000{bottom:182.190000px;}
.y1000_c00000{bottom:182.205000px;}
.y91c_c00000{bottom:182.385000px;}
.y1316_c00000{bottom:182.550000px;}
.y56_c00000{bottom:182.730000px;}
.ye9b_c00000{bottom:182.910000px;}
.y2d9_c00000{bottom:183.090000px;}
.yd2c_c00000{bottom:183.270000px;}
.y22_c00000{bottom:183.420000px;}
.y11f5_c00000{bottom:183.450000px;}
.y967_c00000{bottom:183.630000px;}
.ydc5_c00000{bottom:183.645000px;}
.y560_c00000{bottom:183.810000px;}
.yaae_c00000{bottom:183.990000px;}
.y10e6_c00000{bottom:184.005000px;}
.ye66_c00000{bottom:184.170000px;}
.y30f_c00000{bottom:184.530000px;}
.y6b0_c00000{bottom:184.710000px;}
.ya4b_c00000{bottom:185.070000px;}
.yc32_c00000{bottom:185.250000px;}
.y128e_c00000{bottom:185.430000px;}
.y7da_c00000{bottom:185.610000px;}
.y438_c00000{bottom:185.970000px;}
.yebc_c00000{bottom:186.150000px;}
.ybf5_c00000{bottom:186.330000px;}
.ya90_c00000{bottom:186.510000px;}
.ya61_c00000{bottom:186.690000px;}
.y48c_c00000{bottom:186.870000px;}
.y7c2_c00000{bottom:187.050000px;}
.y133f_c00000{bottom:187.230000px;}
.y23b_c00000{bottom:187.410000px;}
.y1294_c00000{bottom:187.425000px;}
.y61f_c00000{bottom:187.590000px;}
.y9ed_c00000{bottom:187.770000px;}
.yaed_c00000{bottom:187.785000px;}
.yc70_c00000{bottom:187.950000px;}
.y11f1_c00000{bottom:187.965000px;}
.yd89_c00000{bottom:188.130000px;}
.y2d8_c00000{bottom:188.310000px;}
.y1231_c00000{bottom:188.325000px;}
.yd2b_c00000{bottom:188.490000px;}
.yb73_c00000{bottom:188.505000px;}
.y117f_c00000{bottom:188.670000px;}
.y1319_c00000{bottom:188.850000px;}
.y469_c00000{bottom:189.030000px;}
.y11da_c00000{bottom:189.045000px;}
.y58f_c00000{bottom:189.210000px;}
.y10d0_c00000{bottom:189.405000px;}
.yc5d_c00000{bottom:189.570000px;}
.yce4_c00000{bottom:189.585000px;}
.yceb_c00000{bottom:189.750000px;}
.yc0f_c00000{bottom:189.930000px;}
.y1290_c00000{bottom:189.945000px;}
.yc45_c00000{bottom:190.110000px;}
.y8f4_c00000{bottom:190.290000px;}
.y977_c00000{bottom:190.470000px;}
.ye86_c00000{bottom:190.485000px;}
.yad4_c00000{bottom:190.650000px;}
.y1003_c00000{bottom:190.665000px;}
.y127a_c00000{bottom:190.830000px;}
.y742_c00000{bottom:191.370000px;}
.y202_c00000{bottom:191.550000px;}
.y5d9_c00000{bottom:191.730000px;}
.yec4_c00000{bottom:191.910000px;}
.y111d_c00000{bottom:192.090000px;}
.y3c3_c00000{bottom:192.270000px;}
.y7d1_c00000{bottom:192.810000px;}
.y12b9_c00000{bottom:192.825000px;}
.y6f6_c00000{bottom:192.990000px;}
.y919_c00000{bottom:193.530000px;}
.y142b_c00000{bottom:193.710000px;}
.y1114_c00000{bottom:193.725000px;}
.y5ef_c00000{bottom:193.890000px;}
.y13c5_c00000{bottom:194.250000px;}
.ye0b_c00000{bottom:194.265000px;}
.y751_c00000{bottom:194.430000px;}
.y148_c00000{bottom:194.610000px;}
.y1d7_c00000{bottom:194.790000px;}
.y775_c00000{bottom:194.970000px;}
.yf17_c00000{bottom:195.150000px;}
.ybb3_c00000{bottom:195.330000px;}
.y11d8_c00000{bottom:195.345000px;}
.yef9_c00000{bottom:195.510000px;}
.y346_c00000{bottom:195.690000px;}
.y18d_c00000{bottom:195.870000px;}
.y1414_c00000{bottom:196.050000px;}
.y1037_c00000{bottom:196.230000px;}
.y8f0_c00000{bottom:196.410000px;}
.yc9c_c00000{bottom:196.425000px;}
.ye24_c00000{bottom:196.590000px;}
.yd12_c00000{bottom:196.770000px;}
.y123c_c00000{bottom:196.950000px;}
.y10f3_c00000{bottom:197.130000px;}
.y218_c00000{bottom:197.670000px;}
.y249_c00000{bottom:197.850000px;}
.y1271_c00000{bottom:197.865000px;}
.y87_c00000{bottom:198.030000px;}
.yfde_c00000{bottom:198.045000px;}
.yca9_c00000{bottom:198.210000px;}
.yb68_c00000{bottom:198.390000px;}
.y110e_c00000{bottom:198.750000px;}
.y11ee_c00000{bottom:198.765000px;}
.y8cb_c00000{bottom:198.930000px;}
.y115e_c00000{bottom:199.110000px;}
.y2c1_c00000{bottom:199.470000px;}
.ya51_c00000{bottom:199.485000px;}
.ye46_c00000{bottom:199.830000px;}
.yf7a_c00000{bottom:200.010000px;}
.y9cf_c00000{bottom:200.025000px;}
.y79d_c00000{bottom:200.190000px;}
.y162_c00000{bottom:200.370000px;}
.yaec_c00000{bottom:200.910000px;}
.y62d_c00000{bottom:201.090000px;}
.y49e_c00000{bottom:201.270000px;}
.y83b_c00000{bottom:201.285000px;}
.y3dc_c00000{bottom:201.450000px;}
.yf6e_c00000{bottom:201.465000px;}
.yac8_c00000{bottom:201.630000px;}
.y55_c00000{bottom:201.810000px;}
.y2a3_c00000{bottom:201.990000px;}
.y98e_c00000{bottom:202.170000px;}
.yab2_c00000{bottom:202.185000px;}
.y21_c00000{bottom:202.338720px;}
.y11f_c00000{bottom:202.710000px;}
.y2d7_c00000{bottom:202.890000px;}
.yd2a_c00000{bottom:203.070000px;}
.yd2_c00000{bottom:203.250000px;}
.y72b_c00000{bottom:203.430000px;}
.y10dc_c00000{bottom:203.790000px;}
.yea2_c00000{bottom:203.805000px;}
.y92d_c00000{bottom:203.970000px;}
.yfaf_c00000{bottom:204.150000px;}
.y36c_c00000{bottom:204.330000px;}
.y40b_c00000{bottom:204.510000px;}
.y32d_c00000{bottom:204.690000px;}
.yf6a_c00000{bottom:204.705000px;}
.y870_c00000{bottom:204.870000px;}
.y8af_c00000{bottom:205.230000px;}
.yf6d_c00000{bottom:205.245000px;}
.yab4_c00000{bottom:205.410000px;}
.y161_c00000{bottom:205.590000px;}
.y11f4_c00000{bottom:205.770000px;}
.y828_c00000{bottom:205.950000px;}
.y282_c00000{bottom:206.130000px;}
.y651_c00000{bottom:206.310000px;}
.y9e0_c00000{bottom:206.490000px;}
.yc9b_c00000{bottom:206.670000px;}
.y52a_c00000{bottom:206.850000px;}
.ye38_c00000{bottom:207.030000px;}
.y1113_c00000{bottom:207.045000px;}
.y98d_c00000{bottom:207.390000px;}
.y966_c00000{bottom:207.570000px;}
.y1339_c00000{bottom:207.585000px;}
.y9ce_c00000{bottom:207.750000px;}
.yd19_c00000{bottom:207.930000px;}
.y133e_c00000{bottom:208.110000px;}
.y437_c00000{bottom:208.290000px;}
.y41e_c00000{bottom:208.470000px;}
.yf3d_c00000{bottom:208.650000px;}
.yf35_c00000{bottom:208.830000px;}
.y1406_c00000{bottom:208.845000px;}
.yf7e_c00000{bottom:209.190000px;}
.y48b_c00000{bottom:209.370000px;}
.y939_c00000{bottom:209.550000px;}
.ybf4_c00000{bottom:209.910000px;}
.ye29_c00000{bottom:210.090000px;}
.ya8f_c00000{bottom:210.270000px;}
.yf4_c00000{bottom:210.450000px;}
.y9f9_c00000{bottom:210.630000px;}
.y7c1_c00000{bottom:210.810000px;}
.yba7_c00000{bottom:210.990000px;}
.y468_c00000{bottom:211.170000px;}
.y11cb_c00000{bottom:211.185000px;}
.y918_c00000{bottom:211.350000px;}
.y58e_c00000{bottom:211.530000px;}
.y9ec_c00000{bottom:211.710000px;}
.yc5c_c00000{bottom:211.890000px;}
.yce1_c00000{bottom:212.070000px;}
.y201_c00000{bottom:212.250000px;}
.y117e_c00000{bottom:212.430000px;}
.y5d8_c00000{bottom:212.610000px;}
.y129d_c00000{bottom:212.970000px;}
.ya30_c00000{bottom:213.150000px;}
.y741_c00000{bottom:213.510000px;}
.yc0e_c00000{bottom:213.690000px;}
.y12d6_c00000{bottom:213.870000px;}
.y8f3_c00000{bottom:214.050000px;}
.y976_c00000{bottom:214.230000px;}
.yad3_c00000{bottom:214.410000px;}
.y3c2_c00000{bottom:214.590000px;}
.y1006_c00000{bottom:214.770000px;}
.ye07_c00000{bottom:214.950000px;}
.y6f5_c00000{bottom:215.130000px;}
.y748_c00000{bottom:215.310000px;}
.y1d6_c00000{bottom:215.490000px;}
.yd1b_c00000{bottom:215.505000px;}
.y9d5_c00000{bottom:215.850000px;}
.y5ee_c00000{bottom:216.030000px;}
.y1b2_c00000{bottom:216.210000px;}
.y7d0_c00000{bottom:216.570000px;}
.y750_c00000{bottom:216.750000px;}
.y147_c00000{bottom:216.930000px;}
.y86_c00000{bottom:217.110000px;}
.yf16_c00000{bottom:217.290000px;}
.y838_c00000{bottom:217.470000px;}
.y108b_c00000{bottom:217.650000px;}
.y1044_c00000{bottom:217.830000px;}
.yf97_c00000{bottom:217.845000px;}
.yce2_c00000{bottom:218.010000px;}
.y18c_c00000{bottom:218.190000px;}
.y136a_c00000{bottom:218.205000px;}
.y217_c00000{bottom:218.370000px;}
.y248_c00000{bottom:218.550000px;}
.y160_c00000{bottom:218.730000px;}
.ye23_c00000{bottom:218.910000px;}
.y11ea_c00000{bottom:219.090000px;}
.ybb2_c00000{bottom:219.270000px;}
.y345_c00000{bottom:219.450000px;}
.yd7c_c00000{bottom:219.810000px;}
.y251_c00000{bottom:220.170000px;}
.y683_c00000{bottom:220.350000px;}
.yca8_c00000{bottom:220.530000px;}
.y54_c00000{bottom:220.710000px;}
.y7a3_c00000{bottom:220.890000px;}
.ye48_c00000{bottom:221.070000px;}
.y1119_c00000{bottom:221.250000px;}
.y20_c00000{bottom:221.415840px;}
.y116d_c00000{bottom:221.610000px;}
.y2c0_c00000{bottom:221.790000px;}
.y98c_c00000{bottom:221.970000px;}
.yb67_c00000{bottom:222.150000px;}
.y1196_c00000{bottom:222.330000px;}
.y12b3_c00000{bottom:222.510000px;}
.yf92_c00000{bottom:222.690000px;}
.y8ca_c00000{bottom:222.870000px;}
.y115d_c00000{bottom:223.050000px;}
.y80d_c00000{bottom:223.230000px;}
.y1423_c00000{bottom:223.410000px;}
.y3db_c00000{bottom:223.590000px;}
.y587_c00000{bottom:223.770000px;}
.y262_c00000{bottom:223.950000px;}
.ycc7_c00000{bottom:224.130000px;}
.y2a2_c00000{bottom:224.310000px;}
.y7d9_c00000{bottom:224.490000px;}
.y49d_c00000{bottom:224.670000px;}
.y11e_c00000{bottom:225.030000px;}
.yea7_c00000{bottom:225.210000px;}
.y40a_c00000{bottom:225.390000px;}
.y9ff_c00000{bottom:225.570000px;}
.y72a_c00000{bottom:225.750000px;}
.y11e1_c00000{bottom:225.930000px;}
.y6af_c00000{bottom:226.110000px;}
.y1144_c00000{bottom:226.125000px;}
.yfa5_c00000{bottom:226.290000px;}
.yfae_c00000{bottom:226.470000px;}
.y36b_c00000{bottom:226.650000px;}
.y32c_c00000{bottom:227.010000px;}
.y1285_c00000{bottom:227.190000px;}
.ycfe_c00000{bottom:227.370000px;}
.ye9a_c00000{bottom:227.550000px;}
.y11bf_c00000{bottom:227.730000px;}
.y92c_c00000{bottom:227.910000px;}
.ya80_c00000{bottom:228.090000px;}
.y281_c00000{bottom:228.270000px;}
.y1362_c00000{bottom:228.450000px;}
.y86f_c00000{bottom:228.630000px;}
.y650_c00000{bottom:228.810000px;}
.y861_c00000{bottom:228.825000px;}
.y61e_c00000{bottom:228.990000px;}
.y1084_c00000{bottom:229.005000px;}
.y529_c00000{bottom:229.170000px;}
.yabd_c00000{bottom:229.350000px;}
.yb33_c00000{bottom:229.530000px;}
.y827_c00000{bottom:229.710000px;}
.yc31_c00000{bottom:229.890000px;}
.yd18_c00000{bottom:230.070000px;}
.yeb1_c00000{bottom:230.430000px;}
.y38_c00000{bottom:230.610000px;}
.yebb_c00000{bottom:230.790000px;}
.yf3c_c00000{bottom:230.970000px;}
.yd11_c00000{bottom:231.150000px;}
.yed1_c00000{bottom:231.165000px;}
.y965_c00000{bottom:231.330000px;}
.y48a_c00000{bottom:231.690000px;}
.ye85_c00000{bottom:231.705000px;}
.y1369_c00000{bottom:231.870000px;}
.y4f9_c00000{bottom:232.410000px;}
.yf3_c00000{bottom:232.590000px;}
.y1355_c00000{bottom:232.605000px;}
.yd88_c00000{bottom:232.770000px;}
.y200_c00000{bottom:232.950000px;}
.y69a_c00000{bottom:233.130000px;}
.y5d7_c00000{bottom:233.310000px;}
.y467_c00000{bottom:233.490000px;}
.ydea_c00000{bottom:233.670000px;}
.y58d_c00000{bottom:233.850000px;}
.y53e_c00000{bottom:234.030000px;}
.ya60_c00000{bottom:234.210000px;}
.y9f8_c00000{bottom:234.390000px;}
.yfb6_c00000{bottom:234.570000px;}
.y7c0_c00000{bottom:234.750000px;}
.ydd6_c00000{bottom:234.930000px;}
.y126f_c00000{bottom:235.110000px;}
.y79c_c00000{bottom:235.290000px;}
.ya9f_c00000{bottom:235.470000px;}
.y85e_c00000{bottom:235.650000px;}
.y85_c00000{bottom:236.010000px;}
.y117d_c00000{bottom:236.190000px;}
.y1d4_c00000{bottom:236.370000px;}
.yec3_c00000{bottom:236.550000px;}
.yfd0_c00000{bottom:236.730000px;}
.y15f_c00000{bottom:236.910000px;}
.ye49_c00000{bottom:236.925000px;}
.y3c1_c00000{bottom:237.090000px;}
.yc0d_c00000{bottom:237.450000px;}
.y6cf_c00000{bottom:237.630000px;}
.y507_c00000{bottom:237.810000px;}
.y96f_c00000{bottom:237.990000px;}
.yd6b_c00000{bottom:238.170000px;}
.y387_c00000{bottom:238.350000px;}
.y115a_c00000{bottom:238.365000px;}
.yad2_c00000{bottom:238.530000px;}
.y952_c00000{bottom:238.545000px;}
.y2f7_c00000{bottom:238.710000px;}
.y216_c00000{bottom:239.070000px;}
.y146_c00000{bottom:239.250000px;}
.y603_c00000{bottom:239.430000px;}
.y53_c00000{bottom:239.610000px;}
.y105d_c00000{bottom:239.625000px;}
.y111c_c00000{bottom:239.790000px;}
.y1043_c00000{bottom:239.970000px;}
.yef8_c00000{bottom:240.150000px;}
.y1f_c00000{bottom:240.310800px;}
.y7cf_c00000{bottom:240.330000px;}
.y18b_c00000{bottom:240.510000px;}
.ye65_c00000{bottom:240.690000px;}
.ycd6_c00000{bottom:240.705000px;}
.y30e_c00000{bottom:240.870000px;}
.y837_c00000{bottom:241.230000px;}
.y123b_c00000{bottom:241.410000px;}
.y1d5_c00000{bottom:241.590000px;}
.y4db_c00000{bottom:242.130000px;}
.y114f_c00000{bottom:242.310000px;}
.y62c_c00000{bottom:242.490000px;}
.ya7_c00000{bottom:242.670000px;}
.y140b_c00000{bottom:242.685000px;}
.y682_c00000{bottom:242.850000px;}
.y506_c00000{bottom:243.030000px;}
.ybb1_c00000{bottom:243.210000px;}
.y344_c00000{bottom:243.390000px;}
.y1381_c00000{bottom:243.765000px;}
.y8ef_c00000{bottom:243.930000px;}
.y2bf_c00000{bottom:244.110000px;}
.y4c4_c00000{bottom:244.290000px;}
.yf63_c00000{bottom:244.470000px;}
.y3ec_c00000{bottom:244.650000px;}
.yc80_c00000{bottom:244.830000px;}
.yf91_c00000{bottom:245.010000px;}
.y116b_c00000{bottom:245.190000px;}
.ye06_c00000{bottom:245.370000px;}
.yb89_c00000{bottom:245.550000px;}
.y1422_c00000{bottom:245.730000px;}
.y3da_c00000{bottom:245.910000px;}
.y586_c00000{bottom:246.090000px;}
.ydbc_c00000{bottom:246.270000px;}
.ye79_c00000{bottom:246.450000px;}
.y8d7_c00000{bottom:246.630000px;}
.y2a1_c00000{bottom:246.810000px;}
.y80c_c00000{bottom:246.990000px;}
.y106f_c00000{bottom:247.170000px;}
.y11dd_c00000{bottom:247.185000px;}
.y856_c00000{bottom:247.350000px;}
.y11d_c00000{bottom:247.530000px;}
.ya4a_c00000{bottom:247.710000px;}
.y729_c00000{bottom:248.070000px;}
.y11ec_c00000{bottom:248.250000px;}
.yaeb_c00000{bottom:248.430000px;}
.yb55_c00000{bottom:248.610000px;}
.yfa4_c00000{bottom:248.790000px;}
.y36a_c00000{bottom:248.970000px;}
.yb98_c00000{bottom:249.150000px;}
.y32a_c00000{bottom:249.330000px;}
.y61d_c00000{bottom:249.690000px;}
.ye99_c00000{bottom:249.870000px;}
.y11be_c00000{bottom:250.050000px;}
.y11f3_c00000{bottom:250.410000px;}
.y280_c00000{bottom:250.770000px;}
.y78a_c00000{bottom:250.950000px;}
.y116c_c00000{bottom:251.130000px;}
.y64f_c00000{bottom:251.310000px;}
.y528_c00000{bottom:251.490000px;}
.ye37_c00000{bottom:251.670000px;}
.ya7f_c00000{bottom:251.850000px;}
.ya2f_c00000{bottom:252.030000px;}
.y23a_c00000{bottom:252.210000px;}
.y9c2_c00000{bottom:252.390000px;}
.yb5e_c00000{bottom:252.570000px;}
.y8ae_c00000{bottom:252.750000px;}
.yeba_c00000{bottom:252.930000px;}
.y41d_c00000{bottom:253.110000px;}
.yabc_c00000{bottom:253.290000px;}
.y826_c00000{bottom:253.470000px;}
.y1ff_c00000{bottom:253.650000px;}
.y5d6_c00000{bottom:254.010000px;}
.y9af_c00000{bottom:254.370000px;}
.y4f8_c00000{bottom:254.550000px;}
.yc6f_c00000{bottom:254.910000px;}
.y15e_c00000{bottom:255.090000px;}
.y32b_c00000{bottom:255.270000px;}
.y9cd_c00000{bottom:255.450000px;}
.y699_c00000{bottom:255.630000px;}
.y466_c00000{bottom:255.810000px;}
.y1212_c00000{bottom:255.825000px;}
.yde9_c00000{bottom:255.990000px;}
.y58c_c00000{bottom:256.170000px;}
.y53d_c00000{bottom:256.350000px;}
.yc5a_c00000{bottom:256.530000px;}
.y4da_c00000{bottom:256.710000px;}
.y537_c00000{bottom:256.890000px;}
.y1d3_c00000{bottom:257.070000px;}
.y56d_c00000{bottom:257.085000px;}
.y10a5_c00000{bottom:257.250000px;}
.ydd5_c00000{bottom:257.430000px;}
.y1b1_c00000{bottom:257.610000px;}
.y131c_c00000{bottom:257.625000px;}
.ya8e_c00000{bottom:257.790000px;}
.ya5f_c00000{bottom:257.970000px;}
.yb9b_c00000{bottom:258.150000px;}
.y740_c00000{bottom:258.330000px;}
.y4c3_c00000{bottom:258.510000px;}
.y52_c00000{bottom:258.690000px;}
.yec2_c00000{bottom:258.870000px;}
.y2d6_c00000{bottom:259.050000px;}
.yfcf_c00000{bottom:259.230000px;}
.y1e_c00000{bottom:259.387920px;}
.y3c0_c00000{bottom:259.410000px;}
.y215_c00000{bottom:259.770000px;}
.y247_c00000{bottom:259.950000px;}
.y117c_c00000{bottom:260.130000px;}
.y15d_c00000{bottom:260.310000px;}
.y10db_c00000{bottom:260.490000px;}
.y5ed_c00000{bottom:260.670000px;}
.ydad_c00000{bottom:260.850000px;}
.y2f6_c00000{bottom:261.030000px;}
.yfc0_c00000{bottom:261.210000px;}
.y1060_c00000{bottom:261.225000px;}
.y720_c00000{bottom:261.390000px;}
.y145_c00000{bottom:261.570000px;}
.y7ce_c00000{bottom:261.750000px;}
.yf15_c00000{bottom:261.930000px;}
.y536_c00000{bottom:262.110000px;}
.y1042_c00000{bottom:262.290000px;}
.y930_c00000{bottom:262.485000px;}
.ye45_c00000{bottom:262.650000px;}
.y18a_c00000{bottom:262.830000px;}
.ye64_c00000{bottom:263.010000px;}
.y30d_c00000{bottom:263.190000px;}
.y9d4_c00000{bottom:263.370000px;}
.yecf_c00000{bottom:263.550000px;}
.y11e9_c00000{bottom:263.730000px;}
.y10f2_c00000{bottom:263.910000px;}
.y908_c00000{bottom:264.270000px;}
.yac7_c00000{bottom:264.450000px;}
.y547_c00000{bottom:264.990000px;}
.y836_c00000{bottom:265.170000px;}
.y681_c00000{bottom:265.350000px;}
.y11e4_c00000{bottom:265.530000px;}
.y126b_c00000{bottom:265.545000px;}
.y1390_c00000{bottom:265.725000px;}
.yb13_c00000{bottom:265.890000px;}
.y489_c00000{bottom:266.070000px;}
.y2be_c00000{bottom:266.430000px;}
.ycd3_c00000{bottom:266.445000px;}
.y92b_c00000{bottom:266.610000px;}
.y105a_c00000{bottom:266.790000px;}
.ybbd_c00000{bottom:266.805000px;}
.yf2_c00000{bottom:266.970000px;}
.y142e_c00000{bottom:266.985000px;}
.y343_c00000{bottom:267.150000px;}
.y721_c00000{bottom:267.330000px;}
.y6ae_c00000{bottom:267.510000px;}
.ydf9_c00000{bottom:267.525000px;}
.y8e7_c00000{bottom:267.870000px;}
.ya39_c00000{bottom:268.050000px;}
.y57d_c00000{bottom:268.230000px;}
.yb75_c00000{bottom:268.245000px;}
.y3d9_c00000{bottom:268.410000px;}
.y585_c00000{bottom:268.590000px;}
.y2a0_c00000{bottom:269.130000px;}
.yb88_c00000{bottom:269.310000px;}
.y11c_c00000{bottom:269.670000px;}
.yb66_c00000{bottom:269.850000px;}
.y130c_c00000{bottom:270.030000px;}
.y1012_c00000{bottom:270.210000px;}
.y61c_c00000{bottom:270.390000px;}
.yf4e_c00000{bottom:270.570000px;}
.y80b_c00000{bottom:270.750000px;}
.yfa3_c00000{bottom:271.110000px;}
.y892_c00000{bottom:271.290000px;}
.ya49_c00000{bottom:271.470000px;}
.y261_c00000{bottom:271.650000px;}
.yd1_c00000{bottom:271.830000px;}
.ycfd_c00000{bottom:272.010000px;}
.y747_c00000{bottom:272.190000px;}
.yb54_c00000{bottom:272.370000px;}
.yf5a_c00000{bottom:272.385000px;}
.y13b0_c00000{bottom:272.550000px;}
.ya0f_c00000{bottom:272.730000px;}
.y238_c00000{bottom:272.910000px;}
.y84_c00000{bottom:273.090000px;}
.ye84_c00000{bottom:273.105000px;}
.y3a2_c00000{bottom:273.270000px;}
.yf58_c00000{bottom:273.465000px;}
.y602_c00000{bottom:273.630000px;}
.y527_c00000{bottom:273.810000px;}
.ye36_c00000{bottom:273.990000px;}
.yfbf_c00000{bottom:274.170000px;}
.y1fe_c00000{bottom:274.350000px;}
.y1317_c00000{bottom:274.365000px;}
.yf39_c00000{bottom:274.545000px;}
.y5d5_c00000{bottom:274.710000px;}
.y1079_c00000{bottom:274.890000px;}
.y44a_c00000{bottom:275.250000px;}
.y41c_c00000{bottom:275.430000px;}
.ya7e_c00000{bottom:275.610000px;}
.ye22_c00000{bottom:275.790000px;}
.y1118_c00000{bottom:275.970000px;}
.y86e_c00000{bottom:276.150000px;}
.y535_c00000{bottom:276.690000px;}
.y4f7_c00000{bottom:276.870000px;}
.y49c_c00000{bottom:277.050000px;}
.y825_c00000{bottom:277.230000px;}
.yf04_c00000{bottom:277.410000px;}
.y1d2_c00000{bottom:277.590000px;}
.y465_c00000{bottom:278.130000px;}
.y1347_c00000{bottom:278.145000px;}
.y1d_c00000{bottom:278.282880px;}
.y1b0_c00000{bottom:278.310000px;}
.y58b_c00000{bottom:278.490000px;}
.y53c_c00000{bottom:278.670000px;}
.y131a_c00000{bottom:278.685000px;}
.y239_c00000{bottom:278.850000px;}
.ycea_c00000{bottom:279.030000px;}
.y9cc_c00000{bottom:279.210000px;}
.yb95_c00000{bottom:279.390000px;}
.ydd4_c00000{bottom:279.570000px;}
.yf1b_c00000{bottom:279.585000px;}
.y10a4_c00000{bottom:279.750000px;}
.ycb8_c00000{bottom:280.110000px;}
.y214_c00000{bottom:280.470000px;}
.y227_c00000{bottom:280.650000px;}
.y13dd_c00000{bottom:280.830000px;}
.y2d5_c00000{bottom:281.190000px;}
.ybf3_c00000{bottom:281.370000px;}
.yfce_c00000{bottom:281.595000px;}
.ya5e_c00000{bottom:281.775000px;}
.y409_c00000{bottom:281.955000px;}
.y37_c00000{bottom:282.135000px;}
.y6ce_c00000{bottom:282.315000px;}
.y728_c00000{bottom:282.675000px;}
.y917_c00000{bottom:282.855000px;}
.y4d9_c00000{bottom:283.035000px;}
.y9eb_c00000{bottom:283.215000px;}
.y2f5_c00000{bottom:283.395000px;}
.y71f_c00000{bottom:283.575000px;}
.y74f_c00000{bottom:283.755000px;}
.y144_c00000{bottom:283.935000px;}
.y7cd_c00000{bottom:284.115000px;}
.yf14_c00000{bottom:284.295000px;}
.y129c_c00000{bottom:284.475000px;}
.y9d6_c00000{bottom:284.640000px;}
.y108a_c00000{bottom:284.655000px;}
.y1041_c00000{bottom:284.835000px;}
.y11d3_c00000{bottom:285.000000px;}
.ye55_c00000{bottom:285.015000px;}
.y9df_c00000{bottom:285.195000px;}
.y8c9_c00000{bottom:285.375000px;}
.y30c_c00000{bottom:285.555000px;}
.y1139_c00000{bottom:285.915000px;}
.y855_c00000{bottom:286.095000px;}
.y10f1_c00000{bottom:286.275000px;}
.yf33_c00000{bottom:287.160000px;}
.y505_c00000{bottom:287.175000px;}
.y111b_c00000{bottom:287.355000px;}
.y436_c00000{bottom:287.535000px;}
.yca7_c00000{bottom:287.715000px;}
.y680_c00000{bottom:287.895000px;}
.y907_c00000{bottom:288.075000px;}
.y488_c00000{bottom:288.255000px;}
.y1273_c00000{bottom:288.780000px;}
.y1277_c00000{bottom:288.960000px;}
.y2bd_c00000{bottom:288.975000px;}
.y835_c00000{bottom:289.155000px;}
.yc7f_c00000{bottom:289.335000px;}
.ye4a_c00000{bottom:289.515000px;}
.y3eb_c00000{bottom:289.695000px;}
.yf90_c00000{bottom:289.875000px;}
.y774_c00000{bottom:290.235000px;}
.y12fe_c00000{bottom:290.415000px;}
.y57c_c00000{bottom:290.595000px;}
.y3d8_c00000{bottom:290.775000px;}
.ybd5_c00000{bottom:290.940000px;}
.y342_c00000{bottom:290.955000px;}
.y61b_c00000{bottom:291.135000px;}
.yb38_c00000{bottom:291.315000px;}
.y29f_c00000{bottom:291.495000px;}
.y3a1_c00000{bottom:291.675000px;}
.ya38_c00000{bottom:291.855000px;}
.ybce_c00000{bottom:292.035000px;}
.y11b_c00000{bottom:292.215000px;}
.yfbe_c00000{bottom:292.575000px;}
.yb5f_c00000{bottom:292.920000px;}
.yf4d_c00000{bottom:292.935000px;}
.yaf7_c00000{bottom:293.115000px;}
.yb87_c00000{bottom:293.295000px;}
.y1082_c00000{bottom:293.460000px;}
.yb09_c00000{bottom:293.475000px;}
.y237_c00000{bottom:293.655000px;}
.y3bf_c00000{bottom:293.835000px;}
.y1240_c00000{bottom:294.000000px;}
.y260_c00000{bottom:294.015000px;}
.yd0_c00000{bottom:294.195000px;}
.ycfc_c00000{bottom:294.375000px;}
.y80a_c00000{bottom:294.555000px;}
.y83_c00000{bottom:294.735000px;}
.y10c2_c00000{bottom:295.080000px;}
.y1fd_c00000{bottom:295.095000px;}
.y746_c00000{bottom:295.275000px;}
.y5d4_c00000{bottom:295.455000px;}
.y27f_c00000{bottom:295.635000px;}
.y1117_c00000{bottom:295.815000px;}
.yd91_c00000{bottom:295.995000px;}
.y1399_c00000{bottom:296.160000px;}
.y526_c00000{bottom:296.175000px;}
.y64e_c00000{bottom:296.355000px;}
.ya0e_c00000{bottom:296.535000px;}
.y51_c00000{bottom:296.715000px;}
.y9f7_c00000{bottom:296.895000px;}
.yfe2_c00000{bottom:297.060000px;}
.yc30_c00000{bottom:297.075000px;}
.y1c_c00000{bottom:297.177840px;}
.y189_c00000{bottom:297.435000px;}
.yeb0_c00000{bottom:297.615000px;}
.y41b_c00000{bottom:297.795000px;}
.yd10_c00000{bottom:297.975000px;}
.y10b8_c00000{bottom:298.155000px;}
.y1d1_c00000{bottom:298.335000px;}
.y789_c00000{bottom:298.515000px;}
.y1284_c00000{bottom:298.695000px;}
.y13f5_c00000{bottom:298.860000px;}
.yf74_c00000{bottom:299.055000px;}
.y4f6_c00000{bottom:299.235000px;}
.y665_c00000{bottom:299.415000px;}
.y56a_c00000{bottom:299.595000px;}
.yd59_c00000{bottom:299.775000px;}
.y86d_c00000{bottom:299.955000px;}
.yc0c_c00000{bottom:300.135000px;}
.y12b2_c00000{bottom:300.315000px;}
.y8ad_c00000{bottom:300.495000px;}
.y698_c00000{bottom:300.675000px;}
.y534_c00000{bottom:300.855000px;}
.y6fc_c00000{bottom:301.035000px;}
.y213_c00000{bottom:301.215000px;}
.yf1_c00000{bottom:301.395000px;}
.yfb5_c00000{bottom:301.575000px;}
.ye16_c00000{bottom:301.755000px;}
.y137c_c00000{bottom:301.935000px;}
.y10ae_c00000{bottom:302.100000px;}
.y9ae_c00000{bottom:302.115000px;}
.ycb6_c00000{bottom:302.475000px;}
.y5b7_c00000{bottom:302.655000px;}
.yabb_c00000{bottom:302.835000px;}
.ye6d_c00000{bottom:303.000000px;}
.y4c2_c00000{bottom:303.015000px;}
.yb94_c00000{bottom:303.195000px;}
.y2d4_c00000{bottom:303.555000px;}
.yec1_c00000{bottom:303.735000px;}
.ya1d_c00000{bottom:303.915000px;}
.y12e1_c00000{bottom:304.080000px;}
.y15c_c00000{bottom:304.095000px;}
.y1142_c00000{bottom:304.260000px;}
.y408_c00000{bottom:304.275000px;}
.y6f4_c00000{bottom:304.455000px;}
.y62b_c00000{bottom:304.635000px;}
.y1255_c00000{bottom:304.995000px;}
.yd6a_c00000{bottom:305.175000px;}
.y666_c00000{bottom:305.355000px;}
.y369_c00000{bottom:305.535000px;}
.y2f4_c00000{bottom:305.715000px;}
.y71e_c00000{bottom:305.895000px;}
.y7bf_c00000{bottom:306.075000px;}
.y143_c00000{bottom:306.255000px;}
.y916_c00000{bottom:306.615000px;}
.yf13_c00000{bottom:306.795000px;}
.y4d8_c00000{bottom:306.975000px;}
.y9ea_c00000{bottom:307.155000px;}
.ye54_c00000{bottom:307.335000px;}
.ye63_c00000{bottom:307.695000px;}
.y30b_c00000{bottom:307.875000px;}
.y601_c00000{bottom:308.055000px;}
.ycb7_c00000{bottom:308.415000px;}
.y10f0_c00000{bottom:308.775000px;}
.y6ad_c00000{bottom:308.955000px;}
.y9de_c00000{bottom:309.135000px;}
.y8c8_c00000{bottom:309.315000px;}
.y504_c00000{bottom:309.495000px;}
.y435_c00000{bottom:309.675000px;}
.y3a0_c00000{bottom:309.855000px;}
.y854_c00000{bottom:310.035000px;}
.y11e3_c00000{bottom:310.215000px;}
.y67f_c00000{bottom:310.395000px;}
.y6cd_c00000{bottom:310.575000px;}
.y487_c00000{bottom:310.755000px;}
.yb53_c00000{bottom:311.115000px;}
.y386_c00000{bottom:311.295000px;}
.y130b_c00000{bottom:311.475000px;}
.y49a_c00000{bottom:311.655000px;}
.ya6_c00000{bottom:311.835000px;}
.y1353_c00000{bottom:312.015000px;}
.yf8f_c00000{bottom:312.195000px;}
.y584_c00000{bottom:312.375000px;}
.y464_c00000{bottom:312.735000px;}
.y57b_c00000{bottom:312.915000px;}
.y3d7_c00000{bottom:313.095000px;}
.y755_c00000{bottom:313.260000px;}
.ydbb_c00000{bottom:313.275000px;}
.y7e5_c00000{bottom:313.455000px;}
.y1054_c00000{bottom:313.620000px;}
.yb12_c00000{bottom:313.635000px;}
.yc44_c00000{bottom:313.815000px;}
.y773_c00000{bottom:313.995000px;}
.y11a_c00000{bottom:314.355000px;}
.ye83_c00000{bottom:314.520000px;}
.ya2e_c00000{bottom:314.535000px;}
.y341_c00000{bottom:314.715000px;}
.y1011_c00000{bottom:314.895000px;}
.y9c1_c00000{bottom:315.075000px;}
.y91e_c00000{bottom:315.255000px;}
.y8e6_c00000{bottom:315.435000px;}
.y50_c00000{bottom:315.615000px;}
.y1fc_c00000{bottom:315.795000px;}
.y5a9_c00000{bottom:315.975000px;}
.y3be_c00000{bottom:316.155000px;}
.y25f_c00000{bottom:316.335000px;}
.y82_c00000{bottom:316.515000px;}
.ycfb_c00000{bottom:316.695000px;}
.y49b_c00000{bottom:316.875000px;}
.yb86_c00000{bottom:317.055000px;}
.y1162_c00000{bottom:317.235000px;}
.y101d_c00000{bottom:317.400000px;}
.yb08_c00000{bottom:317.415000px;}
.y5ec_c00000{bottom:317.595000px;}
.y27e_c00000{bottom:317.775000px;}
.yd9f_c00000{bottom:317.955000px;}
.y8d6_c00000{bottom:318.135000px;}
.yd90_c00000{bottom:318.315000px;}
.y809_c00000{bottom:318.495000px;}
.y525_c00000{bottom:318.675000px;}
.y64d_c00000{bottom:318.855000px;}
.yeab_c00000{bottom:319.020000px;}
.y1d0_c00000{bottom:319.035000px;}
.ya48_c00000{bottom:319.215000px;}
.yc2f_c00000{bottom:319.395000px;}
.y188_c00000{bottom:319.575000px;}
.y1af_c00000{bottom:319.755000px;}
.yaea_c00000{bottom:319.935000px;}
.y41a_c00000{bottom:320.115000px;}
.ya0d_c00000{bottom:320.295000px;}
.yefa_c00000{bottom:320.460000px;}
.yd0f_c00000{bottom:320.475000px;}
.y9f6_c00000{bottom:320.655000px;}
.y124a_c00000{bottom:321.375000px;}
.y546_c00000{bottom:321.735000px;}
.y226_c00000{bottom:321.915000px;}
.y212_c00000{bottom:322.095000px;}
.y788_c00000{bottom:322.275000px;}
.yd4c_c00000{bottom:322.455000px;}
.y1433_c00000{bottom:322.800000px;}
.yf01_c00000{bottom:322.995000px;}
.y533_c00000{bottom:323.175000px;}
.y2bc_c00000{bottom:323.355000px;}
.ya7d_c00000{bottom:323.535000px;}
.y86c_c00000{bottom:323.715000px;}
.yc0b_c00000{bottom:323.895000px;}
.ybdd_c00000{bottom:324.075000px;}
.y8ac_c00000{bottom:324.255000px;}
.ya23_c00000{bottom:324.435000px;}
.yad1_c00000{bottom:324.795000px;}
.yd70_c00000{bottom:324.960000px;}
.y824_c00000{bottom:324.975000px;}
.y74e_c00000{bottom:325.155000px;}
.y62a_c00000{bottom:325.335000px;}
.y4c1_c00000{bottom:325.515000px;}
.y2d3_c00000{bottom:325.875000px;}
.yec0_c00000{bottom:326.055000px;}
.yfcd_c00000{bottom:326.235000px;}
.y15b_c00000{bottom:326.415000px;}
.y407_c00000{bottom:326.595000px;}
.y11b7_c00000{bottom:326.760000px;}
.y6f3_c00000{bottom:326.775000px;}
.y6cc_c00000{bottom:326.955000px;}
.yb93_c00000{bottom:327.135000px;}
.y1229_c00000{bottom:327.495000px;}
.y10da_c00000{bottom:327.675000px;}
.y368_c00000{bottom:327.855000px;}
.y12db_c00000{bottom:328.020000px;}
.y2f3_c00000{bottom:328.035000px;}
.yf55_c00000{bottom:328.215000px;}
.y71d_c00000{bottom:328.395000px;}
.yd6c_c00000{bottom:328.560000px;}
.y142_c00000{bottom:328.575000px;}
.y329_c00000{bottom:328.755000px;}
.ybf2_c00000{bottom:328.935000px;}
.y132e_c00000{bottom:329.115000px;}
.y1089_c00000{bottom:329.295000px;}
.y12dd_c00000{bottom:329.460000px;}
.ya5d_c00000{bottom:329.475000px;}
.y5d3_c00000{bottom:329.655000px;}
.y7be_c00000{bottom:330.015000px;}
.y29e_c00000{bottom:330.195000px;}
.y915_c00000{bottom:330.375000px;}
.y1246_c00000{bottom:330.555000px;}
.y4d7_c00000{bottom:330.735000px;}
.y9e9_c00000{bottom:330.915000px;}
.y10ef_c00000{bottom:331.095000px;}
.yefc_c00000{bottom:331.260000px;}
.y117b_c00000{bottom:331.455000px;}
.yc9a_c00000{bottom:331.815000px;}
.y449_c00000{bottom:331.995000px;}
.y434_c00000{bottom:332.175000px;}
.yca6_c00000{bottom:332.355000px;}
.y61a_c00000{bottom:332.535000px;}
.y1116_c00000{bottom:332.715000px;}
.y98b_c00000{bottom:332.895000px;}
.yf07_c00000{bottom:333.060000px;}
.y486_c00000{bottom:333.075000px;}
.y96e_c00000{bottom:333.255000px;}
.ya5_c00000{bottom:333.615000px;}
.y13ae_c00000{bottom:333.780000px;}
.y4f5_c00000{bottom:333.795000px;}
.yc7e_c00000{bottom:333.975000px;}
.y3e9_c00000{bottom:334.155000px;}
.y4f_c00000{bottom:334.515000px;}
.y463_c00000{bottom:334.875000px;}
.y236_c00000{bottom:335.055000px;}
.y57a_c00000{bottom:335.235000px;}
.y3d6_c00000{bottom:335.415000px;}
.y745_c00000{bottom:335.595000px;}
.yf0_c00000{bottom:335.775000px;}
.yfc3_c00000{bottom:335.955000px;}
.yc43_c00000{bottom:336.135000px;}
.yd3d_c00000{bottom:336.315000px;}
.y1fb_c00000{bottom:336.495000px;}
.y119_c00000{bottom:336.675000px;}
.y10aa_c00000{bottom:336.855000px;}
.y121e_c00000{bottom:337.020000px;}
.y5b6_c00000{bottom:337.035000px;}
.y1010_c00000{bottom:337.215000px;}
.y7a2_c00000{bottom:337.395000px;}
.yf4c_c00000{bottom:337.575000px;}
.y772_c00000{bottom:337.755000px;}
.y139e_c00000{bottom:337.935000px;}
.yfa2_c00000{bottom:338.115000px;}
.y81_c00000{bottom:338.295000px;}
.y3bd_c00000{bottom:338.475000px;}
.y25e_c00000{bottom:338.655000px;}
.y9c0_c00000{bottom:338.835000px;}
.yb37_c00000{bottom:339.015000px;}
.y8e5_c00000{bottom:339.195000px;}
.ya37_c00000{bottom:339.375000px;}
.y9d3_c00000{bottom:339.555000px;}
.y1cf_c00000{bottom:339.735000px;}
.yd21_c00000{bottom:339.915000px;}
.ybb9_c00000{bottom:340.080000px;}
.y3ea_c00000{bottom:340.095000px;}
.y27d_c00000{bottom:340.275000px;}
.yf8e_c00000{bottom:340.455000px;}
.y9ad_c00000{bottom:340.635000px;}
.y10ad_c00000{bottom:340.980000px;}
.ye35_c00000{bottom:340.995000px;}
.yea0_c00000{bottom:341.160000px;}
.y524_c00000{bottom:341.175000px;}
.y64c_c00000{bottom:341.355000px;}
.y964_c00000{bottom:341.535000px;}
.yc2e_c00000{bottom:341.715000px;}
.y8d5_c00000{bottom:341.895000px;}
.y808_c00000{bottom:342.255000px;}
.y36_c00000{bottom:342.435000px;}
.y225_c00000{bottom:342.615000px;}
.y211_c00000{bottom:342.795000px;}
.y187_c00000{bottom:342.975000px;}
.ya47_c00000{bottom:343.155000px;}
.yef7_c00000{bottom:343.335000px;}
.yae9_c00000{bottom:343.695000px;}
.y545_c00000{bottom:343.875000px;}
.y1272_c00000{bottom:344.055000px;}
.y664_c00000{bottom:344.235000px;}
.yf61_c00000{bottom:344.415000px;}
.yd4b_c00000{bottom:344.595000px;}
.ycc3_c00000{bottom:344.775000px;}
.yd62_c00000{bottom:345.120000px;}
.y2bb_c00000{bottom:345.495000px;}
.y697_c00000{bottom:345.675000px;}
.y55e_c00000{bottom:345.855000px;}
.yc59_c00000{bottom:346.035000px;}
.y7d5_c00000{bottom:346.200000px;}
.y39f_c00000{bottom:346.215000px;}
.ye15_c00000{bottom:346.395000px;}
.yd5e_c00000{bottom:346.560000px;}
.ydd3_c00000{bottom:346.755000px;}
.y129b_c00000{bottom:346.935000px;}
.ya7c_c00000{bottom:347.115000px;}
.ybb6_c00000{bottom:347.280000px;}
.ycb5_c00000{bottom:347.295000px;}
.y406_c00000{bottom:347.475000px;}
.y73f_c00000{bottom:347.655000px;}
.y4c0_c00000{bottom:347.835000px;}
.y8ab_c00000{bottom:348.015000px;}
.y1202_c00000{bottom:348.195000px;}
.y1315_c00000{bottom:348.375000px;}
.y583_c00000{bottom:348.555000px;}
.y15a_c00000{bottom:348.735000px;}
.yb57_c00000{bottom:348.900000px;}
.y6e6_c00000{bottom:348.915000px;}
.y553_c00000{bottom:349.095000px;}
.y6cb_c00000{bottom:349.275000px;}
.ye78_c00000{bottom:349.455000px;}
.y10d9_c00000{bottom:349.815000px;}
.y1228_c00000{bottom:349.995000px;}
.y12c6_c00000{bottom:350.175000px;}
.y12a0_c00000{bottom:350.340000px;}
.y2f2_c00000{bottom:350.355000px;}
.y5d2_c00000{bottom:350.535000px;}
.y71c_c00000{bottom:350.715000px;}
.y141_c00000{bottom:350.895000px;}
.y55f_c00000{bottom:351.075000px;}
.y727_c00000{bottom:351.255000px;}
.y39e_c00000{bottom:351.435000px;}
.ya1c_c00000{bottom:351.615000px;}
.y1040_c00000{bottom:351.795000px;}
.ya9e_c00000{bottom:351.975000px;}
.ye62_c00000{bottom:352.335000px;}
.y30a_c00000{bottom:352.515000px;}
.ybf1_c00000{bottom:352.875000px;}
.y11e8_c00000{bottom:353.055000px;}
.ya5c_c00000{bottom:353.235000px;}
.yb9a_c00000{bottom:353.415000px;}
.y4e_c00000{bottom:353.595000px;}
.y7bd_c00000{bottom:353.775000px;}
.y67e_c00000{bottom:353.955000px;}
.yc99_c00000{bottom:354.135000px;}
.y448_c00000{bottom:354.315000px;}
.y433_c00000{bottom:354.495000px;}
.y9e8_c00000{bottom:354.675000px;}
.yee8_c00000{bottom:354.855000px;}
.y1389_c00000{bottom:355.200000px;}
.y485_c00000{bottom:355.395000px;}
.ya4_c00000{bottom:355.575000px;}
.y235_c00000{bottom:355.755000px;}
.ye82_c00000{bottom:355.920000px;}
.y385_c00000{bottom:355.935000px;}
.yc7d_c00000{bottom:356.295000px;}
.ydf8_c00000{bottom:356.475000px;}
.yf44_c00000{bottom:356.640000px;}
.y3e8_c00000{bottom:356.655000px;}
.y1407_c00000{bottom:356.820000px;}
.y8c7_c00000{bottom:356.835000px;}
.y96d_c00000{bottom:357.015000px;}
.y1fa_c00000{bottom:357.195000px;}
.yf00_c00000{bottom:357.375000px;}
.y579_c00000{bottom:357.555000px;}
.y58a_c00000{bottom:357.735000px;}
.ydba_c00000{bottom:357.915000px;}
.y121b_c00000{bottom:358.095000px;}
.yfb4_c00000{bottom:358.275000px;}
.yc42_c00000{bottom:358.635000px;}
.y7d7_c00000{bottom:358.800000px;}
.yb52_c00000{bottom:358.815000px;}
.y118_c00000{bottom:359.175000px;}
.y12da_c00000{bottom:359.355000px;}
.y1b_c00000{bottom:359.460000px;}
.y906_c00000{bottom:359.535000px;}
.yac6_c00000{bottom:359.715000px;}
.yf4b_c00000{bottom:359.895000px;}
.y80_c00000{bottom:360.075000px;}
.y2d2_c00000{bottom:360.255000px;}
.y1ce_c00000{bottom:360.435000px;}
.y5a8_c00000{bottom:360.615000px;}
.y3bc_c00000{bottom:360.795000px;}
.y1221_c00000{bottom:360.975000px;}
.y1ae_c00000{bottom:361.155000px;}
.ycfa_c00000{bottom:361.335000px;}
.y771_c00000{bottom:361.515000px;}
.yb85_c00000{bottom:361.695000px;}
.y1209_c00000{bottom:361.875000px;}
.yd20_c00000{bottom:362.055000px;}
.ya2d_c00000{bottom:362.235000px;}
.y340_c00000{bottom:362.415000px;}
.y27c_c00000{bottom:362.595000px;}
.yb36_c00000{bottom:362.775000px;}
.y1219_c00000{bottom:362.940000px;}
.ycf_c00000{bottom:362.955000px;}
.y8e4_c00000{bottom:363.135000px;}
.y210_c00000{bottom:363.315000px;}
.y246_c00000{bottom:363.495000px;}
.y64b_c00000{bottom:363.855000px;}
.yc2d_c00000{bottom:364.035000px;}
.y7cc_c00000{bottom:364.215000px;}
.y9ac_c00000{bottom:364.395000px;}
.y39d_c00000{bottom:364.575000px;}
.y29d_c00000{bottom:364.755000px;}
.yb07_c00000{bottom:364.935000px;}
.yb65_c00000{bottom:365.115000px;}
.y963_c00000{bottom:365.295000px;}
.ya03_c00000{bottom:365.655000px;}
.y1146_c00000{bottom:365.835000px;}
.y7f6_c00000{bottom:366.015000px;}
.y544_c00000{bottom:366.195000px;}
.y891_c00000{bottom:366.555000px;}
.y663_c00000{bottom:366.735000px;}
.ycc2_c00000{bottom:366.915000px;}
.y7e4_c00000{bottom:367.095000px;}
.y629_c00000{bottom:367.275000px;}
.yae8_c00000{bottom:367.455000px;}
.yde8_c00000{bottom:367.815000px;}
.y186_c00000{bottom:367.995000px;}
.y1150_c00000{bottom:368.160000px;}
.y55d_c00000{bottom:368.175000px;}
.y367_c00000{bottom:368.355000px;}
.yd58_c00000{bottom:368.535000px;}
.ye14_c00000{bottom:368.715000px;}
.ydd2_c00000{bottom:368.895000px;}
.y10a3_c00000{bottom:369.075000px;}
.ybcd_c00000{bottom:369.615000px;}
.y3d5_c00000{bottom:369.795000px;}
.y73e_c00000{bottom:369.975000px;}
.yef_c00000{bottom:370.155000px;}
.y1283_c00000{bottom:370.335000px;}
.y1201_c00000{bottom:370.515000px;}
.ya7b_c00000{bottom:370.875000px;}
.y159_c00000{bottom:371.055000px;}
.y5d1_c00000{bottom:371.235000px;}
.yfc6_c00000{bottom:371.400000px;}
.y5b5_c00000{bottom:371.415000px;}
.y6ca_c00000{bottom:371.595000px;}
.ybdc_c00000{bottom:371.775000px;}
.y8aa_c00000{bottom:371.955000px;}
.y10d8_c00000{bottom:372.135000px;}
.yad0_c00000{bottom:372.315000px;}
.y4d_c00000{bottom:372.495000px;}
.y2f1_c00000{bottom:372.675000px;}
.y71b_c00000{bottom:373.035000px;}
.y25c_c00000{bottom:373.215000px;}
.y135e_c00000{bottom:373.380000px;}
.yf12_c00000{bottom:373.575000px;}
.y133d_c00000{bottom:373.755000px;}
.yd69_c00000{bottom:373.935000px;}
.y12c5_c00000{bottom:374.115000px;}
.y619_c00000{bottom:374.295000px;}
.y98a_c00000{bottom:374.475000px;}
.yaf6_c00000{bottom:374.655000px;}
.y309_c00000{bottom:374.835000px;}
.y125e_c00000{bottom:375.195000px;}
.ya1b_c00000{bottom:375.375000px;}
.y522_c00000{bottom:375.555000px;}
.y1052_c00000{bottom:375.720000px;}
.ya9d_c00000{bottom:375.735000px;}
.y11eb_c00000{bottom:375.900000px;}
.y7a1_c00000{bottom:376.095000px;}
.y67d_c00000{bottom:376.275000px;}
.yc98_c00000{bottom:376.455000px;}
.ybf0_c00000{bottom:376.635000px;}
.y432_c00000{bottom:376.815000px;}
.ya8d_c00000{bottom:376.995000px;}
.ya5b_c00000{bottom:377.175000px;}
.ya3_c00000{bottom:377.355000px;}
.y7bc_c00000{bottom:377.535000px;}
.y484_c00000{bottom:377.715000px;}
.ybad_c00000{bottom:377.895000px;}
.y732_c00000{bottom:378.060000px;}
.y914_c00000{bottom:378.075000px;}
.y384_c00000{bottom:378.255000px;}
.yc7c_c00000{bottom:378.615000px;}
.ydf7_c00000{bottom:378.795000px;}
.y3e7_c00000{bottom:378.975000px;}
.y25d_c00000{bottom:379.155000px;}
.y139d_c00000{bottom:379.335000px;}
.y462_c00000{bottom:379.515000px;}
.yb84_c00000{bottom:379.695000px;}
.y578_c00000{bottom:379.875000px;}
.yedb_c00000{bottom:380.055000px;}
.ydb9_c00000{bottom:380.235000px;}
.y9dd_c00000{bottom:380.415000px;}
.y5eb_c00000{bottom:380.595000px;}
.y523_c00000{bottom:380.775000px;}
.yc41_c00000{bottom:380.955000px;}
.y1cd_c00000{bottom:381.135000px;}
.yf53_c00000{bottom:381.300000px;}
.y853_c00000{bottom:381.315000px;}
.y117_c00000{bottom:381.495000px;}
.y129a_c00000{bottom:381.675000px;}
.y1ad_c00000{bottom:381.855000px;}
.y7f_c00000{bottom:382.035000px;}
.y70e_c00000{bottom:382.215000px;}
.y2d1_c00000{bottom:382.395000px;}
.yb51_c00000{bottom:382.575000px;}
.y39c_c00000{bottom:382.755000px;}
.y5a7_c00000{bottom:382.935000px;}
.y3bb_c00000{bottom:383.115000px;}
.y905_c00000{bottom:383.295000px;}
.y552_c00000{bottom:383.475000px;}
.yedf_c00000{bottom:383.640000px;}
.ye77_c00000{bottom:383.835000px;}
.y20f_c00000{bottom:384.015000px;}
.y245_c00000{bottom:384.195000px;}
.y834_c00000{bottom:384.375000px;}
.y366_c00000{bottom:384.555000px;}
.y7e3_c00000{bottom:384.915000px;}
.yce_c00000{bottom:385.095000px;}
.ycd2_c00000{bottom:385.275000px;}
.yb14_c00000{bottom:385.440000px;}
.y140_c00000{bottom:385.455000px;}
.y136e_c00000{bottom:385.635000px;}
.ye34_c00000{bottom:385.815000px;}
.y110c_c00000{bottom:385.995000px;}
.y33f_c00000{bottom:386.175000px;}
.y64a_c00000{bottom:386.355000px;}
.yb5d_c00000{bottom:386.535000px;}
.y8e3_c00000{bottom:386.895000px;}
.y419_c00000{bottom:387.075000px;}
.yd0e_c00000{bottom:387.255000px;}
.y1081_c00000{bottom:387.435000px;}
.ye74_c00000{bottom:387.615000px;}
.y35_c00000{bottom:388.155000px;}
.y9ab_c00000{bottom:388.335000px;}
.y543_c00000{bottom:388.515000px;}
.y447_c00000{bottom:388.695000px;}
.yb64_c00000{bottom:388.875000px;}
.yc6e_c00000{bottom:389.055000px;}
.y662_c00000{bottom:389.235000px;}
.yb92_c00000{bottom:389.415000px;}
.y628_c00000{bottom:389.595000px;}
.y1314_c00000{bottom:389.775000px;}
.y13ad_c00000{bottom:389.955000px;}
.yde7_c00000{bottom:390.135000px;}
.y74c_c00000{bottom:390.300000px;}
.y185_c00000{bottom:390.315000px;}
.y4f4_c00000{bottom:390.495000px;}
.y696_c00000{bottom:390.675000px;}
.y100b_c00000{bottom:390.840000px;}
.yce9_c00000{bottom:390.855000px;}
.y1217_c00000{bottom:391.020000px;}
.ydd1_c00000{bottom:391.215000px;}
.y125a_c00000{bottom:391.380000px;}
.y726_c00000{bottom:391.395000px;}
.y1218_c00000{bottom:391.560000px;}
.yeff_c00000{bottom:391.755000px;}
.y3d4_c00000{bottom:391.935000px;}
.y114c_c00000{bottom:392.115000px;}
.yee_c00000{bottom:392.295000px;}
.y4be_c00000{bottom:392.475000px;}
.y1215_c00000{bottom:392.820000px;}
.y1200_c00000{bottom:392.835000px;}
.yfcc_c00000{bottom:393.195000px;}
.y158_c00000{bottom:393.375000px;}
.y114e_c00000{bottom:393.555000px;}
.y6e5_c00000{bottom:393.735000px;}
.y6c9_c00000{bottom:393.915000px;}
.y11d1_c00000{bottom:394.095000px;}
.y130a_c00000{bottom:394.275000px;}
.yf19_c00000{bottom:394.440000px;}
.y133c_c00000{bottom:394.455000px;}
.ya7a_c00000{bottom:394.635000px;}
.y1352_c00000{bottom:394.815000px;}
.y618_c00000{bottom:394.995000px;}
.y2f0_c00000{bottom:395.175000px;}
.y25b_c00000{bottom:395.355000px;}
.y328_c00000{bottom:395.535000px;}
.y10de_c00000{bottom:395.700000px;}
.y8a9_c00000{bottom:395.715000px;}
.ycf9_c00000{bottom:395.895000px;}
.y1279_c00000{bottom:396.075000px;}
.yacf_c00000{bottom:396.255000px;}
.y823_c00000{bottom:396.435000px;}
.ye53_c00000{bottom:396.615000px;}
.y27b_c00000{bottom:396.975000px;}
.y1413_c00000{bottom:397.155000px;}
.ye81_c00000{bottom:397.320000px;}
.y308_c00000{bottom:397.335000px;}
.y521_c00000{bottom:397.695000px;}
.yb35_c00000{bottom:397.875000px;}
.yaba_c00000{bottom:398.055000px;}
.y989_c00000{bottom:398.235000px;}
.y12d8_c00000{bottom:398.400000px;}
.y4bf_c00000{bottom:398.415000px;}
.y104e_c00000{bottom:398.595000px;}
.y67c_c00000{bottom:398.775000px;}
.y503_c00000{bottom:398.955000px;}
.ya2_c00000{bottom:399.135000px;}
.yeaf_c00000{bottom:399.315000px;}
.y1a_c00000{bottom:399.424500px;}
.y234_c00000{bottom:399.495000px;}
.ya24_c00000{bottom:399.660000px;}
.y139c_c00000{bottom:399.855000px;}
.yeb2_c00000{bottom:400.020000px;}
.y483_c00000{bottom:400.035000px;}
.y1254_c00000{bottom:400.215000px;}
.yf73_c00000{bottom:400.395000px;}
.y499_c00000{bottom:400.575000px;}
.ya5a_c00000{bottom:400.755000px;}
.y39b_c00000{bottom:400.935000px;}
.y1402_c00000{bottom:401.115000px;}
.y3e6_c00000{bottom:401.295000px;}
.yf8d_c00000{bottom:401.475000px;}
.y1171_c00000{bottom:401.655000px;}
.y1cc_c00000{bottom:401.835000px;}
.y1245_c00000{bottom:402.015000px;}
.y4d6_c00000{bottom:402.195000px;}
.y53a_c00000{bottom:402.375000px;}
.y1ac_c00000{bottom:402.555000px;}
.yc9e_c00000{bottom:402.735000px;}
.yfb3_c00000{bottom:402.915000px;}
.yc40_c00000{bottom:403.275000px;}
.yb83_c00000{bottom:403.455000px;}
.y7e_c00000{bottom:403.815000px;}
.y405_c00000{bottom:403.995000px;}
.y744_c00000{bottom:404.175000px;}
.y70d_c00000{bottom:404.355000px;}
.y8c6_c00000{bottom:404.535000px;}
.yc9f_c00000{bottom:404.700000px;}
.y224_c00000{bottom:404.715000px;}
.y20e_c00000{bottom:404.895000px;}
.y852_c00000{bottom:405.075000px;}
.ybc5_c00000{bottom:405.255000px;}
.y551_c00000{bottom:405.615000px;}
.y5b4_c00000{bottom:405.795000px;}
.y6f2_c00000{bottom:405.975000px;}
.y39a_c00000{bottom:406.155000px;}
.yb50_c00000{bottom:406.335000px;}
.y13e5_c00000{bottom:406.515000px;}
.ya0c_c00000{bottom:406.695000px;}
.y365_c00000{bottom:406.875000px;}
.y904_c00000{bottom:407.055000px;}
.yd9e_c00000{bottom:407.235000px;}
.y13c4_c00000{bottom:407.415000px;}
.y13f_c00000{bottom:407.595000px;}
.yfbb_c00000{bottom:408.120000px;}
.y833_c00000{bottom:408.135000px;}
.y1007_c00000{bottom:408.300000px;}
.y53b_c00000{bottom:408.315000px;}
.ybcc_c00000{bottom:408.495000px;}
.y7e2_c00000{bottom:408.675000px;}
.y649_c00000{bottom:408.855000px;}
.yb1d_c00000{bottom:409.020000px;}
.y770_c00000{bottom:409.215000px;}
.y418_c00000{bottom:409.395000px;}
.y10b7_c00000{bottom:409.575000px;}
.yff9_c00000{bottom:409.755000px;}
.y33e_c00000{bottom:409.935000px;}
.yeea_c00000{bottom:410.100000px;}
.y86b_c00000{bottom:410.115000px;}
.yb5c_c00000{bottom:410.295000px;}
.y4c_c00000{bottom:410.475000px;}
.y8e2_c00000{bottom:410.655000px;}
.y446_c00000{bottom:410.835000px;}
.y1016_c00000{bottom:411.000000px;}
.y600_c00000{bottom:411.015000px;}
.ycd0_c00000{bottom:411.195000px;}
.yc6d_c00000{bottom:411.375000px;}
.y661_c00000{bottom:411.735000px;}
.y116a_c00000{bottom:411.915000px;}
.y627_c00000{bottom:412.095000px;}
.yf02_c00000{bottom:412.260000px;}
.y1161_c00000{bottom:412.275000px;}
.yde6_c00000{bottom:412.455000px;}
.y184_c00000{bottom:412.635000px;}
.y55c_c00000{bottom:412.815000px;}
.y962_c00000{bottom:412.995000px;}
.y695_c00000{bottom:413.175000px;}
.y1297_c00000{bottom:413.355000px;}
.y10a2_c00000{bottom:413.715000px;}
.y890_c00000{bottom:414.075000px;}
.ycb4_c00000{bottom:414.255000px;}
.ya46_c00000{bottom:414.435000px;}
.yed_c00000{bottom:414.615000px;}
.y4bd_c00000{bottom:414.795000px;}
.y1309_c00000{bottom:414.975000px;}
.yae7_c00000{bottom:415.155000px;}
.ybef_c00000{bottom:415.335000px;}
.yfcb_c00000{bottom:415.515000px;}
.y157_c00000{bottom:415.695000px;}
.y116_c00000{bottom:415.875000px;}
.y6e4_c00000{bottom:416.055000px;}
.y6c8_c00000{bottom:416.415000px;}
.y10e4_c00000{bottom:416.580000px;}
.y1249_c00000{bottom:416.595000px;}
.y135c_c00000{bottom:416.775000px;}
.y7f4_c00000{bottom:416.955000px;}
.y9e7_c00000{bottom:417.135000px;}
.y5a6_c00000{bottom:417.315000px;}
.yba8_c00000{bottom:417.480000px;}
.y2ef_c00000{bottom:417.495000px;}
.y25a_c00000{bottom:417.675000px;}
.y11e7_c00000{bottom:417.855000px;}
.y11d5_c00000{bottom:418.020000px;}
.ycf8_c00000{bottom:418.035000px;}
.yf11_c00000{bottom:418.395000px;}
.ya79_c00000{bottom:418.575000px;}
.y1088_c00000{bottom:418.755000px;}
.ye52_c00000{bottom:418.935000px;}
.y19_c00000{bottom:419.040000px;}
.y27a_c00000{bottom:419.115000px;}
.ybdb_c00000{bottom:419.295000px;}
.y8a8_c00000{bottom:419.475000px;}
.y307_c00000{bottom:419.655000px;}
.yb32_c00000{bottom:420.015000px;}
.y520_c00000{bottom:420.195000px;}
.y10ee_c00000{bottom:420.375000px;}
.y103f_c00000{bottom:420.555000px;}
.y399_c00000{bottom:420.735000px;}
.ya1_c00000{bottom:420.915000px;}
.yc97_c00000{bottom:421.095000px;}
.y29c_c00000{bottom:421.275000px;}
.y142a_c00000{bottom:421.440000px;}
.y431_c00000{bottom:421.455000px;}
.y725_c00000{bottom:421.635000px;}
.y3ba_c00000{bottom:421.815000px;}
.y988_c00000{bottom:421.995000px;}
.y5e9_c00000{bottom:422.520000px;}
.y1cb_c00000{bottom:422.535000px;}
.y7f5_c00000{bottom:422.895000px;}
.yb17_c00000{bottom:423.060000px;}
.y1ab_c00000{bottom:423.075000px;}
.yc7b_c00000{bottom:423.255000px;}
.y3e5_c00000{bottom:423.435000px;}
.yee7_c00000{bottom:423.615000px;}
.y1046_c00000{bottom:423.780000px;}
.y794_c00000{bottom:423.795000px;}
.y1253_c00000{bottom:423.975000px;}
.y461_c00000{bottom:424.155000px;}
.y11e2_c00000{bottom:424.500000px;}
.y539_c00000{bottom:424.515000px;}
.y2ba_c00000{bottom:424.695000px;}
.ya2c_c00000{bottom:424.875000px;}
.yc15_c00000{bottom:425.055000px;}
.y9bf_c00000{bottom:425.235000px;}
.y223_c00000{bottom:425.415000px;}
.y20d_c00000{bottom:425.595000px;}
.y7d_c00000{bottom:425.775000px;}
.y4d5_c00000{bottom:425.955000px;}
.yefe_c00000{bottom:426.135000px;}
.y404_c00000{bottom:426.315000px;}
.y3d3_c00000{bottom:426.495000px;}
.y70c_c00000{bottom:426.675000px;}
.y13dc_c00000{bottom:426.855000px;}
.y2d0_c00000{bottom:427.035000px;}
.yb82_c00000{bottom:427.215000px;}
.yfa1_c00000{bottom:427.395000px;}
.yebf_c00000{bottom:427.575000px;}
.y13df_c00000{bottom:427.755000px;}
.y550_c00000{bottom:427.935000px;}
.y1156_c00000{bottom:428.115000px;}
.y8c5_c00000{bottom:428.295000px;}
.y96c_c00000{bottom:428.475000px;}
.y807_c00000{bottom:428.655000px;}
.ye98_c00000{bottom:428.835000px;}
.y6f1_c00000{bottom:429.015000px;}
.y364_c00000{bottom:429.195000px;}
.y4b_c00000{bottom:429.555000px;}
.yd9d_c00000{bottom:429.735000px;}
.y13e_c00000{bottom:429.915000px;}
.y327_c00000{bottom:430.095000px;}
.y1023_c00000{bottom:430.260000px;}
.yb4f_c00000{bottom:430.275000px;}
.ye33_c00000{bottom:430.455000px;}
.y591_c00000{bottom:430.635000px;}
.y903_c00000{bottom:430.815000px;}
.yc2c_c00000{bottom:430.995000px;}
.yf7c_c00000{bottom:431.160000px;}
.y1313_c00000{bottom:431.175000px;}
.y250_c00000{bottom:431.355000px;}
.ya22_c00000{bottom:431.535000px;}
.y417_c00000{bottom:431.715000px;}
.ye73_c00000{bottom:432.075000px;}
.y113e_c00000{bottom:432.435000px;}
.y7e1_c00000{bottom:432.615000px;}
.yef6_c00000{bottom:432.795000px;}
.yd13_c00000{bottom:432.960000px;}
.y76f_c00000{bottom:432.975000px;}
.y6ac_c00000{bottom:433.155000px;}
.y445_c00000{bottom:433.335000px;}
.yc6c_c00000{bottom:433.695000px;}
.y34_c00000{bottom:433.875000px;}
.ycc1_c00000{bottom:434.055000px;}
.y660_c00000{bottom:434.235000px;}
.y8e1_c00000{bottom:434.415000px;}
.y101_c00000{bottom:434.595000px;}
.yde5_c00000{bottom:434.775000px;}
.y183_c00000{bottom:434.955000px;}
.y55b_c00000{bottom:435.135000px;}
.ybfb_c00000{bottom:435.300000px;}
.yc58_c00000{bottom:435.315000px;}
.yce0_c00000{bottom:435.495000px;}
.y694_c00000{bottom:435.675000px;}
.y9a9_c00000{bottom:435.855000px;}
.y10a1_c00000{bottom:436.035000px;}
.yf79_c00000{bottom:436.215000px;}
.yb06_c00000{bottom:436.395000px;}
.ycb3_c00000{bottom:436.575000px;}
.y961_c00000{bottom:436.755000px;}
.y1420_c00000{bottom:436.920000px;}
.y73d_c00000{bottom:436.935000px;}
.y4bc_c00000{bottom:437.115000px;}
.yccf_c00000{bottom:437.475000px;}
.y88f_c00000{bottom:437.835000px;}
.y115_c00000{bottom:438.195000px;}
.y6e3_c00000{bottom:438.375000px;}
.y18_c00000{bottom:438.480000px;}
.y1078_c00000{bottom:438.555000px;}
.ye80_c00000{bottom:438.720000px;}
.y6c7_c00000{bottom:438.735000px;}
.yae6_c00000{bottom:438.915000px;}
.ybee_c00000{bottom:439.275000px;}
.y5a5_c00000{bottom:439.635000px;}
.y2ee_c00000{bottom:439.815000px;}
.y259_c00000{bottom:439.995000px;}
.y7bb_c00000{bottom:440.175000px;}
.ycf7_c00000{bottom:440.535000px;}
.y7f3_c00000{bottom:440.715000px;}
.y9e6_c00000{bottom:440.895000px;}
.y139b_c00000{bottom:441.255000px;}
.ye51_c00000{bottom:441.435000px;}
.y279_c00000{bottom:441.615000px;}
.y9aa_c00000{bottom:441.795000px;}
.y1412_c00000{bottom:441.975000px;}
.ye1d_c00000{bottom:442.500000px;}
.y51f_c00000{bottom:442.515000px;}
.ya0_c00000{bottom:442.695000px;}
.yc0a_c00000{bottom:443.055000px;}
.y13ba_c00000{bottom:443.220000px;}
.y1ca_c00000{bottom:443.235000px;}
.y975_c00000{bottom:443.415000px;}
.y29a_c00000{bottom:443.595000px;}
.y502_c00000{bottom:443.775000px;}
.y822_c00000{bottom:443.955000px;}
.ya0b_c00000{bottom:444.120000px;}
.ya0a_c00000{bottom:444.135000px;}
.y57e_c00000{bottom:444.300000px;}
.y1091_c00000{bottom:444.315000px;}
.y1397_c00000{bottom:444.495000px;}
.y13a2_c00000{bottom:445.215000px;}
.y498_c00000{bottom:445.395000px;}
.yc7a_c00000{bottom:445.575000px;}
.y3b9_c00000{bottom:445.755000px;}
.y987_c00000{bottom:445.935000px;}
.y1151_c00000{bottom:446.100000px;}
.y20c_c00000{bottom:446.115000px;}
.y244_c00000{bottom:446.295000px;}
.yc16_c00000{bottom:446.460000px;}
.y460_c00000{bottom:446.475000px;}
.y100f_c00000{bottom:446.655000px;}
.y538_c00000{bottom:446.835000px;}
.y1022_c00000{bottom:447.000000px;}
.y2b9_c00000{bottom:447.015000px;}
.y403_c00000{bottom:447.195000px;}
.yc9d_c00000{bottom:447.375000px;}
.y13a3_c00000{bottom:447.540000px;}
.y7c_c00000{bottom:447.555000px;}
.ye2b_c00000{bottom:447.735000px;}
.yc3f_c00000{bottom:447.915000px;}
.yd3c_c00000{bottom:448.095000px;}
.y4a_c00000{bottom:448.455000px;}
.ya59_c00000{bottom:448.635000px;}
.y3d2_c00000{bottom:448.815000px;}
.y70b_c00000{bottom:448.995000px;}
.y13ce_c00000{bottom:449.160000px;}
.yec_c00000{bottom:449.175000px;}
.y2cf_c00000{bottom:449.355000px;}
.y29b_c00000{bottom:449.535000px;}
.y4d4_c00000{bottom:449.715000px;}
.yfad_c00000{bottom:449.895000px;}
.yecb_c00000{bottom:450.240000px;}
.y5b3_c00000{bottom:450.255000px;}
.y54f_c00000{bottom:450.435000px;}
.y117a_c00000{bottom:450.615000px;}
.y103e_c00000{bottom:450.795000px;}
.yb81_c00000{bottom:450.975000px;}
.ye97_c00000{bottom:451.155000px;}
.yba6_c00000{bottom:451.335000px;}
.y363_c00000{bottom:451.515000px;}
.y11f2_c00000{bottom:451.695000px;}
.y1155_c00000{bottom:451.875000px;}
.y8d4_c00000{bottom:452.055000px;}
.y13d_c00000{bottom:452.235000px;}
.yd8a_c00000{bottom:452.400000px;}
.y806_c00000{bottom:452.415000px;}
.y114d_c00000{bottom:452.760000px;}
.ye32_c00000{bottom:452.775000px;}
.y532_c00000{bottom:452.955000px;}
.ybc4_c00000{bottom:453.135000px;}
.yc2b_c00000{bottom:453.315000px;}
.y648_c00000{bottom:453.855000px;}
.yf76_c00000{bottom:454.020000px;}
.ycd_c00000{bottom:454.035000px;}
.y119b_c00000{bottom:454.200000px;}
.y306_c00000{bottom:454.215000px;}
.yff8_c00000{bottom:454.395000px;}
.ye72_c00000{bottom:454.575000px;}
.y902_c00000{bottom:454.755000px;}
.yef5_c00000{bottom:454.935000px;}
.y13b9_c00000{bottom:455.115000px;}
.ye18_c00000{bottom:455.460000px;}
.y444_c00000{bottom:455.655000px;}
.y1103_c00000{bottom:455.835000px;}
.y430_c00000{bottom:456.015000px;}
.yd4a_c00000{bottom:456.195000px;}
.y1098_c00000{bottom:456.360000px;}
.y787_c00000{bottom:456.375000px;}
.yefd_c00000{bottom:456.555000px;}
.y482_c00000{bottom:456.735000px;}
.y1351_c00000{bottom:456.915000px;}
.y626_c00000{bottom:457.095000px;}
.y182_c00000{bottom:457.275000px;}
.y55a_c00000{bottom:457.455000px;}
.y33d_c00000{bottom:457.635000px;}
.y86a_c00000{bottom:457.815000px;}
.yb5b_c00000{bottom:457.995000px;}
.y693_c00000{bottom:458.175000px;}
.y8e0_c00000{bottom:458.355000px;}
.yfe4_c00000{bottom:458.520000px;}
.yb3f_c00000{bottom:458.535000px;}
.y17_c00000{bottom:458.636400px;}
.yace_c00000{bottom:458.715000px;}
.ycb2_c00000{bottom:458.895000px;}
.y577_c00000{bottom:459.075000px;}
.y73c_c00000{bottom:459.255000px;}
.y4bb_c00000{bottom:459.435000px;}
.y9a8_c00000{bottom:459.615000px;}
.y11ff_c00000{bottom:459.975000px;}
.yb05_c00000{bottom:460.155000px;}
.yb63_c00000{bottom:460.335000px;}
.yad6_c00000{bottom:460.500000px;}
.y114_c00000{bottom:460.515000px;}
.y6e2_c00000{bottom:460.695000px;}
.y1077_c00000{bottom:460.875000px;}
.y6c6_c00000{bottom:461.055000px;}
.y832_c00000{bottom:461.595000px;}
.y88e_c00000{bottom:461.775000px;}
.y5a4_c00000{bottom:461.955000px;}
.y2ed_c00000{bottom:462.135000px;}
.y258_c00000{bottom:462.315000px;}
.y845_c00000{bottom:462.495000px;}
.yae5_c00000{bottom:462.675000px;}
.y12b4_c00000{bottom:463.020000px;}
.ybed_c00000{bottom:463.035000px;}
.yf10_c00000{bottom:463.215000px;}
.ycce_c00000{bottom:463.395000px;}
.ya8c_c00000{bottom:463.575000px;}
.y13b4_c00000{bottom:463.740000px;}
.ye50_c00000{bottom:463.755000px;}
.y1c9_c00000{bottom:463.935000px;}
.ye61_c00000{bottom:464.115000px;}
.y8f9_c00000{bottom:464.295000px;}
.y1aa_c00000{bottom:464.475000px;}
.y5e8_c00000{bottom:464.640000px;}
.y9f_c00000{bottom:464.655000px;}
.y51e_c00000{bottom:464.835000px;}
.y13b6_c00000{bottom:465.000000px;}
.y10ed_c00000{bottom:465.015000px;}
.y1396_c00000{bottom:465.195000px;}
.y398_c00000{bottom:465.375000px;}
.y11b6_c00000{bottom:465.735000px;}
.y299_c00000{bottom:465.915000px;}
.y67b_c00000{bottom:466.275000px;}
.yb16_c00000{bottom:466.455000px;}
.yfe6_c00000{bottom:466.620000px;}
.y7b_c00000{bottom:466.635000px;}
.y20b_c00000{bottom:466.815000px;}
.y243_c00000{bottom:466.995000px;}
.y12c7_c00000{bottom:467.160000px;}
.y1138_c00000{bottom:467.355000px;}
.yd51_c00000{bottom:467.520000px;}
.y497_c00000{bottom:467.535000px;}
.y821_c00000{bottom:467.715000px;}
.y3e4_c00000{bottom:468.075000px;}
.yc86_c00000{bottom:468.255000px;}
.yf8c_c00000{bottom:468.435000px;}
.ycf6_c00000{bottom:468.615000px;}
.y45f_c00000{bottom:468.795000px;}
.y100_c00000{bottom:468.975000px;}
.yf32_c00000{bottom:469.155000px;}
.y4f3_c00000{bottom:469.335000px;}
.y1211_c00000{bottom:469.500000px;}
.y2b8_c00000{bottom:469.515000px;}
.y99d_c00000{bottom:469.695000px;}
.yaf5_c00000{bottom:469.875000px;}
.yc3e_c00000{bottom:470.235000px;}
.y106e_c00000{bottom:470.415000px;}
.ya1a_c00000{bottom:470.595000px;}
.y2ce_c00000{bottom:470.775000px;}
.ybcb_c00000{bottom:470.955000px;}
.y3d1_c00000{bottom:471.135000px;}
.y70a_c00000{bottom:471.315000px;}
.y13db_c00000{bottom:471.495000px;}
.ya58_c00000{bottom:472.215000px;}
.yb99_c00000{bottom:472.395000px;}
.y5b2_c00000{bottom:472.575000px;}
.y54e_c00000{bottom:472.755000px;}
.y9be_c00000{bottom:472.935000px;}
.y913_c00000{bottom:473.295000px;}
.y4d3_c00000{bottom:473.475000px;}
.y85d_c00000{bottom:473.655000px;}
.y362_c00000{bottom:473.835000px;}
.ye47_c00000{bottom:474.015000px;}
.yd9c_c00000{bottom:474.375000px;}
.y1099_c00000{bottom:474.540000px;}
.y13c_c00000{bottom:474.555000px;}
.y5d0_c00000{bottom:474.735000px;}
.yb21_c00000{bottom:474.915000px;}
.y10d7_c00000{bottom:475.275000px;}
.y9dc_c00000{bottom:475.635000px;}
.y8d3_c00000{bottom:475.815000px;}
.y96b_c00000{bottom:475.995000px;}
.y7c8_c00000{bottom:476.160000px;}
.y805_c00000{bottom:476.175000px;}
.y647_c00000{bottom:476.355000px;}
.y305_c00000{bottom:476.535000px;}
.ybc3_c00000{bottom:476.715000px;}
.y12fd_c00000{bottom:477.075000px;}
.y13f8_c00000{bottom:477.240000px;}
.yef4_c00000{bottom:477.255000px;}
.y1350_c00000{bottom:477.615000px;}
.yb4e_c00000{bottom:477.795000px;}
.y443_c00000{bottom:477.975000px;}
.y383_c00000{bottom:478.155000px;}
.yc6b_c00000{bottom:478.335000px;}
.y901_c00000{bottom:478.515000px;}
.yf60_c00000{bottom:478.695000px;}
.y16_c00000{bottom:478.800000px;}
.y135b_c00000{bottom:478.875000px;}
.y481_c00000{bottom:479.055000px;}
.y65f_c00000{bottom:479.415000px;}
.y181_c00000{bottom:479.595000px;}
.y12b8_c00000{bottom:479.760000px;}
.y33_c00000{bottom:479.775000px;}
.yc57_c00000{bottom:479.955000px;}
.ye7f_c00000{bottom:480.120000px;}
.y786_c00000{bottom:480.135000px;}
.y10cd_c00000{bottom:480.315000px;}
.y6ab_c00000{bottom:480.495000px;}
.y692_c00000{bottom:480.675000px;}
.yb3d_c00000{bottom:481.200000px;}
.y576_c00000{bottom:481.215000px;}
.y33c_c00000{bottom:481.395000px;}
.y402_c00000{bottom:481.575000px;}
.y4ba_c00000{bottom:481.755000px;}
.y12b1_c00000{bottom:481.935000px;}
.y8df_c00000{bottom:482.115000px;}
.y11fe_c00000{bottom:482.295000px;}
.yfca_c00000{bottom:482.475000px;}
.y113_c00000{bottom:482.835000px;}
.y6e1_c00000{bottom:483.015000px;}
.yed5_c00000{bottom:483.360000px;}
.yeb_c00000{bottom:483.375000px;}
.y9a7_c00000{bottom:483.555000px;}
.y1160_c00000{bottom:483.735000px;}
.y11de_c00000{bottom:483.900000px;}
.yb04_c00000{bottom:483.915000px;}
.y501_c00000{bottom:484.095000px;}
.ya3a_c00000{bottom:484.260000px;}
.ydac_c00000{bottom:484.275000px;}
.y2ec_c00000{bottom:484.455000px;}
.y12ca_c00000{bottom:484.620000px;}
.y257_c00000{bottom:484.635000px;}
.y1c8_c00000{bottom:484.815000px;}
.ycf5_c00000{bottom:484.995000px;}
.y1a9_c00000{bottom:485.175000px;}
.y7a_c00000{bottom:485.355000px;}
.ya09_c00000{bottom:485.520000px;}
.y88d_c00000{bottom:485.535000px;}
.ya45_c00000{bottom:485.715000px;}
.ya9c_c00000{bottom:485.895000px;}
.y278_c00000{bottom:486.075000px;}
.y13fa_c00000{bottom:486.240000px;}
.y49_c00000{bottom:486.435000px;}
.y1036_c00000{bottom:486.615000px;}
.ybec_c00000{bottom:486.795000px;}
.y51d_c00000{bottom:487.155000px;}
.ya8b_c00000{bottom:487.335000px;}
.yfb8_c00000{bottom:487.500000px;}
.y1f9_c00000{bottom:487.515000px;}
.yd23_c00000{bottom:487.680000px;}
.y242_c00000{bottom:487.695000px;}
.yfb7_c00000{bottom:487.860000px;}
.y11a0_c00000{bottom:488.055000px;}
.y298_c00000{bottom:488.235000px;}
.y416_c00000{bottom:488.415000px;}
.y9e5_c00000{bottom:488.595000px;}
.y67a_c00000{bottom:488.775000px;}
.yccd_c00000{bottom:489.135000px;}
.y114b_c00000{bottom:489.315000px;}
.y3e3_c00000{bottom:489.495000px;}
.y496_c00000{bottom:490.035000px;}
.yc79_c00000{bottom:490.395000px;}
.y11a8_c00000{bottom:490.560000px;}
.yc09_c00000{bottom:490.575000px;}
.y986_c00000{bottom:490.755000px;}
.y8a7_c00000{bottom:490.935000px;}
.y974_c00000{bottom:491.115000px;}
.y1278_c00000{bottom:491.295000px;}
.y4f2_c00000{bottom:491.475000px;}
.y531_c00000{bottom:491.655000px;}
.y2b7_c00000{bottom:491.835000px;}
.y13ef_c00000{bottom:492.000000px;}
.yc5b_c00000{bottom:492.015000px;}
.ya6c_c00000{bottom:492.195000px;}
.yc3d_c00000{bottom:492.555000px;}
.y106d_c00000{bottom:492.735000px;}
.y3b8_c00000{bottom:493.275000px;}
.y3d0_c00000{bottom:493.455000px;}
.y13d5_c00000{bottom:493.620000px;}
.y709_c00000{bottom:493.635000px;}
.y94b_c00000{bottom:493.815000px;}
.ydd0_c00000{bottom:494.355000px;}
.yfa0_c00000{bottom:494.535000px;}
.y1417_c00000{bottom:494.700000px;}
.yf72_c00000{bottom:494.715000px;}
.y5b1_c00000{bottom:494.895000px;}
.y54d_c00000{bottom:495.075000px;}
.y6aa_c00000{bottom:495.255000px;}
.y5cf_c00000{bottom:495.435000px;}
.ye96_c00000{bottom:495.795000px;}
.ya57_c00000{bottom:495.975000px;}
.ya2b_c00000{bottom:496.155000px;}
.y361_c00000{bottom:496.335000px;}
.y9bd_c00000{bottom:496.695000px;}
.y13b_c00000{bottom:496.875000px;}
.y912_c00000{bottom:497.055000px;}
.y1027_c00000{bottom:497.220000px;}
.y4d2_c00000{bottom:497.415000px;}
.y15_c00000{bottom:497.698560px;}
.y1097_c00000{bottom:497.760000px;}
.yd1f_c00000{bottom:497.775000px;}
.yc2a_c00000{bottom:497.955000px;}
.yd17_c00000{bottom:498.135000px;}
.y134f_c00000{bottom:498.495000px;}
.y13d3_c00000{bottom:498.660000px;}
.y617_c00000{bottom:498.675000px;}
.y304_c00000{bottom:498.855000px;}
.yff7_c00000{bottom:499.035000px;}
.yf78_c00000{bottom:499.215000px;}
.y960_c00000{bottom:499.395000px;}
.yef3_c00000{bottom:499.575000px;}
.y397_c00000{bottom:499.755000px;}
.yaad_c00000{bottom:499.935000px;}
.y804_c00000{bottom:500.115000px;}
.y442_c00000{bottom:500.295000px;}
.y42f_c00000{bottom:500.475000px;}
.yc6a_c00000{bottom:500.655000px;}
.yd49_c00000{bottom:500.835000px;}
.ycc0_c00000{bottom:501.015000px;}
.y480_c00000{bottom:501.375000px;}
.yb4d_c00000{bottom:501.555000px;}
.y180_c00000{bottom:501.915000px;}
.y1373_c00000{bottom:502.080000px;}
.y559_c00000{bottom:502.095000px;}
.yc56_c00000{bottom:502.275000px;}
.yee6_c00000{bottom:502.455000px;}
.y10a0_c00000{bottom:502.995000px;}
.y691_c00000{bottom:503.175000px;}
.yff_c00000{bottom:503.355000px;}
.y45e_c00000{bottom:503.535000px;}
.y401_c00000{bottom:503.715000px;}
.y785_c00000{bottom:503.895000px;}
.y73b_c00000{bottom:504.075000px;}
.y76e_c00000{bottom:504.435000px;}
.y79_c00000{bottom:504.615000px;}
.ya70_c00000{bottom:504.780000px;}
.yfc9_c00000{bottom:504.975000px;}
.y112_c00000{bottom:505.155000px;}
.y1372_c00000{bottom:505.320000px;}
.y48_c00000{bottom:505.335000px;}
.y1c7_c00000{bottom:505.515000px;}
.yea_c00000{bottom:505.695000px;}
.y8de_c00000{bottom:505.875000px;}
.y5a3_c00000{bottom:506.415000px;}
.y5e5_c00000{bottom:506.580000px;}
.y5e4_c00000{bottom:506.595000px;}
.y2eb_c00000{bottom:506.775000px;}
.y256_c00000{bottom:506.955000px;}
.y1169_c00000{bottom:507.135000px;}
.y9a6_c00000{bottom:507.315000px;}
.yac3_c00000{bottom:507.480000px;}
.ycf4_c00000{bottom:507.495000px;}
.yf0f_c00000{bottom:507.675000px;}
.yb03_c00000{bottom:507.855000px;}
.y9e_c00000{bottom:508.215000px;}
.y10cc_c00000{bottom:508.380000px;}
.y1f7_c00000{bottom:508.395000px;}
.y9cb_c00000{bottom:508.575000px;}
.y985_c00000{bottom:508.755000px;}
.y1035_c00000{bottom:508.935000px;}
.y137b_c00000{bottom:509.115000px;}
.y88c_c00000{bottom:509.295000px;}
.yf40_c00000{bottom:509.460000px;}
.y51c_c00000{bottom:509.475000px;}
.ye2e_c00000{bottom:509.640000px;}
.y10d6_c00000{bottom:509.835000px;}
.y844_c00000{bottom:510.195000px;}
.y1252_c00000{bottom:510.375000px;}
.y297_c00000{bottom:510.555000px;}
.y415_c00000{bottom:510.735000px;}
.yd0d_c00000{bottom:510.915000px;}
.ya8a_c00000{bottom:511.095000px;}
.y679_c00000{bottom:511.275000px;}
.y7ba_c00000{bottom:511.635000px;}
.y7f2_c00000{bottom:511.995000px;}
.y1244_c00000{bottom:512.175000px;}
.y5ff_c00000{bottom:512.355000px;}
.y381_c00000{bottom:512.535000px;}
.yc78_c00000{bottom:512.715000px;}
.y119a_c00000{bottom:512.895000px;}
.y1282_c00000{bottom:513.075000px;}
.yf8b_c00000{bottom:513.255000px;}
.y1f8_c00000{bottom:513.615000px;}
.y4f1_c00000{bottom:513.795000px;}
.y530_c00000{bottom:513.975000px;}
.y2b6_c00000{bottom:514.155000px;}
.yc08_c00000{bottom:514.335000px;}
.y1194_c00000{bottom:514.515000px;}
.y8a6_c00000{bottom:514.695000px;}
.yc51_c00000{bottom:514.860000px;}
.ybac_c00000{bottom:514.875000px;}
.y106c_c00000{bottom:515.055000px;}
.yb31_c00000{bottom:515.235000px;}
.y820_c00000{bottom:515.415000px;}
.y3cf_c00000{bottom:515.775000px;}
.y6a9_c00000{bottom:515.955000px;}
.y5ce_c00000{bottom:516.135000px;}
.y4b8_c00000{bottom:516.315000px;}
.ydcf_c00000{bottom:516.495000px;}
.yebe_c00000{bottom:516.675000px;}
.yf9f_c00000{bottom:516.855000px;}
.y3b7_c00000{bottom:517.035000px;}
.y14_c00000{bottom:517.136400px;}
.y5b0_c00000{bottom:517.215000px;}
.y54c_c00000{bottom:517.395000px;}
.y6e0_c00000{bottom:517.575000px;}
.y1346_c00000{bottom:517.755000px;}
.ye95_c00000{bottom:518.115000px;}
.y382_c00000{bottom:518.475000px;}
.y360_c00000{bottom:518.655000px;}
.y793_c00000{bottom:519.015000px;}
.y13a_c00000{bottom:519.195000px;}
.y616_c00000{bottom:519.375000px;}
.y12cd_c00000{bottom:519.735000px;}
.ya2a_c00000{bottom:520.095000px;}
.y135a_c00000{bottom:520.275000px;}
.y9bc_c00000{bottom:520.455000px;}
.y96a_c00000{bottom:520.635000px;}
.y911_c00000{bottom:520.815000px;}
.yd7b_c00000{bottom:520.995000px;}
.y303_c00000{bottom:521.175000px;}
.y646_c00000{bottom:521.355000px;}
.y851_c00000{bottom:521.535000px;}
.yef2_c00000{bottom:521.895000px;}
.ye30_c00000{bottom:522.240000px;}
.y4b9_c00000{bottom:522.255000px;}
.yb80_c00000{bottom:522.435000px;}
.ycc_c00000{bottom:522.615000px;}
.y3e2_c00000{bottom:522.795000px;}
.yca5_c00000{bottom:522.975000px;}
.y95f_c00000{bottom:523.155000px;}
.y9db_c00000{bottom:523.335000px;}
.y78_c00000{bottom:523.515000px;}
.y47f_c00000{bottom:523.695000px;}
.y803_c00000{bottom:523.875000px;}
.yed3_c00000{bottom:524.055000px;}
.y17f_c00000{bottom:524.235000px;}
.y47_c00000{bottom:524.415000px;}
.y400_c00000{bottom:524.595000px;}
.yac0_c00000{bottom:524.760000px;}
.ya9b_c00000{bottom:524.775000px;}
.y7e7_c00000{bottom:524.955000px;}
.yb4c_c00000{bottom:525.495000px;}
.y45d_c00000{bottom:525.675000px;}
.y575_c00000{bottom:525.855000px;}
.y1265_c00000{bottom:526.035000px;}
.y1c6_c00000{bottom:526.215000px;}
.y2cd_c00000{bottom:526.395000px;}
.y1a8_c00000{bottom:526.575000px;}
.ya08_c00000{bottom:526.920000px;}
.y831_c00000{bottom:526.935000px;}
.yd3b_c00000{bottom:527.115000px;}
.yfc8_c00000{bottom:527.295000px;}
.y108c_c00000{bottom:527.460000px;}
.y111_c00000{bottom:527.475000px;}
.y113d_c00000{bottom:527.655000px;}
.y784_c00000{bottom:527.835000px;}
.ye9_c00000{bottom:528.015000px;}
.y76d_c00000{bottom:528.195000px;}
.y13d1_c00000{bottom:528.375000px;}
.yfe_c00000{bottom:528.735000px;}
.y1f6_c00000{bottom:528.915000px;}
.y241_c00000{bottom:529.095000px;}
.y2ea_c00000{bottom:529.275000px;}
.y255_c00000{bottom:529.455000px;}
.y8dd_c00000{bottom:529.635000px;}
.y127d_c00000{bottom:529.815000px;}
.y9d_c00000{bottom:529.995000px;}
.y13e4_c00000{bottom:530.355000px;}
.yf62_c00000{bottom:530.535000px;}
.y277_c00000{bottom:530.715000px;}
.y1168_c00000{bottom:530.895000px;}
.y9a5_c00000{bottom:531.075000px;}
.y12a3_c00000{bottom:531.255000px;}
.y1034_c00000{bottom:531.435000px;}
.yb02_c00000{bottom:531.615000px;}
.y51b_c00000{bottom:531.795000px;}
.y10ec_c00000{bottom:531.975000px;}
.ye8d_c00000{bottom:532.140000px;}
.y13eb_c00000{bottom:532.155000px;}
.y9ca_c00000{bottom:532.335000px;}
.y984_c00000{bottom:532.515000px;}
.y296_c00000{bottom:532.875000px;}
.y414_c00000{bottom:533.055000px;}
.ya19_c00000{bottom:533.235000px;}
.yd0c_c00000{bottom:533.415000px;}
.ye69_c00000{bottom:533.580000px;}
.ya44_c00000{bottom:533.595000px;}
.y678_c00000{bottom:533.775000px;}
.y396_c00000{bottom:533.955000px;}
.yae4_c00000{bottom:534.135000px;}
.ybeb_c00000{bottom:534.495000px;}
.y380_c00000{bottom:534.675000px;}
.ya56_c00000{bottom:534.855000px;}
.yc77_c00000{bottom:535.035000px;}
.yc69_c00000{bottom:535.215000px;}
.yac9_c00000{bottom:535.380000px;}
.y7b9_c00000{bottom:535.395000px;}
.y104c_c00000{bottom:535.560000px;}
.yd29_c00000{bottom:535.575000px;}
.y7f1_c00000{bottom:535.935000px;}
.y4f0_c00000{bottom:536.115000px;}
.y52f_c00000{bottom:536.295000px;}
.y2b5_c00000{bottom:536.475000px;}
.y6a8_c00000{bottom:536.655000px;}
.y5cd_c00000{bottom:536.835000px;}
.yc3c_c00000{bottom:537.195000px;}
.y13_c00000{bottom:537.300000px;}
.y106b_c00000{bottom:537.375000px;}
.y10d5_c00000{bottom:537.735000px;}
.y3ce_c00000{bottom:538.095000px;}
.y708_c00000{bottom:538.275000px;}
.y4b7_c00000{bottom:538.455000px;}
.y5af_c00000{bottom:538.635000px;}
.y9ee_c00000{bottom:538.800000px;}
.y1137_c00000{bottom:538.815000px;}
.yb70_c00000{bottom:538.980000px;}
.yb30_c00000{bottom:538.995000px;}
.y1096_c00000{bottom:539.160000px;}
.y81f_c00000{bottom:539.175000px;}
.ye7e_c00000{bottom:539.355000px;}
.y54b_c00000{bottom:539.715000px;}
.y1076_c00000{bottom:539.895000px;}
.y615_c00000{bottom:540.075000px;}
.ya65_c00000{bottom:540.240000px;}
.ye94_c00000{bottom:540.435000px;}
.yfed_c00000{bottom:540.780000px;}
.ycca_c00000{bottom:540.795000px;}
.y35f_c00000{bottom:540.975000px;}
.y900_c00000{bottom:541.155000px;}
.yf66_c00000{bottom:541.320000px;}
.yd9b_c00000{bottom:541.335000px;}
.y326_c00000{bottom:541.515000px;}
.y139_c00000{bottom:541.695000px;}
.ycf3_c00000{bottom:541.875000px;}
.y1368_c00000{bottom:542.055000px;}
.y12ed_c00000{bottom:542.235000px;}
.y77_c00000{bottom:542.415000px;}
.yb6d_c00000{bottom:542.760000px;}
.y792_c00000{bottom:542.775000px;}
.yd7a_c00000{bottom:543.135000px;}
.y11e5_c00000{bottom:543.300000px;}
.y302_c00000{bottom:543.495000px;}
.yd00_c00000{bottom:543.660000px;}
.yff6_c00000{bottom:543.675000px;}
.y645_c00000{bottom:543.855000px;}
.y1430_c00000{bottom:544.035000px;}
.y9bb_c00000{bottom:544.215000px;}
.y1170_c00000{bottom:544.575000px;}
.y910_c00000{bottom:544.755000px;}
.y441_c00000{bottom:544.935000px;}
.yb6f_c00000{bottom:545.100000px;}
.y42e_c00000{bottom:545.115000px;}
.y850_c00000{bottom:545.295000px;}
.yc03_c00000{bottom:545.460000px;}
.yd48_c00000{bottom:545.475000px;}
.ycbf_c00000{bottom:545.655000px;}
.y1179_c00000{bottom:545.835000px;}
.y32_c00000{bottom:546.015000px;}
.yb7f_c00000{bottom:546.195000px;}
.y17e_c00000{bottom:546.555000px;}
.y558_c00000{bottom:546.735000px;}
.y1c5_c00000{bottom:546.915000px;}
.y9da_c00000{bottom:547.095000px;}
.y8d2_c00000{bottom:547.275000px;}
.yb91_c00000{bottom:547.455000px;}
.y802_c00000{bottom:547.635000px;}
.y109f_c00000{bottom:547.815000px;}
.y45c_c00000{bottom:547.995000px;}
.y6f0_c00000{bottom:548.175000px;}
.y574_c00000{bottom:548.355000px;}
.y5e2_c00000{bottom:548.715000px;}
.yb4b_c00000{bottom:549.255000px;}
.yd3a_c00000{bottom:549.435000px;}
.y1f5_c00000{bottom:549.615000px;}
.y110_c00000{bottom:549.795000px;}
.y1264_c00000{bottom:549.975000px;}
.y6c5_c00000{bottom:550.335000px;}
.yf64_c00000{bottom:550.500000px;}
.y830_c00000{bottom:550.875000px;}
.y1102_c00000{bottom:551.055000px;}
.y5a2_c00000{bottom:551.235000px;}
.ydab_c00000{bottom:551.415000px;}
.y11cd_c00000{bottom:551.580000px;}
.y2e9_c00000{bottom:551.595000px;}
.y254_c00000{bottom:551.775000px;}
.y9c_c00000{bottom:551.955000px;}
.yf0e_c00000{bottom:552.315000px;}
.y11bd_c00000{bottom:552.495000px;}
.ydb3_c00000{bottom:552.660000px;}
.y1208_c00000{bottom:552.675000px;}
.y33b_c00000{bottom:552.855000px;}
.y276_c00000{bottom:553.035000px;}
.yb5a_c00000{bottom:553.395000px;}
.y8a5_c00000{bottom:553.575000px;}
.yaa7_c00000{bottom:553.755000px;}
.y51a_c00000{bottom:554.115000px;}
.y10d4_c00000{bottom:554.295000px;}
.y9a4_c00000{bottom:554.835000px;}
.y295_c00000{bottom:555.195000px;}
.yb01_c00000{bottom:555.375000px;}
.y667_c00000{bottom:555.555000px;}
.yd0b_c00000{bottom:555.735000px;}
.yfea_c00000{bottom:555.915000px;}
.y12_c00000{bottom:556.037280px;}
.y99c_c00000{bottom:556.095000px;}
.y677_c00000{bottom:556.275000px;}
.y37f_c00000{bottom:556.995000px;}
.y3e1_c00000{bottom:557.175000px;}
.y6a7_c00000{bottom:557.355000px;}
.y5cc_c00000{bottom:557.535000px;}
.y843_c00000{bottom:557.715000px;}
.y12c4_c00000{bottom:557.895000px;}
.yc00_c00000{bottom:558.075000px;}
.ybea_c00000{bottom:558.255000px;}
.y52e_c00000{bottom:558.615000px;}
.y2b4_c00000{bottom:558.795000px;}
.y3ff_c00000{bottom:558.975000px;}
.y7b8_c00000{bottom:559.155000px;}
.yc07_c00000{bottom:559.515000px;}
.y7f0_c00000{bottom:559.695000px;}
.y1243_c00000{bottom:559.875000px;}
.y1308_c00000{bottom:560.055000px;}
.y134e_c00000{bottom:560.415000px;}
.y1364_c00000{bottom:560.580000px;}
.yf9e_c00000{bottom:560.595000px;}
.y4b6_c00000{bottom:560.775000px;}
.y2cc_c00000{bottom:560.955000px;}
.ydce_c00000{bottom:561.315000px;}
.y76_c00000{bottom:561.495000px;}
.yb62_c00000{bottom:561.675000px;}
.y54a_c00000{bottom:562.035000px;}
.y8c4_c00000{bottom:562.215000px;}
.y46_c00000{bottom:562.395000px;}
.y1136_c00000{bottom:562.755000px;}
.y81e_c00000{bottom:562.935000px;}
.y35e_c00000{bottom:563.295000px;}
.ya9a_c00000{bottom:563.475000px;}
.yd9a_c00000{bottom:563.655000px;}
.y325_c00000{bottom:563.835000px;}
.y138_c00000{bottom:564.015000px;}
.y1087_c00000{bottom:564.195000px;}
.y3b6_c00000{bottom:564.765000px;}
.y8ff_c00000{bottom:564.945000px;}
.yaf4_c00000{bottom:565.125000px;}
.y94a_c00000{bottom:565.305000px;}
.yd79_c00000{bottom:565.485000px;}
.yeb9_c00000{bottom:565.845000px;}
.yff5_c00000{bottom:566.025000px;}
.ye71_c00000{bottom:566.205000px;}
.y644_c00000{bottom:566.385000px;}
.y791_c00000{bottom:566.565000px;}
.y440_c00000{bottom:567.285000px;}
.y1c4_c00000{bottom:567.465000px;}
.ya29_c00000{bottom:567.645000px;}
.yd47_c00000{bottom:567.825000px;}
.y1a7_c00000{bottom:568.005000px;}
.y1075_c00000{bottom:568.185000px;}
.y395_c00000{bottom:568.365000px;}
.y90f_c00000{bottom:568.545000px;}
.y4d1_c00000{bottom:568.725000px;}
.y17d_c00000{bottom:568.905000px;}
.y557_c00000{bottom:569.085000px;}
.y65e_c00000{bottom:569.265000px;}
.y690_c00000{bottom:569.445000px;}
.ya55_c00000{bottom:569.625000px;}
.yf8a_c00000{bottom:569.805000px;}
.yb7e_c00000{bottom:570.165000px;}
.y1f3_c00000{bottom:570.345000px;}
.y240_c00000{bottom:570.525000px;}
.y4ef_c00000{bottom:570.885000px;}
.y8d1_c00000{bottom:571.065000px;}
.yad8_c00000{bottom:571.245000px;}
.y801_c00000{bottom:571.425000px;}
.y11fd_c00000{bottom:571.605000px;}
.yd39_c00000{bottom:571.785000px;}
.ybc2_c00000{bottom:571.965000px;}
.y10f_c00000{bottom:572.145000px;}
.ycf2_c00000{bottom:572.325000px;}
.y3cd_c00000{bottom:572.505000px;}
.y11d0_c00000{bottom:572.865000px;}
.yae3_c00000{bottom:573.045000px;}
.y5a1_c00000{bottom:573.585000px;}
.y9b_c00000{bottom:573.765000px;}
.y71a_c00000{bottom:574.125000px;}
.yab8_c00000{bottom:574.485000px;}
.y82f_c00000{bottom:574.665000px;}
.y1101_c00000{bottom:574.845000px;}
.y113c_c00000{bottom:575.205000px;}
.y275_c00000{bottom:575.385000px;}
.y11_c00000{bottom:575.472960px;}
.yddc_c00000{bottom:575.565000px;}
.y13c3_c00000{bottom:575.745000px;}
.y76c_c00000{bottom:575.925000px;}
.y1033_c00000{bottom:576.105000px;}
.y1f4_c00000{bottom:576.285000px;}
.y519_c00000{bottom:576.465000px;}
.y33a_c00000{bottom:576.645000px;}
.y869_c00000{bottom:576.825000px;}
.yb59_c00000{bottom:577.005000px;}
.yc29_c00000{bottom:577.185000px;}
.y8a4_c00000{bottom:577.365000px;}
.yc96_c00000{bottom:577.545000px;}
.y294_c00000{bottom:577.725000px;}
.y301_c00000{bottom:577.905000px;}
.y6a6_c00000{bottom:578.085000px;}
.y5cb_c00000{bottom:578.265000px;}
.y676_c00000{bottom:578.805000px;}
.y9a3_c00000{bottom:578.985000px;}
.yb00_c00000{bottom:579.165000px;}
.y37e_c00000{bottom:579.345000px;}
.yc68_c00000{bottom:579.705000px;}
.y99b_c00000{bottom:579.885000px;}
.y983_c00000{bottom:580.065000px;}
.y75_c00000{bottom:580.245000px;}
.yd28_c00000{bottom:580.425000px;}
.y47e_c00000{bottom:580.605000px;}
.y88b_c00000{bottom:580.785000px;}
.y2b3_c00000{bottom:580.965000px;}
.y3fe_c00000{bottom:581.145000px;}
.yc50_c00000{bottom:581.325000px;}
.y614_c00000{bottom:581.505000px;}
.y842_c00000{bottom:581.685000px;}
.y1251_c00000{bottom:581.865000px;}
.ybe9_c00000{bottom:582.045000px;}
.ya89_c00000{bottom:582.405000px;}
.y1258_c00000{bottom:582.585000px;}
.ya78_c00000{bottom:582.765000px;}
.y7b7_c00000{bottom:582.945000px;}
.y2cb_c00000{bottom:583.125000px;}
.y73a_c00000{bottom:583.305000px;}
.y549_c00000{bottom:583.485000px;}
.ydcd_c00000{bottom:583.665000px;}
.yebd_c00000{bottom:583.845000px;}
.y6df_c00000{bottom:584.385000px;}
.y1074_c00000{bottom:584.565000px;}
.y6c3_c00000{bottom:584.925000px;}
.ye93_c00000{bottom:585.105000px;}
.yd87_c00000{bottom:585.645000px;}
.y35d_c00000{bottom:585.825000px;}
.ybda_c00000{bottom:586.005000px;}
.y8c3_c00000{bottom:586.185000px;}
.y137_c00000{bottom:586.365000px;}
.y81d_c00000{bottom:586.725000px;}
.y52d_c00000{bottom:586.905000px;}
.ya99_c00000{bottom:587.445000px;}
.ycad_c00000{bottom:587.805000px;}
.y1c3_c00000{bottom:587.985000px;}
.yeb8_c00000{bottom:588.165000px;}
.yff4_c00000{bottom:588.345000px;}
.y3b5_c00000{bottom:588.525000px;}
.y8fe_c00000{bottom:588.705000px;}
.y625_c00000{bottom:588.885000px;}
.y949_c00000{bottom:589.065000px;}
.y125d_c00000{bottom:589.425000px;}
.y413_c00000{bottom:589.605000px;}
.y42d_c00000{bottom:589.785000px;}
.ye4e_c00000{bottom:589.965000px;}
.ybca_c00000{bottom:590.145000px;}
.y790_c00000{bottom:590.325000px;}
.y394_c00000{bottom:590.505000px;}
.y5e0_c00000{bottom:590.685000px;}
.y6c4_c00000{bottom:590.865000px;}
.y1f2_c00000{bottom:591.045000px;}
.y17c_c00000{bottom:591.225000px;}
.ycb_c00000{bottom:591.405000px;}
.ya28_c00000{bottom:591.585000px;}
.y65d_c00000{bottom:591.765000px;}
.y9ba_c00000{bottom:591.945000px;}
.y10be_c00000{bottom:592.125000px;}
.y90e_c00000{bottom:592.305000px;}
.y1059_c00000{bottom:592.485000px;}
.y4d0_c00000{bottom:592.665000px;}
.y45b_c00000{bottom:592.845000px;}
.y4ee_c00000{bottom:593.025000px;}
.y1178_c00000{bottom:593.385000px;}
.y12a2_c00000{bottom:593.745000px;}
.yb7d_c00000{bottom:593.925000px;}
.y10e_c00000{bottom:594.465000px;}
.y3cc_c00000{bottom:594.645000px;}
.y1154_c00000{bottom:594.825000px;}
.y9b5_c00000{bottom:595.005000px;}
.yb90_c00000{bottom:595.185000px;}
.y800_c00000{bottom:595.365000px;}
.y9a_c00000{bottom:595.545000px;}
.ybc1_c00000{bottom:595.725000px;}
.y5a0_c00000{bottom:595.905000px;}
.y2e8_c00000{bottom:596.085000px;}
.y719_c00000{bottom:596.445000px;}
.ye8_c00000{bottom:596.805000px;}
.yf0d_c00000{bottom:597.165000px;}
.y274_c00000{bottom:597.705000px;}
.y47d_c00000{bottom:597.885000px;}
.yddb_c00000{bottom:598.065000px;}
.y1411_c00000{bottom:598.245000px;}
.y82e_c00000{bottom:598.425000px;}
.y110b_c00000{bottom:598.605000px;}
.y518_c00000{bottom:598.785000px;}
.y5ca_c00000{bottom:598.965000px;}
.y783_c00000{bottom:599.145000px;}
.y74_c00000{bottom:599.325000px;}
.yc28_c00000{bottom:599.505000px;}
.y76b_c00000{bottom:599.685000px;}
.yc95_c00000{bottom:599.865000px;}
.y293_c00000{bottom:600.045000px;}
.y102d_c00000{bottom:600.225000px;}
.y45_c00000{bottom:600.405000px;}
.y868_c00000{bottom:600.585000px;}
.y95e_c00000{bottom:600.765000px;}
.y5ae_c00000{bottom:600.945000px;}
.y8a3_c00000{bottom:601.125000px;}
.y675_c00000{bottom:601.305000px;}
.y1307_c00000{bottom:601.485000px;}
.y37d_c00000{bottom:601.665000px;}
.y134d_c00000{bottom:601.845000px;}
.yaaf_c00000{bottom:602.025000px;}
.y613_c00000{bottom:602.205000px;}
.y9a2_c00000{bottom:602.565000px;}
.yc10_c00000{bottom:602.745000px;}
.yaff_c00000{bottom:603.105000px;}
.y2b1_c00000{bottom:603.285000px;}
.y3fd_c00000{bottom:603.465000px;}
.y9fe_c00000{bottom:603.645000px;}
.y982_c00000{bottom:603.825000px;}
.y139a_c00000{bottom:604.005000px;}
.y12a6_c00000{bottom:604.185000px;}
.yc3b_c00000{bottom:604.365000px;}
.y88a_c00000{bottom:604.545000px;}
.ya43_c00000{bottom:604.725000px;}
.y2ca_c00000{bottom:605.265000px;}
.y4b5_c00000{bottom:605.445000px;}
.y1250_c00000{bottom:605.625000px;}
.yd92_c00000{bottom:605.805000px;}
.ybe8_c00000{bottom:605.985000px;}
.ya88_c00000{bottom:606.345000px;}
.ya77_c00000{bottom:606.525000px;}
.y31_c00000{bottom:606.705000px;}
.y7b6_c00000{bottom:606.885000px;}
.y6c2_c00000{bottom:607.065000px;}
.y7ef_c00000{bottom:607.245000px;}
.yc11_c00000{bottom:607.425000px;}
.y253_c00000{bottom:607.785000px;}
.y1056_c00000{bottom:607.965000px;}
.y35c_c00000{bottom:608.145000px;}
.yd99_c00000{bottom:608.325000px;}
.y1c2_c00000{bottom:608.685000px;}
.y136_c00000{bottom:608.865000px;}
.yec7_c00000{bottom:609.045000px;}
.y2b2_c00000{bottom:609.225000px;}
.y1a6_c00000{bottom:609.405000px;}
.y11b4_c00000{bottom:609.585000px;}
.ya07_c00000{bottom:609.765000px;}
.y8c2_c00000{bottom:609.945000px;}
.ybab_c00000{bottom:610.125000px;}
.y105b_c00000{bottom:610.305000px;}
.yeb7_c00000{bottom:610.485000px;}
.y81c_c00000{bottom:610.665000px;}
.ye70_c00000{bottom:610.845000px;}
.ya20_c00000{bottom:611.025000px;}
.y624_c00000{bottom:611.205000px;}
.y643_c00000{bottom:611.385000px;}
.y1f1_c00000{bottom:611.745000px;}
.y209_c00000{bottom:611.925000px;}
.y42c_c00000{bottom:612.105000px;}
.y3b4_c00000{bottom:612.285000px;}
.y8fd_c00000{bottom:612.465000px;}
.y951_c00000{bottom:612.645000px;}
.y948_c00000{bottom:612.825000px;}
.y125c_c00000{bottom:613.365000px;}
.ycdc_c00000{bottom:613.545000px;}
.y17b_c00000{bottom:613.725000px;}
.y556_c00000{bottom:613.905000px;}
.yc85_c00000{bottom:614.085000px;}
.y65c_c00000{bottom:614.265000px;}
.y569_c00000{bottom:614.445000px;}
.yf89_c00000{bottom:614.625000px;}
.y109e_c00000{bottom:614.805000px;}
.y6ef_c00000{bottom:615.165000px;}
.y4ed_c00000{bottom:615.345000px;}
.y11b5_c00000{bottom:615.525000px;}
.y9b9_c00000{bottom:615.705000px;}
.yb97_c00000{bottom:615.885000px;}
.y90d_c00000{bottom:616.065000px;}
.y11fc_c00000{bottom:616.245000px;}
.y4cf_c00000{bottom:616.425000px;}
.y10d_c00000{bottom:616.785000px;}
.y3cb_c00000{bottom:616.965000px;}
.y20a_c00000{bottom:617.145000px;}
.y99_c00000{bottom:617.325000px;}
.y11cf_c00000{bottom:617.505000px;}
.yb7c_c00000{bottom:617.685000px;}
.ybdf_c00000{bottom:617.865000px;}
.y73_c00000{bottom:618.225000px;}
.ydaa_c00000{bottom:618.405000px;}
.y2e7_c00000{bottom:618.585000px;}
.y718_c00000{bottom:618.765000px;}
.ye7_c00000{bottom:618.945000px;}
.y7ff_c00000{bottom:619.125000px;}
.yf0c_c00000{bottom:619.305000px;}
.y6a5_c00000{bottom:619.485000px;}
.y548_c00000{bottom:619.665000px;}
.yf9d_c00000{bottom:619.845000px;}
.y273_c00000{bottom:620.205000px;}
.ydda_c00000{bottom:620.385000px;}
.y324_c00000{bottom:620.565000px;}
.y9e2_c00000{bottom:620.745000px;}
.y517_c00000{bottom:621.105000px;}
.y9e1_c00000{bottom:621.285000px;}
.y938_c00000{bottom:621.645000px;}
.y1186_c00000{bottom:621.660000px;}
.yc27_c00000{bottom:621.825000px;}
.y1095_c00000{bottom:622.005000px;}
.y82d_c00000{bottom:622.185000px;}
.y300_c00000{bottom:622.365000px;}
.yeae_c00000{bottom:622.545000px;}
.yd0a_c00000{bottom:622.725000px;}
.y612_c00000{bottom:622.905000px;}
.y782_c00000{bottom:623.085000px;}
.yb8_c00000{bottom:623.445000px;}
.y674_c00000{bottom:623.805000px;}
.y495_c00000{bottom:623.985000px;}
.y37c_c00000{bottom:624.165000px;}
.y339_c00000{bottom:624.345000px;}
.ye05_c00000{bottom:624.525000px;}
.y95d_c00000{bottom:624.705000px;}
.y8a2_c00000{bottom:624.885000px;}
.y393_c00000{bottom:625.065000px;}
.y12ec_c00000{bottom:625.245000px;}
.yb2f_c00000{bottom:625.425000px;}
.y2b0_c00000{bottom:625.605000px;}
.y3fc_c00000{bottom:625.785000px;}
.yc4f_c00000{bottom:625.965000px;}
.ycde_c00000{bottom:626.145000px;}
.y9a1_c00000{bottom:626.325000px;}
.yc3a_c00000{bottom:626.685000px;}
.yafe_c00000{bottom:626.865000px;}
.y45a_c00000{bottom:627.045000px;}
.y2c9_c00000{bottom:627.585000px;}
.y4b4_c00000{bottom:627.765000px;}
.y889_c00000{bottom:628.305000px;}
.y10_c00000{bottom:628.568640px;}
.ya42_c00000{bottom:628.665000px;}
.y35b_c00000{bottom:628.845000px;}
.y6de_c00000{bottom:629.025000px;}
.y79b_c00000{bottom:629.205000px;}
.y6c1_c00000{bottom:629.385000px;}
.ydfe_c00000{bottom:629.565000px;}
.ye92_c00000{bottom:629.745000px;}
.ybe7_c00000{bottom:629.925000px;}
.ya76_c00000{bottom:630.105000px;}
.ya27_c00000{bottom:630.285000px;}
.y7b5_c00000{bottom:630.645000px;}
.y9d2_c00000{bottom:630.825000px;}
.y7ee_c00000{bottom:631.005000px;}
.y135_c00000{bottom:631.185000px;}
.y1242_c00000{bottom:631.365000px;}
.ye3f_c00000{bottom:631.545000px;}
.y11b3_c00000{bottom:631.725000px;}
.y1281_c00000{bottom:631.905000px;}
.ycdf_c00000{bottom:632.085000px;}
.y1177_c00000{bottom:632.265000px;}
.y1f0_c00000{bottom:632.445000px;}
.y23f_c00000{bottom:632.625000px;}
.yeb6_c00000{bottom:632.805000px;}
.yff3_c00000{bottom:632.985000px;}
.y5c9_c00000{bottom:633.165000px;}
.y252_c00000{bottom:633.525000px;}
.y623_c00000{bottom:633.705000px;}
.y642_c00000{bottom:633.885000px;}
.ye60_c00000{bottom:634.065000px;}
.y412_c00000{bottom:634.245000px;}
.y81b_c00000{bottom:634.425000px;}
.y292_c00000{bottom:634.605000px;}
.yd46_c00000{bottom:634.785000px;}
.ya98_c00000{bottom:634.965000px;}
.y68f_c00000{bottom:635.505000px;}
.y111a_c00000{bottom:635.685000px;}
.yde4_c00000{bottom:635.865000px;}
.y17a_c00000{bottom:636.045000px;}
.y3b3_c00000{bottom:636.225000px;}
.y9f5_c00000{bottom:636.405000px;}
.y568_c00000{bottom:636.585000px;}
.y947_c00000{bottom:636.765000px;}
.yf88_c00000{bottom:636.945000px;}
.y72_c00000{bottom:637.125000px;}
.y109d_c00000{bottom:637.305000px;}
.y6ee_c00000{bottom:637.485000px;}
.y4ec_c00000{bottom:637.665000px;}
.y78f_c00000{bottom:638.025000px;}
.y1312_c00000{bottom:638.205000px;}
.y44_c00000{bottom:638.385000px;}
.yd38_c00000{bottom:638.745000px;}
.y12cc_c00000{bottom:638.925000px;}
.y98_c00000{bottom:639.105000px;}
.y3c9_c00000{bottom:639.285000px;}
.y9b8_c00000{bottom:639.465000px;}
.y116f_c00000{bottom:639.645000px;}
.y2e6_c00000{bottom:639.825000px;}
.y47c_c00000{bottom:640.005000px;}
.y4ce_c00000{bottom:640.185000px;}
.y59f_c00000{bottom:640.545000px;}
.yda9_c00000{bottom:640.725000px;}
.y717_c00000{bottom:641.085000px;}
.ye6_c00000{bottom:641.265000px;}
.yadb_c00000{bottom:641.445000px;}
.yf0b_c00000{bottom:641.805000px;}
.y1345_c00000{bottom:641.985000px;}
.y110a_c00000{bottom:642.165000px;}
.y1153_c00000{bottom:642.345000px;}
.y272_c00000{bottom:642.525000px;}
.y323_c00000{bottom:642.705000px;}
.y7fe_c00000{bottom:642.885000px;}
.yd8f_c00000{bottom:643.245000px;}
.y516_c00000{bottom:643.425000px;}
.y611_c00000{bottom:643.605000px;}
.y9b0_c00000{bottom:643.785000px;}
.yc26_c00000{bottom:644.145000px;}
.y119f_c00000{bottom:644.325000px;}
.yae2_c00000{bottom:644.505000px;}
.y2ff_c00000{bottom:644.685000px;}
.yead_c00000{bottom:644.865000px;}
.yd09_c00000{bottom:645.045000px;}
.y3ca_c00000{bottom:645.225000px;}
.y123a_c00000{bottom:645.405000px;}
.y937_c00000{bottom:645.585000px;}
.y8dc_c00000{bottom:645.945000px;}
.y82c_c00000{bottom:646.125000px;}
.y37b_c00000{bottom:646.305000px;}
.y42b_c00000{bottom:646.485000px;}
.y500_c00000{bottom:646.665000px;}
.y781_c00000{bottom:646.845000px;}
.yfa7_c00000{bottom:647.205000px;}
.yd27_c00000{bottom:647.385000px;}
.y2af_c00000{bottom:647.925000px;}
.y338_c00000{bottom:648.105000px;}
.y867_c00000{bottom:648.285000px;}
.y95c_c00000{bottom:648.465000px;}
.y8a1_c00000{bottom:648.645000px;}
.ya6b_c00000{bottom:648.825000px;}
.y2c8_c00000{bottom:649.005000px;}
.y459_c00000{bottom:649.185000px;}
.yb2e_c00000{bottom:649.365000px;}
.y128f_c00000{bottom:649.545000px;}
.y123d_c00000{bottom:649.725000px;}
.y1167_c00000{bottom:649.905000px;}
.y707_c00000{bottom:650.085000px;}
.y4b3_c00000{bottom:650.265000px;}
.y115f_c00000{bottom:650.445000px;}
.y1a4_c00000{bottom:650.625000px;}
.y11fb_c00000{bottom:650.805000px;}
.y35a_c00000{bottom:650.985000px;}
.y6dd_c00000{bottom:651.345000px;}
.y1073_c00000{bottom:651.525000px;}
.y6c0_c00000{bottom:651.705000px;}
.yfd_c00000{bottom:651.885000px;}
.ye91_c00000{bottom:652.065000px;}
.y494_c00000{bottom:652.245000px;}
.ya41_c00000{bottom:652.425000px;}
.y132d_c00000{bottom:652.605000px;}
.y79a_c00000{bottom:652.965000px;}
.y1ef_c00000{bottom:653.145000px;}
.y221_c00000{bottom:653.325000px;}
.ybe6_c00000{bottom:653.505000px;}
.ya87_c00000{bottom:653.865000px;}
.yf9c_c00000{bottom:654.225000px;}
.y7b4_c00000{bottom:654.405000px;}
.ye6f_c00000{bottom:654.585000px;}
.y7ed_c00000{bottom:654.945000px;}
.y5c8_c00000{bottom:655.305000px;}
.y1080_c00000{bottom:655.485000px;}
.y10eb_c00000{bottom:655.845000px;}
.yef1_c00000{bottom:656.025000px;}
.y71_c00000{bottom:656.205000px;}
.y641_c00000{bottom:656.385000px;}
.y1a5_c00000{bottom:656.565000px;}
.y411_c00000{bottom:656.745000px;}
.y291_c00000{bottom:656.925000px;}
.ya18_c00000{bottom:657.105000px;}
.yd57_c00000{bottom:657.285000px;}
.y8c1_c00000{bottom:657.465000px;}
.yb0c_c00000{bottom:657.645000px;}
.y68e_c00000{bottom:657.825000px;}
.y65a_c00000{bottom:658.185000px;}
.y3e0_c00000{bottom:658.365000px;}
.y24f_c00000{bottom:658.545000px;}
.ya97_c00000{bottom:658.725000px;}
.y567_c00000{bottom:658.905000px;}
.y10b6_c00000{bottom:659.085000px;}
.y222_c00000{bottom:659.265000px;}
.y392_c00000{bottom:659.445000px;}
.ybd9_c00000{bottom:659.625000px;}
.y6ed_c00000{bottom:659.805000px;}
.yca_c00000{bottom:659.985000px;}
.y588_c00000{bottom:660.165000px;}
.y946_c00000{bottom:660.525000px;}
.y2e5_c00000{bottom:660.885000px;}
.y97_c00000{bottom:661.065000px;}
.yd37_c00000{bottom:661.245000px;}
.y156_c00000{bottom:661.425000px;}
.ybc9_c00000{bottom:661.605000px;}
.y78e_c00000{bottom:661.785000px;}
.y11bc_c00000{bottom:661.965000px;}
.y13da_c00000{bottom:662.145000px;}
.y76a_c00000{bottom:662.325000px;}
.y1344_c00000{bottom:662.685000px;}
.y59e_c00000{bottom:662.865000px;}
.yb7_c00000{bottom:663.045000px;}
.y1094_c00000{bottom:663.225000px;}
.y65b_c00000{bottom:663.405000px;}
.y716_c00000{bottom:663.585000px;}
.y8db_c00000{bottom:663.765000px;}
.y271_c00000{bottom:663.945000px;}
.yf0a_c00000{bottom:664.125000px;}
.y610_c00000{bottom:664.305000px;}
.y84f_c00000{bottom:664.665000px;}
.y13c2_c00000{bottom:665.025000px;}
.ya26_c00000{bottom:665.205000px;}
.y1359_c00000{bottom:665.385000px;}
.y134_c00000{bottom:665.565000px;}
.ye31_c00000{bottom:665.745000px;}
.y515_c00000{bottom:665.925000px;}
.y589_c00000{bottom:666.105000px;}
.y981_c00000{bottom:666.285000px;}
.yc25_c00000{bottom:666.465000px;}
.y7fd_c00000{bottom:666.645000px;}
.y1141_c00000{bottom:666.825000px;}
.yd78_c00000{bottom:667.005000px;}
.ybc0_c00000{bottom:667.185000px;}
.yd08_c00000{bottom:667.365000px;}
.yeca_c00000{bottom:667.545000px;}
.yae1_c00000{bottom:668.085000px;}
.yb4a_c00000{bottom:668.265000px;}
.y101a_c00000{bottom:668.445000px;}
.y42a_c00000{bottom:668.625000px;}
.y43f_c00000{bottom:668.805000px;}
.ya75_c00000{bottom:668.985000px;}
.ye04_c00000{bottom:669.165000px;}
.y936_c00000{bottom:669.345000px;}
.ycbe_c00000{bottom:669.525000px;}
.yaa6_c00000{bottom:669.705000px;}
.y82b_c00000{bottom:669.885000px;}
.y1100_c00000{bottom:670.065000px;}
.y2ae_c00000{bottom:670.245000px;}
.y179_c00000{bottom:670.425000px;}
.y9d9_c00000{bottom:670.785000px;}
.ydb8_c00000{bottom:670.965000px;}
.y1c1_c00000{bottom:671.325000px;}
.y1a3_c00000{bottom:671.505000px;}
.y458_c00000{bottom:671.685000px;}
.y337_c00000{bottom:671.865000px;}
.y866_c00000{bottom:672.045000px;}
.y95b_c00000{bottom:672.225000px;}
.y739_c00000{bottom:672.405000px;}
.y4b2_c00000{bottom:672.585000px;}
.yaf1_c00000{bottom:672.765000px;}
.ydcc_c00000{bottom:672.945000px;}
.yb2d_c00000{bottom:673.125000px;}
.y85c_c00000{bottom:673.305000px;}
.yd8e_c00000{bottom:673.485000px;}
.y10c_c00000{bottom:673.665000px;}
.y1ee_c00000{bottom:673.845000px;}
.y220_c00000{bottom:674.025000px;}
.y11dc_c00000{bottom:674.205000px;}
.yafd_c00000{bottom:674.385000px;}
.y124f_c00000{bottom:674.745000px;}
.y70_c00000{bottom:675.105000px;}
.yd98_c00000{bottom:675.465000px;}
.ye5_c00000{bottom:675.825000px;}
.y888_c00000{bottom:676.005000px;}
.ya40_c00000{bottom:676.185000px;}
.y43_c00000{bottom:676.365000px;}
.y11b2_c00000{bottom:676.545000px;}
.y799_c00000{bottom:676.725000px;}
.ye6e_c00000{bottom:676.905000px;}
.y5ad_c00000{bottom:677.085000px;}
.ybe5_c00000{bottom:677.265000px;}
.y322_c00000{bottom:677.445000px;}
.y5c7_c00000{bottom:677.625000px;}
.ya86_c00000{bottom:677.805000px;}
.yb8f_c00000{bottom:677.985000px;}
.y7b3_c00000{bottom:678.165000px;}
.y9b7_c00000{bottom:678.345000px;}
.y622_c00000{bottom:678.705000px;}
.y640_c00000{bottom:678.885000px;}
.y410_c00000{bottom:679.065000px;}
.y290_c00000{bottom:679.245000px;}
.ye28_c00000{bottom:679.425000px;}
.yd45_c00000{bottom:679.605000px;}
.y233_c00000{bottom:679.785000px;}
.yf_c00000{bottom:680.048640px;}
.y68d_c00000{bottom:680.325000px;}
.y659_c00000{bottom:680.505000px;}
.y3df_c00000{bottom:680.685000px;}
.y379_c00000{bottom:680.865000px;}
.yc84_c00000{bottom:681.045000px;}
.y566_c00000{bottom:681.225000px;}
.y8c0_c00000{bottom:681.405000px;}
.y6a4_c00000{bottom:681.585000px;}
.y109c_c00000{bottom:681.765000px;}
.y81a_c00000{bottom:681.945000px;}
.yc9_c00000{bottom:682.125000px;}
.y4eb_c00000{bottom:682.305000px;}
.y6fb_c00000{bottom:682.485000px;}
.y3fb_c00000{bottom:682.665000px;}
.y96_c00000{bottom:682.845000px;}
.y3b2_c00000{bottom:683.745000px;}
.y155_c00000{bottom:683.925000px;}
.y138a_c00000{bottom:684.105000px;}
.y945_c00000{bottom:684.285000px;}
.yf9b_c00000{bottom:684.465000px;}
.y706_c00000{bottom:684.645000px;}
.y60f_c00000{bottom:685.005000px;}
.y2c7_c00000{bottom:685.185000px;}
.yda8_c00000{bottom:685.365000px;}
.y359_c00000{bottom:685.545000px;}
.y715_c00000{bottom:685.725000px;}
.y769_c00000{bottom:686.085000px;}
.y13e3_c00000{bottom:686.445000px;}
.ye90_c00000{bottom:686.625000px;}
.y37a_c00000{bottom:686.805000px;}
.y13f1_c00000{bottom:686.985000px;}
.y1108_c00000{bottom:687.345000px;}
.y8da_c00000{bottom:687.525000px;}
.y133_c00000{bottom:687.705000px;}
.y4cd_c00000{bottom:687.885000px;}
.y5dc_c00000{bottom:688.065000px;}
.y514_c00000{bottom:688.245000px;}
.y84e_c00000{bottom:688.425000px;}
.yc24_c00000{bottom:688.785000px;}
.yb7b_c00000{bottom:689.145000px;}
.yeac_c00000{bottom:689.325000px;}
.yd07_c00000{bottom:689.685000px;}
.y1109_c00000{bottom:689.865000px;}
.y980_c00000{bottom:690.225000px;}
.yaf8_c00000{bottom:690.405000px;}
.y7fc_c00000{bottom:690.585000px;}
.y429_c00000{bottom:690.945000px;}
.y43e_c00000{bottom:691.125000px;}
.y673_c00000{bottom:691.305000px;}
.ye03_c00000{bottom:691.485000px;}
.ycbd_c00000{bottom:691.665000px;}
.y1a2_c00000{bottom:692.025000px;}
.y178_c00000{bottom:692.745000px;}
.y1395_c00000{bottom:692.925000px;}
.y935_c00000{bottom:693.105000px;}
.ye3e_c00000{bottom:693.285000px;}
.y9a0_c00000{bottom:693.465000px;}
.yc39_c00000{bottom:693.645000px;}
.y391_c00000{bottom:693.825000px;}
.y3c8_c00000{bottom:694.005000px;}
.y6f_c00000{bottom:694.185000px;}
.y1ed_c00000{bottom:694.545000px;}
.y21f_c00000{bottom:694.725000px;}
.y4b1_c00000{bottom:694.905000px;}
.y12e4_c00000{bottom:695.085000px;}
.ydcb_c00000{bottom:695.265000px;}
.yd36_c00000{bottom:695.445000px;}
.y336_c00000{bottom:695.625000px;}
.y10b_c00000{bottom:695.805000px;}
.y95a_c00000{bottom:695.985000px;}
.y6dc_c00000{bottom:696.165000px;}
.yb6_c00000{bottom:696.345000px;}
.y99f_c00000{bottom:696.525000px;}
.y1135_c00000{bottom:696.705000px;}
.yb2c_c00000{bottom:696.885000px;}
.y270_c00000{bottom:697.065000px;}
.ye4d_c00000{bottom:697.425000px;}
.yd97_c00000{bottom:697.785000px;}
.yf09_c00000{bottom:698.505000px;}
.y1090_c00000{bottom:698.685000px;}
.y8fc_c00000{bottom:698.865000px;}
.ydb7_c00000{bottom:699.045000px;}
.yd16_c00000{bottom:699.225000px;}
.y10ea_c00000{bottom:699.405000px;}
.ye_c00000{bottom:699.484320px;}
.y321_c00000{bottom:699.585000px;}
.y887_c00000{bottom:699.765000px;}
.y5c6_c00000{bottom:699.945000px;}
.yff2_c00000{bottom:700.125000px;}
.y10d3_c00000{bottom:700.305000px;}
.y798_c00000{bottom:700.665000px;}
.ybe4_c00000{bottom:701.025000px;}
.ye5f_c00000{bottom:701.205000px;}
.y2fe_c00000{bottom:701.385000px;}
.y28f_c00000{bottom:701.565000px;}
.ye27_c00000{bottom:701.745000px;}
.yd44_c00000{bottom:701.925000px;}
.y7b2_c00000{bottom:702.105000px;}
.y6a3_c00000{bottom:702.285000px;}
.y7ec_c00000{bottom:702.465000px;}
.y2e4_c00000{bottom:702.825000px;}
.y378_c00000{bottom:703.005000px;}
.yc83_c00000{bottom:703.365000px;}
.y565_c00000{bottom:703.545000px;}
.yf87_c00000{bottom:703.905000px;}
.y109b_c00000{bottom:704.085000px;}
.y6ec_c00000{bottom:704.445000px;}
.y95_c00000{bottom:704.625000px;}
.y3fa_c00000{bottom:704.805000px;}
.y12fc_c00000{bottom:704.985000px;}
.y8bf_c00000{bottom:705.165000px;}
.y1172_c00000{bottom:705.345000px;}
.yfc7_c00000{bottom:705.525000px;}
.y60e_c00000{bottom:705.705000px;}
.y819_c00000{bottom:705.885000px;}
.y154_c00000{bottom:706.245000px;}
.ya96_c00000{bottom:706.605000px;}
.y705_c00000{bottom:706.785000px;}
.y13d9_c00000{bottom:706.965000px;}
.y1358_c00000{bottom:707.145000px;}
.y3b1_c00000{bottom:707.505000px;}
.ya74_c00000{bottom:707.685000px;}
.y714_c00000{bottom:708.045000px;}
.y82a_c00000{bottom:708.585000px;}
.yf7d_c00000{bottom:708.945000px;}
.y119e_c00000{bottom:709.125000px;}
.y1195_c00000{bottom:709.305000px;}
.y780_c00000{bottom:709.485000px;}
.y13c1_c00000{bottom:709.665000px;}
.y768_c00000{bottom:709.845000px;}
.y132_c00000{bottom:710.025000px;}
.ye4_c00000{bottom:710.205000px;}
.y12cb_c00000{bottom:710.385000px;}
.y513_c00000{bottom:710.565000px;}
.yc23_c00000{bottom:711.105000px;}
.y8d9_c00000{bottom:711.285000px;}
.yd77_c00000{bottom:711.465000px;}
.y1032_c00000{bottom:711.825000px;}
.y85b_c00000{bottom:712.005000px;}
.y84d_c00000{bottom:712.185000px;}
.y10e2_c00000{bottom:712.365000px;}
.y1a1_c00000{bottom:712.905000px;}
.y6e_c00000{bottom:713.085000px;}
.y428_c00000{bottom:713.265000px;}
.y4ff_c00000{bottom:713.445000px;}
.y5ab_c00000{bottom:713.625000px;}
.y672_c00000{bottom:713.805000px;}
.y97f_c00000{bottom:713.985000px;}
.y9c9_c00000{bottom:714.165000px;}
.y42_c00000{bottom:714.345000px;}
.ybbf_c00000{bottom:714.705000px;}
.y177_c00000{bottom:715.065000px;}
.y1ec_c00000{bottom:715.245000px;}
.y21e_c00000{bottom:715.425000px;}
.ye3d_c00000{bottom:715.605000px;}
.yae0_c00000{bottom:715.785000px;}
.yb49_c00000{bottom:715.965000px;}
.y11c9_c00000{bottom:716.145000px;}
.y1257_c00000{bottom:716.505000px;}
.y934_c00000{bottom:716.865000px;}
.y738_c00000{bottom:717.045000px;}
.y4b0_c00000{bottom:717.225000px;}
.y124e_c00000{bottom:717.405000px;}
.yd35_c00000{bottom:717.585000px;}
.y10ff_c00000{bottom:717.765000px;}
.y10a_c00000{bottom:718.125000px;}
.y1280_c00000{bottom:718.305000px;}
.y6db_c00000{bottom:718.485000px;}
.y6bf_c00000{bottom:718.665000px;}
.y5ac_c00000{bottom:718.845000px;}
.yd_c00000{bottom:718.920000px;}
.y26f_c00000{bottom:719.205000px;}
.y335_c00000{bottom:719.385000px;}
.yafc_c00000{bottom:719.565000px;}
.y959_c00000{bottom:719.745000px;}
.y358_c00000{bottom:719.925000px;}
.y8ec_c00000{bottom:720.105000px;}
.ya02_c00000{bottom:720.285000px;}
.yfc_c00000{bottom:720.465000px;}
.yb2b_c00000{bottom:720.645000px;}
.y5db_c00000{bottom:720.825000px;}
.y11b1_c00000{bottom:721.005000px;}
.y22b_c00000{bottom:721.185000px;}
.y5c5_c00000{bottom:721.365000px;}
.y1166_c00000{bottom:721.545000px;}
.y1224_c00000{bottom:721.725000px;}
.y320_c00000{bottom:721.905000px;}
.y4cc_c00000{bottom:722.085000px;}
.y1145_c00000{bottom:722.265000px;}
.y107f_c00000{bottom:722.445000px;}
.y8fb_c00000{bottom:722.805000px;}
.y6a2_c00000{bottom:722.985000px;}
.y944_c00000{bottom:723.165000px;}
.y886_c00000{bottom:723.525000px;}
.y2fd_c00000{bottom:723.705000px;}
.y28e_c00000{bottom:723.885000px;}
.ybc8_c00000{bottom:724.065000px;}
.yd43_c00000{bottom:724.245000px;}
.y47b_c00000{bottom:724.425000px;}
.y1163_c00000{bottom:724.785000px;}
.ybe3_c00000{bottom:724.965000px;}
.ya85_c00000{bottom:725.145000px;}
.y377_c00000{bottom:725.325000px;}
.y2c6_c00000{bottom:725.505000px;}
.yba3_c00000{bottom:725.685000px;}
.y564_c00000{bottom:725.865000px;}
.y9d1_c00000{bottom:726.045000px;}
.y7eb_c00000{bottom:726.225000px;}
.y94_c00000{bottom:726.405000px;}
.y126a_c00000{bottom:726.585000px;}
.y4ea_c00000{bottom:726.945000px;}
.y3f9_c00000{bottom:727.125000px;}
.y1039_c00000{bottom:727.305000px;}
.y1176_c00000{bottom:727.485000px;}
.y390_c00000{bottom:728.025000px;}
.y457_c00000{bottom:728.385000px;}
.y12eb_c00000{bottom:728.745000px;}
.yb5_c00000{bottom:728.925000px;}
.y704_c00000{bottom:729.105000px;}
.y1318_c00000{bottom:729.285000px;}
.y59d_c00000{bottom:729.825000px;}
.y757_c00000{bottom:730.005000px;}
.y713_c00000{bottom:730.365000px;}
.y128a_c00000{bottom:730.560000px;}
.y10d2_c00000{bottom:730.725000px;}
.y3b0_c00000{bottom:731.265000px;}
.y104d_c00000{bottom:731.445000px;}
.y132c_c00000{bottom:731.625000px;}
.y6d_c00000{bottom:731.985000px;}
.y1220_c00000{bottom:732.165000px;}
.ye3_c00000{bottom:732.345000px;}
.y512_c00000{bottom:732.885000px;}
.ye75_c00000{bottom:733.065000px;}
.y77f_c00000{bottom:733.245000px;}
.y1a0_c00000{bottom:733.425000px;}
.y767_c00000{bottom:733.605000px;}
.yd76_c00000{bottom:733.785000px;}
.yde2_c00000{bottom:733.965000px;}
.yb7a_c00000{bottom:734.325000px;}
.yec9_c00000{bottom:734.505000px;}
.y865_c00000{bottom:734.685000px;}
.y1183_c00000{bottom:734.865000px;}
.ycb1_c00000{bottom:735.045000px;}
.y8a0_c00000{bottom:735.225000px;}
.yaa5_c00000{bottom:735.405000px;}
.y493_c00000{bottom:735.585000px;}
.y4fe_c00000{bottom:735.765000px;}
.y1eb_c00000{bottom:735.945000px;}
.y21d_c00000{bottom:736.125000px;}
.y671_c00000{bottom:736.305000px;}
.y10e9_c00000{bottom:736.485000px;}
.y176_c00000{bottom:737.385000px;}
.y2ad_c00000{bottom:737.565000px;}
.y97e_c00000{bottom:737.745000px;}
.y9c8_c00000{bottom:737.925000px;}
.yc38_c00000{bottom:738.285000px;}
.ybbe_c00000{bottom:738.645000px;}
.y8b0_c00000{bottom:739.005000px;}
.yc_c00000{bottom:739.326240px;}
.y737_c00000{bottom:739.365000px;}
.y1287_c00000{bottom:739.380000px;}
.y4af_c00000{bottom:739.545000px;}
.yd34_c00000{bottom:739.905000px;}
.y109_c00000{bottom:740.445000px;}
.y153_c00000{bottom:740.625000px;}
.y6da_c00000{bottom:740.805000px;}
.yf4a_c00000{bottom:740.985000px;}
.y6be_c00000{bottom:741.165000px;}
.y10fe_c00000{bottom:741.525000px;}
.ybd0_c00000{bottom:741.705000px;}
.y135d_c00000{bottom:741.720000px;}
.y26e_c00000{bottom:741.885000px;}
.y357_c00000{bottom:742.065000px;}
.yfb_c00000{bottom:742.605000px;}
.y10e1_c00000{bottom:742.785000px;}
.y334_c00000{bottom:743.325000px;}
.y6a1_c00000{bottom:743.685000px;}
.y8eb_c00000{bottom:743.865000px;}
.y99e_c00000{bottom:744.045000px;}
.y31f_c00000{bottom:744.225000px;}
.y1134_c00000{bottom:744.405000px;}
.y131_c00000{bottom:744.585000px;}
.y107e_c00000{bottom:744.945000px;}
.ya95_c00000{bottom:745.125000px;}
.yef0_c00000{bottom:745.305000px;}
.ydd9_c00000{bottom:745.665000px;}
.ye5e_c00000{bottom:745.845000px;}
.y2fc_c00000{bottom:746.025000px;}
.y2e3_c00000{bottom:746.205000px;}
.y63f_c00000{bottom:746.385000px;}
.y658_c00000{bottom:746.565000px;}
.y134c_c00000{bottom:746.745000px;}
.yea1_c00000{bottom:746.925000px;}
.y60d_c00000{bottom:747.105000px;}
.yf36_c00000{bottom:747.285000px;}
.y829_c00000{bottom:747.465000px;}
.y376_c00000{bottom:747.645000px;}
.y68c_c00000{bottom:747.825000px;}
.y427_c00000{bottom:748.005000px;}
.y563_c00000{bottom:748.185000px;}
.y841_c00000{bottom:748.365000px;}
.yf86_c00000{bottom:748.545000px;}
.ybe2_c00000{bottom:748.725000px;}
.ya84_c00000{bottom:748.905000px;}
.y573_c00000{bottom:749.265000px;}
.y3f8_c00000{bottom:749.445000px;}
.y7b1_c00000{bottom:749.625000px;}
.yee5_c00000{bottom:749.985000px;}
.y7ea_c00000{bottom:750.165000px;}
.y456_c00000{bottom:750.705000px;}
.y85a_c00000{bottom:750.885000px;}
.yc8_c00000{bottom:751.065000px;}
.yffc_c00000{bottom:751.080000px;}
.y6c_c00000{bottom:751.245000px;}
.y703_c00000{bottom:751.425000px;}
.y13d8_c00000{bottom:751.605000px;}
.y41_c00000{bottom:752.145000px;}
.y59c_c00000{bottom:752.505000px;}
.y712_c00000{bottom:752.685000px;}
.y7fb_c00000{bottom:753.045000px;}
.y1261_c00000{bottom:753.765000px;}
.y1152_c00000{bottom:754.125000px;}
.y19f_c00000{bottom:754.305000px;}
.y839_c00000{bottom:754.485000px;}
.ye2_c00000{bottom:754.665000px;}
.y5c4_c00000{bottom:754.845000px;}
.y766_c00000{bottom:755.025000px;}
.y3af_c00000{bottom:755.205000px;}
.yd30_c00000{bottom:755.385000px;}
.y933_c00000{bottom:755.745000px;}
.yd75_c00000{bottom:756.285000px;}
.y1ea_c00000{bottom:756.645000px;}
.y23e_c00000{bottom:756.825000px;}
.y77e_c00000{bottom:757.005000px;}
.y127f_c00000{bottom:757.185000px;}
.y1263_c00000{bottom:757.545000px;}
.yc94_c00000{bottom:757.905000px;}
.y492_c00000{bottom:758.085000px;}
.y28d_c00000{bottom:758.265000px;}
.y864_c00000{bottom:758.445000px;}
.y93d_c00000{bottom:758.460000px;}
.y92a_c00000{bottom:758.625000px;}
.y670_c00000{bottom:758.805000px;}
.y89f_c00000{bottom:758.985000px;}
.yaa4_c00000{bottom:759.165000px;}
.yb_c00000{bottom:759.479760px;}
.y175_c00000{bottom:759.705000px;}
.y2c4_c00000{bottom:759.885000px;}
.yc4e_c00000{bottom:760.065000px;}
.yc81_c00000{bottom:760.245000px;}
.y1329_c00000{bottom:760.425000px;}
.y109a_c00000{bottom:760.965000px;}
.yb4_c00000{bottom:761.325000px;}
.y97d_c00000{bottom:761.505000px;}
.y9c7_c00000{bottom:761.685000px;}
.y4ae_c00000{bottom:761.865000px;}
.y112c_c00000{bottom:762.045000px;}
.y112a_c00000{bottom:762.060000px;}
.y38f_c00000{bottom:762.405000px;}
.y125b_c00000{bottom:762.585000px;}
.y13ed_c00000{bottom:762.765000px;}
.y13ee_c00000{bottom:762.780000px;}
.y108_c00000{bottom:762.945000px;}
.y6d9_c00000{bottom:763.125000px;}
.yadf_c00000{bottom:763.305000px;}
.y6bd_c00000{bottom:763.485000px;}
.y110f_c00000{bottom:763.665000px;}
.yb1a_c00000{bottom:764.205000px;}
.y356_c00000{bottom:764.385000px;}
.yd96_c00000{bottom:764.745000px;}
.y1248_c00000{bottom:764.925000px;}
.yfa_c00000{bottom:765.105000px;}
.y6a0_c00000{bottom:765.285000px;}
.yfdc_c00000{bottom:765.465000px;}
.y5fc_c00000{bottom:765.645000px;}
.y2c5_c00000{bottom:765.825000px;}
.y10a8_c00000{bottom:766.005000px;}
.yc82_c00000{bottom:766.185000px;}
.ycc4_c00000{bottom:766.365000px;}
.y4cb_c00000{bottom:766.545000px;}
.y478_c00000{bottom:766.560000px;}
.y31e_c00000{bottom:766.725000px;}
.y10a6_c00000{bottom:766.740000px;}
.y11d2_c00000{bottom:766.905000px;}
.y333_c00000{bottom:767.085000px;}
.y107d_c00000{bottom:767.265000px;}
.y958_c00000{bottom:767.445000px;}
.y134b_c00000{bottom:767.625000px;}
.y60c_c00000{bottom:767.805000px;}
.ya01_c00000{bottom:767.985000px;}
.ycb0_c00000{bottom:768.165000px;}
.y2e2_c00000{bottom:768.345000px;}
.yd56_c00000{bottom:768.705000px;}
.y63e_c00000{bottom:768.885000px;}
.y1015_c00000{bottom:769.065000px;}
.y12d9_c00000{bottom:769.605000px;}
.y375_c00000{bottom:769.965000px;}
.y6b_c00000{bottom:770.145000px;}
.y93_c00000{bottom:770.325000px;}
.y562_c00000{bottom:770.505000px;}
.ycbc_c00000{bottom:770.865000px;}
.y13a6_c00000{bottom:771.045000px;}
.ya3f_c00000{bottom:771.405000px;}
.y572_c00000{bottom:771.585000px;}
.y756_c00000{bottom:771.765000px;}
.y797_c00000{bottom:771.945000px;}
.y840_c00000{bottom:772.125000px;}
.y1175_c00000{bottom:772.665000px;}
.y121d_c00000{bottom:772.845000px;}
.y10f5_c00000{bottom:773.025000px;}
.yc7_c00000{bottom:773.205000px;}
.y7b0_c00000{bottom:773.385000px;}
.y702_c00000{bottom:773.745000px;}
.y736_c00000{bottom:773.925000px;}
.y12df_c00000{bottom:774.105000px;}
.y11ca_c00000{bottom:774.465000px;}
.y3c7_c00000{bottom:774.645000px;}
.y19e_c00000{bottom:774.825000px;}
.y711_c00000{bottom:775.005000px;}
.y100e_c00000{bottom:775.365000px;}
.y542_c00000{bottom:775.545000px;}
.ydd8_c00000{bottom:776.085000px;}
.y730_c00000{bottom:776.100000px;}
.yf54_c00000{bottom:776.445000px;}
.y8be_c00000{bottom:776.625000px;}
.y5c3_c00000{bottom:776.985000px;}
.y724_c00000{bottom:777.165000px;}
.y208_c00000{bottom:777.345000px;}
.y24e_c00000{bottom:777.525000px;}
.y11b0_c00000{bottom:777.885000px;}
.yc22_c00000{bottom:778.065000px;}
.y11c7_c00000{bottom:778.245000px;}
.y130_c00000{bottom:778.785000px;}
.y3ae_c00000{bottom:778.965000px;}
.yd06_c00000{bottom:779.145000px;}
.yfe9_c00000{bottom:779.325000px;}
.yded_c00000{bottom:779.505000px;}
.y9b6_c00000{bottom:779.685000px;}
.y93b_c00000{bottom:779.700000px;}
.ye09_c00000{bottom:779.865000px;}
.ya94_c00000{bottom:780.045000px;}
.yc93_c00000{bottom:780.225000px;}
.y491_c00000{bottom:780.405000px;}
.y28c_c00000{bottom:780.585000px;}
.y77d_c00000{bottom:780.765000px;}
.yd86_c00000{bottom:780.945000px;}
.ybc6_c00000{bottom:780.960000px;}
.ye7b_c00000{bottom:781.140000px;}
.y66f_c00000{bottom:781.305000px;}
.yb48_c00000{bottom:781.845000px;}
.y174_c00000{bottom:782.025000px;}
.y26d_c00000{bottom:782.205000px;}
.y929_c00000{bottom:782.385000px;}
.yb11_c00000{bottom:782.565000px;}
.y89e_c00000{bottom:782.745000px;}
.yaa3_c00000{bottom:782.925000px;}
.y1112_c00000{bottom:783.105000px;}
.y818_c00000{bottom:783.465000px;}
.y4e9_c00000{bottom:783.645000px;}
.y1343_c00000{bottom:783.825000px;}
.y3f7_c00000{bottom:784.005000px;}
.y4ad_c00000{bottom:784.185000px;}
.yee4_c00000{bottom:784.365000px;}
.y13b2_c00000{bottom:784.725000px;}
.ye4f_c00000{bottom:785.085000px;}
.y107_c00000{bottom:785.265000px;}
.y6d8_c00000{bottom:785.445000px;}
.yf49_c00000{bottom:785.625000px;}
.y6bc_c00000{bottom:785.805000px;}
.y110d_c00000{bottom:786.165000px;}
.ybb0_c00000{bottom:786.525000px;}
.ye4c_c00000{bottom:786.705000px;}
.y355_c00000{bottom:786.885000px;}
.yd95_c00000{bottom:787.065000px;}
.ybe1_c00000{bottom:787.425000px;}
.y1093_c00000{bottom:787.440000px;}
.y10ce_c00000{bottom:787.785000px;}
.yda3_c00000{bottom:787.965000px;}
.y134a_c00000{bottom:788.145000px;}
.y1241_c00000{bottom:788.325000px;}
.y60b_c00000{bottom:788.505000px;}
.y8ea_c00000{bottom:788.685000px;}
.y7e9_c00000{bottom:788.865000px;}
.y6a_c00000{bottom:789.045000px;}
.ye1_c00000{bottom:789.225000px;}
.ybb5_c00000{bottom:789.240000px;}
.y5fb_c00000{bottom:789.405000px;}
.y859_c00000{bottom:789.585000px;}
.y40_c00000{bottom:790.125000px;}
.y511_c00000{bottom:790.305000px;}
.ye5d_c00000{bottom:790.485000px;}
.y2e0_c00000{bottom:790.665000px;}
.y332_c00000{bottom:790.845000px;}
.ye21_c00000{bottom:791.025000px;}
.y957_c00000{bottom:791.205000px;}
.y63d_c00000{bottom:791.385000px;}
.y8ee_c00000{bottom:791.565000px;}
.yb8e_c00000{bottom:791.745000px;}
.y1133_c00000{bottom:791.925000px;}
.y127e_c00000{bottom:792.105000px;}
.y374_c00000{bottom:792.285000px;}
.y426_c00000{bottom:792.465000px;}
.yca4_c00000{bottom:792.645000px;}
.y68b_c00000{bottom:792.825000px;}
.yd42_c00000{bottom:793.005000px;}
.y6eb_c00000{bottom:793.905000px;}
.y571_c00000{bottom:794.085000px;}
.y743_c00000{bottom:794.265000px;}
.ya3e_c00000{bottom:795.165000px;}
.yc6_c00000{bottom:795.525000px;}
.y19d_c00000{bottom:795.705000px;}
.y796_c00000{bottom:795.885000px;}
.y701_c00000{bottom:796.065000px;}
.y1c0_c00000{bottom:796.425000px;}
.y2e1_c00000{bottom:796.605000px;}
.y1270_c00000{bottom:796.620000px;}
.y38e_c00000{bottom:796.785000px;}
.y59b_c00000{bottom:796.965000px;}
.y7af_c00000{bottom:797.145000px;}
.ya_c00000{bottom:797.451840px;}
.y30_c00000{bottom:797.685000px;}
.y56b_c00000{bottom:797.865000px;}
.y1e9_c00000{bottom:798.045000px;}
.yb3_c00000{bottom:798.225000px;}
.yfc2_c00000{bottom:798.765000px;}
.y5c2_c00000{bottom:799.305000px;}
.y1410_c00000{bottom:799.485000px;}
.y10ca_c00000{bottom:799.665000px;}
.y13cb_c00000{bottom:799.845000px;}
.y1341_c00000{bottom:800.205000px;}
.y8bd_c00000{bottom:800.385000px;}
.y31d_c00000{bottom:800.925000px;}
.y12f_c00000{bottom:801.105000px;}
.ycbb_c00000{bottom:801.285000px;}
.y7f7_c00000{bottom:801.465000px;}
.yb0a_c00000{bottom:801.645000px;}
.yade_c00000{bottom:802.185000px;}
.yd15_c00000{bottom:802.365000px;}
.yc92_c00000{bottom:802.545000px;}
.y3ad_c00000{bottom:802.725000px;}
.y28b_c00000{bottom:802.905000px;}
.yc67_c00000{bottom:803.085000px;}
.yf23_c00000{bottom:803.265000px;}
.y121a_c00000{bottom:803.445000px;}
.y66e_c00000{bottom:803.805000px;}
.y23d_c00000{bottom:803.985000px;}
.y13ec_c00000{bottom:804.165000px;}
.y173_c00000{bottom:804.345000px;}
.yb15_c00000{bottom:804.525000px;}
.y77c_c00000{bottom:804.705000px;}
.ye3c_c00000{bottom:804.885000px;}
.y561_c00000{bottom:805.065000px;}
.y12ce_c00000{bottom:805.425000px;}
.y4e8_c00000{bottom:805.785000px;}
.y863_c00000{bottom:805.965000px;}
.y3f6_c00000{bottom:806.145000px;}
.y722_c00000{bottom:806.325000px;}
.y4ac_c00000{bottom:806.505000px;}
.ya21_c00000{bottom:806.685000px;}
.yf71_c00000{bottom:806.865000px;}
.y84c_c00000{bottom:807.225000px;}
.y106_c00000{bottom:807.585000px;}
.y6d7_c00000{bottom:807.765000px;}
.y69_c00000{bottom:807.945000px;}
.y6bb_c00000{bottom:808.125000px;}
.y11d7_c00000{bottom:808.320000px;}
.y12fb_c00000{bottom:808.485000px;}
.y477_c00000{bottom:808.665000px;}
.y1349_c00000{bottom:808.845000px;}
.y12de_c00000{bottom:809.025000px;}
.y354_c00000{bottom:809.205000px;}
.y9c6_c00000{bottom:809.385000px;}
.y710_c00000{bottom:809.565000px;}
.y52c_c00000{bottom:810.285000px;}
.y1127_c00000{bottom:810.300000px;}
.y10fd_c00000{bottom:810.465000px;}
.yf93_c00000{bottom:810.480000px;}
.y107c_c00000{bottom:811.005000px;}
.y932_c00000{bottom:811.185000px;}
.ye02_c00000{bottom:811.365000px;}
.y4ca_c00000{bottom:811.545000px;}
.yf77_c00000{bottom:811.905000px;}
.yfe0_c00000{bottom:812.085000px;}
.y69f_c00000{bottom:812.265000px;}
.yde3_c00000{bottom:812.445000px;}
.y12d0_c00000{bottom:812.460000px;}
.y12ea_c00000{bottom:812.625000px;}
.ye5c_c00000{bottom:812.805000px;}
.y2df_c00000{bottom:812.985000px;}
.y5f9_c00000{bottom:813.165000px;}
.y1432_c00000{bottom:813.345000px;}
.yb2a_c00000{bottom:813.525000px;}
.y63c_c00000{bottom:813.885000px;}
.y1174_c00000{bottom:814.065000px;}
.y1394_c00000{bottom:814.245000px;}
.y331_c00000{bottom:814.605000px;}
.y425_c00000{bottom:814.785000px;}
.y956_c00000{bottom:814.965000px;}
.yca3_c00000{bottom:815.145000px;}
.y68a_c00000{bottom:815.325000px;}
.ya00_c00000{bottom:815.505000px;}
.y7fa_c00000{bottom:815.685000px;}
.y6ea_c00000{bottom:816.225000px;}
.y19c_c00000{bottom:816.405000px;}
.y26c_c00000{bottom:816.585000px;}
.y103d_c00000{bottom:817.305000px;}
.y455_c00000{bottom:817.845000px;}
.y9f4_c00000{bottom:818.025000px;}
.y700_c00000{bottom:818.385000px;}
.y1e8_c00000{bottom:818.745000px;}
.y24d_c00000{bottom:818.925000px;}
.y59a_c00000{bottom:819.285000px;}
.yda7_c00000{bottom:819.465000px;}
.y78d_c00000{bottom:819.645000px;}
.y83f_c00000{bottom:819.825000px;}
.y765_c00000{bottom:820.005000px;}
.yb2_c00000{bottom:820.185000px;}
.y1045_c00000{bottom:820.365000px;}
.y373_c00000{bottom:820.545000px;}
.y490_c00000{bottom:820.725000px;}
.y90a_c00000{bottom:820.905000px;}
.y7ae_c00000{bottom:821.085000px;}
.ybaf_c00000{bottom:821.265000px;}
.y5c1_c00000{bottom:821.625000px;}
.yc21_c00000{bottom:821.805000px;}
.y817_c00000{bottom:822.165000px;}
.y570_c00000{bottom:822.345000px;}
.ye76_c00000{bottom:822.885000px;}
.y31c_c00000{bottom:823.065000px;}
.ye0_c00000{bottom:823.605000px;}
.y7e8_c00000{bottom:823.785000px;}
.ye8f_c00000{bottom:823.965000px;}
.y8bc_c00000{bottom:824.145000px;}
.y106a_c00000{bottom:824.160000px;}
.y97c_c00000{bottom:824.325000px;}
.yc91_c00000{bottom:824.865000px;}
.y28a_c00000{bottom:825.045000px;}
.y40f_c00000{bottom:825.225000px;}
.y2fb_c00000{bottom:825.405000px;}
.yd55_c00000{bottom:825.585000px;}
.y1416_c00000{bottom:825.945000px;}
.y66d_c00000{bottom:826.305000px;}
.y3ac_c00000{bottom:826.485000px;}
.y172_c00000{bottom:826.665000px;}
.y68_c00000{bottom:826.845000px;}
.yc4d_c00000{bottom:827.025000px;}
.ye12_c00000{bottom:827.205000px;}
.yd41_c00000{bottom:827.385000px;}
.y3f_c00000{bottom:828.105000px;}
.y3f5_c00000{bottom:828.465000px;}
.y1311_c00000{bottom:828.645000px;}
.y4ab_c00000{bottom:828.825000px;}
.y12fa_c00000{bottom:829.185000px;}
.y1386_c00000{bottom:829.365000px;}
.y1306_c00000{bottom:829.545000px;}
.y12e6_c00000{bottom:829.725000px;}
.y105_c00000{bottom:829.905000px;}
.yc5_c00000{bottom:830.085000px;}
.y89d_c00000{bottom:830.265000px;}
.y6ba_c00000{bottom:830.445000px;}
.yedd_c00000{bottom:830.460000px;}
.y1132_c00000{bottom:830.625000px;}
.y80f_c00000{bottom:830.820000px;}
.y84b_c00000{bottom:830.985000px;}
.y882_c00000{bottom:831.000000px;}
.y38d_c00000{bottom:831.165000px;}
.y353_c00000{bottom:831.525000px;}
.y13d7_c00000{bottom:832.245000px;}
.y126e_c00000{bottom:832.605000px;}
.y582_c00000{bottom:832.785000px;}
.y8fa_c00000{bottom:832.965000px;}
.ye13_c00000{bottom:833.145000px;}
.yf9_c00000{bottom:833.865000px;}
.yd5a_c00000{bottom:834.060000px;}
.y13b8_c00000{bottom:834.225000px;}
.y13ca_c00000{bottom:834.405000px;}
.y69e_c00000{bottom:834.765000px;}
.y12e_c00000{bottom:835.485000px;}
.y9_c00000{bottom:835.606080px;}
.y13ff_c00000{bottom:835.665000px;}
.yec8_c00000{bottom:835.845000px;}
.y63b_c00000{bottom:836.385000px;}
.y5f6_c00000{bottom:836.925000px;}
.y19b_c00000{bottom:837.105000px;}
.y424_c00000{bottom:837.285000px;}
.yca2_c00000{bottom:837.465000px;}
.yc76_c00000{bottom:837.645000px;}
.y1bf_c00000{bottom:838.005000px;}
.y6e9_c00000{bottom:838.545000px;}
.y26b_c00000{bottom:838.725000px;}
.y955_c00000{bottom:838.905000px;}
.y8d0_c00000{bottom:839.085000px;}
.y999_c00000{bottom:839.265000px;}
.yf51_c00000{bottom:839.280000px;}
.y92_c00000{bottom:839.445000px;}
.y762_c00000{bottom:839.460000px;}
.y2f_c00000{bottom:839.625000px;}
.y141e_c00000{bottom:839.820000px;}
.y70f_c00000{bottom:839.985000px;}
.y11c6_c00000{bottom:840.345000px;}
.yeda_c00000{bottom:840.525000px;}
.y6ff_c00000{bottom:840.885000px;}
.y11af_c00000{bottom:841.065000px;}
.y599_c00000{bottom:841.605000px;}
.y9f3_c00000{bottom:841.785000px;}
.yb1_c00000{bottom:841.965000px;}
.yb79_c00000{bottom:842.325000px;}
.yb8a_c00000{bottom:842.505000px;}
.y78c_c00000{bottom:843.405000px;}
.y83e_c00000{bottom:843.585000px;}
.y5c0_c00000{bottom:843.945000px;}
.y99a_c00000{bottom:844.485000px;}
.y7ad_c00000{bottom:844.845000px;}
.ya04_c00000{bottom:845.025000px;}
.y119d_c00000{bottom:845.205000px;}
.y232_c00000{bottom:845.385000px;}
.ydf_c00000{bottom:845.745000px;}
.y67_c00000{bottom:845.925000px;}
.y816_c00000{bottom:846.105000px;}
.yd05_c00000{bottom:846.285000px;}
.y1328_c00000{bottom:846.465000px;}
.yc90_c00000{bottom:847.185000px;}
.ye5b_c00000{bottom:847.410000px;}
.y2fa_c00000{bottom:847.590000px;}
.y2de_c00000{bottom:847.770000px;}
.y875_c00000{bottom:847.950000px;}
.y973_c00000{bottom:848.130000px;}
.yfdb_c00000{bottom:848.295000px;}
.yfda_c00000{bottom:848.310000px;}
.y66c_c00000{bottom:848.850000px;}
.ya4f_c00000{bottom:849.015000px;}
.y171_c00000{bottom:849.030000px;}
.y330_c00000{bottom:849.210000px;}
.y4fd_c00000{bottom:849.390000px;}
.ye3b_c00000{bottom:849.570000px;}
.y12f9_c00000{bottom:849.930000px;}
.y1385_c00000{bottom:850.110000px;}
.y1305_c00000{bottom:850.290000px;}
.y1374_c00000{bottom:850.455000px;}
.y3ab_c00000{bottom:850.470000px;}
.ye7d_c00000{bottom:850.650000px;}
.y476_c00000{bottom:850.815000px;}
.y3f4_c00000{bottom:850.830000px;}
.y4aa_c00000{bottom:851.190000px;}
.yf3e_c00000{bottom:851.355000px;}
.y38c_c00000{bottom:851.550000px;}
.yc4_c00000{bottom:852.270000px;}
.y151_c00000{bottom:852.450000px;}
.y1072_c00000{bottom:852.630000px;}
.ye67_c00000{bottom:852.795000px;}
.y1173_c00000{bottom:852.990000px;}
.y352_c00000{bottom:853.710000px;}
.y928_c00000{bottom:853.890000px;}
.y89c_c00000{bottom:854.250000px;}
.yaa2_c00000{bottom:854.430000px;}
.y7f9_c00000{bottom:854.610000px;}
.y138e_c00000{bottom:854.775000px;}
.y2c3_c00000{bottom:854.970000px;}
.y3c6_c00000{bottom:855.150000px;}
.yd26_c00000{bottom:855.330000px;}
.y13c0_c00000{bottom:855.495000px;}
.y13bf_c00000{bottom:855.510000px;}
.yf8_c00000{bottom:856.050000px;}
.y9fd_c00000{bottom:856.770000px;}
.y1363_c00000{bottom:857.295000px;}
.y69d_c00000{bottom:857.310000px;}
.y12d_c00000{bottom:857.670000px;}
.yba0_c00000{bottom:857.850000px;}
.ya3d_c00000{bottom:858.030000px;}
.y13fe_c00000{bottom:858.210000px;}
.y152_c00000{bottom:858.390000px;}
.y1126_c00000{bottom:858.735000px;}
.y1125_c00000{bottom:858.750000px;}
.y63a_c00000{bottom:858.930000px;}
.yfeb_c00000{bottom:859.275000px;}
.y372_c00000{bottom:859.470000px;}
.y423_c00000{bottom:859.650000px;}
.y289_c00000{bottom:859.830000px;}
.yd54_c00000{bottom:860.010000px;}
.y1e7_c00000{bottom:860.190000px;}
.y21b_c00000{bottom:860.370000px;}
.y6e8_c00000{bottom:860.910000px;}
.y26a_c00000{bottom:861.090000px;}
.y554_c00000{bottom:861.270000px;}
.yd40_c00000{bottom:861.810000px;}
.y4e7_c00000{bottom:862.710000px;}
.y6fe_c00000{bottom:863.070000px;}
.y998_c00000{bottom:863.250000px;}
.y598_c00000{bottom:864.150000px;}
.y140f_c00000{bottom:864.330000px;}
.y66_c00000{bottom:864.870000px;}
.y6b9_c00000{bottom:865.050000px;}
.y1131_c00000{bottom:865.590000px;}
.y13c7_c00000{bottom:865.950000px;}
.y3e_c00000{bottom:866.130000px;}
.y21c_c00000{bottom:866.310000px;}
.ye8e_c00000{bottom:866.475000px;}
.y555_c00000{bottom:867.210000px;}
.yd94_c00000{bottom:867.750000px;}
.y31b_c00000{bottom:867.930000px;}
.yde_c00000{bottom:868.110000px;}
.y12aa_c00000{bottom:868.275000px;}
.yd04_c00000{bottom:868.470000px;}
.y7ac_c00000{bottom:868.650000px;}
.y13c9_c00000{bottom:868.830000px;}
.ya06_c00000{bottom:869.010000px;}
.yc8f_c00000{bottom:869.730000px;}
.y2dd_c00000{bottom:869.910000px;}
.yc66_c00000{bottom:870.090000px;}
.yd85_c00000{bottom:870.270000px;}
.y11ad_c00000{bottom:870.450000px;}
.y12f8_c00000{bottom:870.630000px;}
.y510_c00000{bottom:870.810000px;}
.yed9_c00000{bottom:870.990000px;}
.y60a_c00000{bottom:871.170000px;}
.y170_c00000{bottom:871.350000px;}
.y4fc_c00000{bottom:871.530000px;}
.y138f_c00000{bottom:871.695000px;}
.yb47_c00000{bottom:871.710000px;}
.y8bb_c00000{bottom:871.890000px;}
.y97b_c00000{bottom:872.070000px;}
.y10fc_c00000{bottom:872.775000px;}
.y10fb_c00000{bottom:872.790000px;}
.yf48_c00000{bottom:872.970000px;}
.y3f3_c00000{bottom:873.150000px;}
.y8_c00000{bottom:873.760320px;}
.y3aa_c00000{bottom:874.230000px;}
.yb0_c00000{bottom:874.410000px;}
.yc3_c00000{bottom:874.590000px;}
.yc1f_c00000{bottom:874.755000px;}
.y14f_c00000{bottom:874.770000px;}
.y1071_c00000{bottom:874.950000px;}
.y118d_c00000{bottom:875.670000px;}
.yb29_c00000{bottom:875.835000px;}
.yb28_c00000{bottom:875.850000px;}
.y351_c00000{bottom:876.030000px;}
.y11ae_c00000{bottom:876.390000px;}
.yf85_c00000{bottom:877.095000px;}
.yf84_c00000{bottom:877.110000px;}
.yb78_c00000{bottom:877.290000px;}
.y927_c00000{bottom:877.650000px;}
.yce8_c00000{bottom:877.830000px;}
.yf25_c00000{bottom:877.995000px;}
.y89b_c00000{bottom:878.010000px;}
.yaa1_c00000{bottom:878.190000px;}
.y19a_c00000{bottom:878.370000px;}
.y1065_c00000{bottom:878.550000px;}
.y5f5_c00000{bottom:878.910000px;}
.ycdb_c00000{bottom:879.255000px;}
.y12e9_c00000{bottom:879.270000px;}
.y1be_c00000{bottom:879.810000px;}
.y150_c00000{bottom:879.990000px;}
.y1354_c00000{bottom:880.155000px;}
.y13fd_c00000{bottom:880.530000px;}
.y13e9_c00000{bottom:880.695000px;}
.y9f2_c00000{bottom:880.710000px;}
.y1e6_c00000{bottom:880.890000px;}
.y206_c00000{bottom:881.070000px;}
.y689_c00000{bottom:881.250000px;}
.y639_c00000{bottom:881.430000px;}
.y1181_c00000{bottom:881.775000px;}
.y371_c00000{bottom:881.790000px;}
.y137f_c00000{bottom:881.955000px;}
.y288_c00000{bottom:881.970000px;}
.yc75_c00000{bottom:882.150000px;}
.yf03_c00000{bottom:882.315000px;}
.yd68_c00000{bottom:882.330000px;}
.yea6_c00000{bottom:882.510000px;}
.y1182_c00000{bottom:883.035000px;}
.y91_c00000{bottom:883.230000px;}
.y269_c00000{bottom:883.410000px;}
.y38b_c00000{bottom:883.590000px;}
.y65_c00000{bottom:884.130000px;}
.y4e6_c00000{bottom:884.850000px;}
.yd1e_c00000{bottom:885.570000px;}
.y4a9_c00000{bottom:885.750000px;}
.y207_c00000{bottom:886.290000px;}
.y954_c00000{bottom:886.470000px;}
.y122c_c00000{bottom:886.635000px;}
.y8cf_c00000{bottom:886.830000px;}
.y997_c00000{bottom:887.010000px;}
.y50f_c00000{bottom:887.190000px;}
.y13de_c00000{bottom:887.730000px;}
.y1327_c00000{bottom:887.910000px;}
.y5bf_c00000{bottom:888.630000px;}
.y122f_c00000{bottom:888.975000px;}
.y1191_c00000{bottom:888.990000px;}
.y13e8_c00000{bottom:889.335000px;}
.y7f8_c00000{bottom:889.350000px;}
.y2e_c00000{bottom:889.530000px;}
.yfd9_c00000{bottom:889.695000px;}
.yfd8_c00000{bottom:889.710000px;}
.y13ea_c00000{bottom:889.890000px;}
.y108f_c00000{bottom:890.070000px;}
.ydd_c00000{bottom:890.430000px;}
.y1239_c00000{bottom:890.970000px;}
.y78b_c00000{bottom:891.150000px;}
.y12f7_c00000{bottom:891.330000px;}
.y1384_c00000{bottom:891.510000px;}
.y1304_c00000{bottom:891.690000px;}
.y1024_c00000{bottom:891.855000px;}
.y609_c00000{bottom:891.870000px;}
.yd22_c00000{bottom:892.035000px;}
.yc8e_c00000{bottom:892.050000px;}
.y12c_c00000{bottom:892.230000px;}
.y7ab_c00000{bottom:892.410000px;}
.ydf6_c00000{bottom:892.590000px;}
.ya05_c00000{bottom:892.770000px;}
.y475_c00000{bottom:892.950000px;}
.y16f_c00000{bottom:893.670000px;}
.y2ac_c00000{bottom:893.850000px;}
.y758_c00000{bottom:894.030000px;}
.yb46_c00000{bottom:894.210000px;}
.yd52_c00000{bottom:894.390000px;}
.ydaf_c00000{bottom:894.735000px;}
.y3f2_c00000{bottom:895.470000px;}
.y8ba_c00000{bottom:895.650000px;}
.y97a_c00000{bottom:895.830000px;}
.y454_c00000{bottom:896.730000px;}
.yc2_c00000{bottom:896.910000px;}
.y10bf_c00000{bottom:897.075000px;}
.y6d6_c00000{bottom:897.090000px;}
.y6fd_c00000{bottom:897.630000px;}
.y122b_c00000{bottom:897.795000px;}
.y3a9_c00000{bottom:897.990000px;}
.y120e_c00000{bottom:898.515000px;}
.y597_c00000{bottom:898.530000px;}
.y199_c00000{bottom:899.070000px;}
.y107a_c00000{bottom:899.595000px;}
.y4c9_c00000{bottom:899.790000px;}
.y77b_c00000{bottom:899.970000px;}
.y120a_c00000{bottom:900.135000px;}
.yd53_c00000{bottom:900.330000px;}
.y1bd_c00000{bottom:900.510000px;}
.y9fc_c00000{bottom:901.050000px;}
.y926_c00000{bottom:901.410000px;}
.y1e5_c00000{bottom:901.590000px;}
.y205_c00000{bottom:901.770000px;}
.y129f_c00000{bottom:901.935000px;}
.yaa0_c00000{bottom:901.950000px;}
.y69c_c00000{bottom:902.310000px;}
.y13fc_c00000{bottom:902.850000px;}
.y64_c00000{bottom:903.030000px;}
.y6f7_c00000{bottom:903.195000px;}
.y1083_c00000{bottom:903.375000px;}
.y638_c00000{bottom:903.930000px;}
.y3de_c00000{bottom:904.110000px;}
.y287_c00000{bottom:904.290000px;}
.y9f1_c00000{bottom:904.470000px;}
.ye4b_c00000{bottom:904.650000px;}
.y268_c00000{bottom:905.730000px;}
.y734_c00000{bottom:905.910000px;}
.y1124_c00000{bottom:906.975000px;}
.yaf_c00000{bottom:906.990000px;}
.y4e5_c00000{bottom:907.170000px;}
.y8e9_c00000{bottom:907.710000px;}
.y4a8_c00000{bottom:907.890000px;}
.y84a_c00000{bottom:908.610000px;}
.y3d_c00000{bottom:909.330000px;}
.y50e_c00000{bottom:909.510000px;}
.y13be_c00000{bottom:909.870000px;}
.y8ce_c00000{bottom:910.590000px;}
.y996_c00000{bottom:910.770000px;}
.y5be_c00000{bottom:910.950000px;}
.y11a6_c00000{bottom:911.655000px;}
.y1310_c00000{bottom:911.670000px;}
.y735_c00000{bottom:911.850000px;}
.y7_c00000{bottom:911.914560px;}
.y12f6_c00000{bottom:912.030000px;}
.y108e_c00000{bottom:912.210000px;}
.y1303_c00000{bottom:912.390000px;}
.y1268_c00000{bottom:912.555000px;}
.y31a_c00000{bottom:912.570000px;}
.y1238_c00000{bottom:913.290000px;}
.y12b_c00000{bottom:914.370000px;}
.y2dc_c00000{bottom:914.550000px;}
.ydf5_c00000{bottom:914.730000px;}
.y350_c00000{bottom:914.910000px;}
.y16e_c00000{bottom:915.990000px;}
.y2ab_c00000{bottom:916.170000px;}
.y66b_c00000{bottom:916.350000px;}
.ya16_c00000{bottom:916.515000px;}
.yc4c_c00000{bottom:916.530000px;}
.yb45_c00000{bottom:916.710000px;}
.y815_c00000{bottom:917.430000px;}
.y3f1_c00000{bottom:917.970000px;}
.yc1_c00000{bottom:919.230000px;}
.y104_c00000{bottom:919.410000px;}
.y979_c00000{bottom:919.590000px;}
.y13e2_c00000{bottom:919.770000px;}
.y1337_c00000{bottom:919.935000px;}
.y198_c00000{bottom:919.950000px;}
.y596_c00000{bottom:920.670000px;}
.y5f4_c00000{bottom:921.030000px;}
.y3a8_c00000{bottom:921.750000px;}
.y63_c00000{bottom:921.930000px;}
.y1e4_c00000{bottom:922.290000px;}
.y204_c00000{bottom:922.470000px;}
.ycf1_c00000{bottom:922.650000px;}
.y11c5_c00000{bottom:923.175000px;}
.yb9f_c00000{bottom:923.190000px;}
.y1334_c00000{bottom:923.370000px;}
.y77a_c00000{bottom:923.730000px;}
.y858_c00000{bottom:923.910000px;}
.y69b_c00000{bottom:924.810000px;}
.ydc_c00000{bottom:924.990000px;}
.y13fb_c00000{bottom:925.170000px;}
.y14e_c00000{bottom:925.350000px;}
.y89a_c00000{bottom:925.530000px;}
.yb3e_c00000{bottom:925.710000px;}
.y2f9_c00000{bottom:926.430000px;}
.y286_c00000{bottom:926.610000px;}
.yc74_c00000{bottom:926.790000px;}
.yc65_c00000{bottom:926.970000px;}
.yd84_c00000{bottom:927.150000px;}
.y267_c00000{bottom:928.050000px;}
.y4fb_c00000{bottom:928.230000px;}
.y1404_c00000{bottom:928.575000px;}
.yc1e_c00000{bottom:929.310000px;}
.y4e4_c00000{bottom:929.490000px;}
.y4a7_c00000{bottom:930.210000px;}
.y688_c00000{bottom:930.930000px;}
.yfd7_c00000{bottom:931.095000px;}
.y453_c00000{bottom:931.110000px;}
.yf82_c00000{bottom:931.470000px;}
.y2d_c00000{bottom:931.830000px;}
.y12f5_c00000{bottom:932.730000px;}
.y1302_c00000{bottom:933.090000px;}
.y5bd_c00000{bottom:933.270000px;}
.y608_c00000{bottom:933.630000px;}
.y12e3_c00000{bottom:933.810000px;}
.y8b9_c00000{bottom:934.350000px;}
.y6e7_c00000{bottom:934.530000px;}
.y319_c00000{bottom:934.890000px;}
.y474_c00000{bottom:935.055000px;}
.y473_c00000{bottom:935.070000px;}
.y1237_c00000{bottom:935.610000px;}
.y4c8_c00000{bottom:935.970000px;}
.yc8d_c00000{bottom:936.690000px;}
.ydf4_c00000{bottom:937.050000px;}
.yd03_c00000{bottom:937.230000px;}
.y13c8_c00000{bottom:937.410000px;}
.y6b8_c00000{bottom:937.770000px;}
.y16d_c00000{bottom:938.490000px;}
.y32f_c00000{bottom:938.670000px;}
.y422_c00000{bottom:938.850000px;}
.y669_c00000{bottom:939.030000px;}
.yae_c00000{bottom:939.210000px;}
.ycd9_c00000{bottom:939.375000px;}
.y1070_c00000{bottom:939.930000px;}
.y7aa_c00000{bottom:940.110000px;}
.y3f0_c00000{bottom:940.290000px;}
.y197_c00000{bottom:940.470000px;}
.y62_c00000{bottom:940.830000px;}
.y814_c00000{bottom:941.370000px;}
.yc0_c00000{bottom:941.550000px;}
.y103_c00000{bottom:941.730000px;}
.y6d5_c00000{bottom:941.910000px;}
.y1bc_c00000{bottom:942.270000px;}
.y22a_c00000{bottom:942.990000px;}
.y203_c00000{bottom:943.170000px;}
.y9c5_c00000{bottom:943.350000px;}
.y541_c00000{bottom:944.430000px;}
.y3dd_c00000{bottom:944.610000px;}
.yc55_c00000{bottom:944.790000px;}
.y66a_c00000{bottom:944.970000px;}
.y3a7_c00000{bottom:945.690000px;}
.y687_c00000{bottom:947.310000px;}
.y7cb_c00000{bottom:947.490000px;}
.y40e_c00000{bottom:948.750000px;}
.y12a_c00000{bottom:948.930000px;}
.y925_c00000{bottom:949.110000px;}
.yd83_c00000{bottom:949.290000px;}
.y899_c00000{bottom:949.470000px;}
.ya36_c00000{bottom:949.650000px;}
.y1326_c00000{bottom:950.010000px;}
.y6_c00000{bottom:950.068800px;}
.y266_c00000{bottom:950.370000px;}
.y2c2_c00000{bottom:950.550000px;}
.y4e3_c00000{bottom:951.990000px;}
.y90_c00000{bottom:952.350000px;}
.y4a6_c00000{bottom:952.530000px;}
.y1190_c00000{bottom:953.055000px;}
.y118f_c00000{bottom:953.070000px;}
.yb9d_c00000{bottom:953.250000px;}
.y452_c00000{bottom:953.430000px;}
.y1301_c00000{bottom:953.790000px;}
.y1392_c00000{bottom:953.970000px;}
.y50d_c00000{bottom:954.150000px;}
.y607_c00000{bottom:954.330000px;}
.y137a_c00000{bottom:954.510000px;}
.yd67_c00000{bottom:955.050000px;}
.y1123_c00000{bottom:955.215000px;}
.y1122_c00000{bottom:955.230000px;}
.y114a_c00000{bottom:955.590000px;}
.y5bc_c00000{bottom:955.770000px;}
.y6fa_c00000{bottom:956.310000px;}
.y1207_c00000{bottom:956.490000px;}
.y318_c00000{bottom:957.210000px;}
.y1236_c00000{bottom:957.930000px;}
.y8b8_c00000{bottom:958.290000px;}
.y995_c00000{bottom:958.470000px;}
.yc8c_c00000{bottom:959.010000px;}
.ydb_c00000{bottom:959.190000px;}
.ydf3_c00000{bottom:959.550000px;}
.y61_c00000{bottom:959.730000px;}
.yad_c00000{bottom:959.910000px;}
.y16c_c00000{bottom:960.810000px;}
.y2aa_c00000{bottom:960.990000px;}
.y196_c00000{bottom:961.170000px;}
.yd8d_c00000{bottom:961.350000px;}
.y668_c00000{bottom:961.710000px;}
.y34f_c00000{bottom:962.430000px;}
.y3ef_c00000{bottom:962.610000px;}
.y5f2_c00000{bottom:962.955000px;}
.y1bb_c00000{bottom:962.970000px;}
.y1e3_c00000{bottom:963.690000px;}
.ybf_c00000{bottom:963.870000px;}
.y6d4_c00000{bottom:964.230000px;}
.y11c4_c00000{bottom:964.575000px;}
.y11c3_c00000{bottom:964.590000px;}
.y1067_c00000{bottom:965.115000px;}
.y813_c00000{bottom:965.130000px;}
.y595_c00000{bottom:965.310000px;}
.y12c3_c00000{bottom:966.195000px;}
.y5fe_c00000{bottom:966.750000px;}
.yb10_c00000{bottom:966.930000px;}
.y4c7_c00000{bottom:967.110000px;}
.y2c_c00000{bottom:969.090000px;}
.y3a6_c00000{bottom:969.450000px;}
.ydbd_c00000{bottom:969.795000px;}
.y14d_c00000{bottom:969.810000px;}
.y657_c00000{bottom:969.990000px;}
.y1333_c00000{bottom:970.350000px;}
.y1325_c00000{bottom:970.710000px;}
.y129_c00000{bottom:971.070000px;}
.y285_c00000{bottom:971.250000px;}
.y637_c00000{bottom:971.430000px;}
.yd02_c00000{bottom:971.610000px;}
.y87d_c00000{bottom:971.955000px;}
.y87b_c00000{bottom:971.970000px;}
.yfd6_c00000{bottom:972.495000px;}
.yfd5_c00000{bottom:972.510000px;}
.y265_c00000{bottom:972.690000px;}
.y32e_c00000{bottom:972.870000px;}
.y898_c00000{bottom:973.230000px;}
.y8d8_c00000{bottom:973.410000px;}
.y75e_c00000{bottom:973.575000px;}
.y75d_c00000{bottom:973.590000px;}
.y13bd_c00000{bottom:973.935000px;}
.y13bc_c00000{bottom:973.950000px;}
.y8f_c00000{bottom:974.130000px;}
.y4e1_c00000{bottom:974.310000px;}
.y1300_c00000{bottom:974.490000px;}
.y1361_c00000{bottom:974.670000px;}
.y4a5_c00000{bottom:975.030000px;}
.y451_c00000{bottom:975.750000px;}
.y50c_c00000{bottom:976.470000px;}
.y472_c00000{bottom:977.190000px;}
.y5bb_c00000{bottom:978.090000px;}
.y38a_c00000{bottom:978.630000px;}
.y60_c00000{bottom:978.810000px;}
.y124b_c00000{bottom:979.170000px;}
.y317_c00000{bottom:979.530000px;}
.y4e2_c00000{bottom:980.250000px;}
.yc8b_c00000{bottom:981.330000px;}
.y195_c00000{bottom:981.870000px;}
.y8b7_c00000{bottom:982.050000px;}
.y994_c00000{bottom:982.230000px;}
.y2a9_c00000{bottom:983.130000px;}
.y421_c00000{bottom:983.310000px;}
.y2db_c00000{bottom:983.490000px;}
.yd74_c00000{bottom:983.670000px;}
.yb44_c00000{bottom:984.210000px;}
.y1e2_c00000{bottom:984.390000px;}
.y21a_c00000{bottom:984.570000px;}
.y3ee_c00000{bottom:984.930000px;}
.ybe_c00000{bottom:986.190000px;}
.y34e_c00000{bottom:986.370000px;}
.y594_c00000{bottom:987.630000px;}
.y5_c00000{bottom:988.223040px;}
.yfb2_c00000{bottom:989.430000px;}
.yb0f_c00000{bottom:990.870000px;}
.y10fa_c00000{bottom:991.215000px;}
.y10f9_c00000{bottom:991.230000px;}
.y1323_c00000{bottom:991.590000px;}
.yac_c00000{bottom:992.130000px;}
.y656_c00000{bottom:992.310000px;}
.yc1d_c00000{bottom:993.375000px;}
.yc1c_c00000{bottom:993.390000px;}
.yda_c00000{bottom:993.570000px;}
.yc64_c00000{bottom:993.750000px;}
.y636_c00000{bottom:993.930000px;}
.yb27_c00000{bottom:994.275000px;}
.yb26_c00000{bottom:994.290000px;}
.y1267_c00000{bottom:994.470000px;}
.y12f4_c00000{bottom:994.830000px;}
.y263_c00000{bottom:995.010000px;}
.y16b_c00000{bottom:995.190000px;}
.y508_c00000{bottom:995.370000px;}
.yf81_c00000{bottom:995.715000px;}
.y606_c00000{bottom:995.730000px;}
.y4e0_c00000{bottom:996.630000px;}
.y1324_c00000{bottom:996.810000px;}
.y897_c00000{bottom:996.990000px;}
.yb96_c00000{bottom:997.170000px;}
.y4a4_c00000{bottom:997.350000px;}
.y12e8_c00000{bottom:997.695000px;}
.y5f_c00000{bottom:997.710000px;}
.y450_c00000{bottom:998.070000px;}
.y6d3_c00000{bottom:998.610000px;}
.y6b7_c00000{bottom:998.790000px;}
.y9f0_c00000{bottom:999.690000px;}
.y264_c00000{bottom:1000.950000px;}
.y316_c00000{bottom:1001.850000px;}
.y1235_c00000{bottom:1002.570000px;}
.y1121_c00000{bottom:1003.635000px;}
.yc8a_c00000{bottom:1003.650000px;}
.y812_c00000{bottom:1003.830000px;}
.y3a5_c00000{bottom:1004.010000px;}
.yf5f_c00000{bottom:1004.370000px;}
.y1ba_c00000{bottom:1004.550000px;}
.y1e1_c00000{bottom:1005.090000px;}
.y230_c00000{bottom:1005.270000px;}
.y370_c00000{bottom:1005.450000px;}
.y128_c00000{bottom:1005.630000px;}
.y40d_c00000{bottom:1005.810000px;}
.y11c2_c00000{bottom:1005.975000px;}
.y993_c00000{bottom:1005.990000px;}
.y2b_c00000{bottom:1006.350000px;}
.yb43_c00000{bottom:1006.710000px;}
.y4c6_c00000{bottom:1007.250000px;}
.y118e_c00000{bottom:1007.610000px;}
.ybd_c00000{bottom:1008.690000px;}
.y593_c00000{bottom:1009.950000px;}
.y34d_c00000{bottom:1010.130000px;}
.y231_c00000{bottom:1010.490000px;}
.y7a9_c00000{bottom:1011.570000px;}
.y9d8_c00000{bottom:1011.750000px;}
.y1322_c00000{bottom:1012.110000px;}
.y5ba_c00000{bottom:1012.290000px;}
.yab_c00000{bottom:1012.830000px;}
.yfd4_c00000{bottom:1013.895000px;}
.yfd3_c00000{bottom:1013.910000px;}
.ybaa_c00000{bottom:1014.630000px;}
.y655_c00000{bottom:1014.810000px;}
.y12f3_c00000{bottom:1015.530000px;}
.yd9_c00000{bottom:1015.710000px;}
.y2f8_c00000{bottom:1015.890000px;}
.y7e6_c00000{bottom:1016.070000px;}
.yd66_c00000{bottom:1016.250000px;}
.y605_c00000{bottom:1016.430000px;}
.y5e_c00000{bottom:1016.790000px;}
.y192_c00000{bottom:1017.330000px;}
.y16a_c00000{bottom:1017.510000px;}
.y2a8_c00000{bottom:1017.690000px;}
.y43d_c00000{bottom:1017.870000px;}
.y8e_c00000{bottom:1018.050000px;}
.y4df_c00000{bottom:1018.950000px;}
.y857_c00000{bottom:1019.130000px;}
.y471_c00000{bottom:1019.475000px;}
.y470_c00000{bottom:1019.490000px;}
.y4a3_c00000{bottom:1019.670000px;}
.y44f_c00000{bottom:1020.390000px;}
.y924_c00000{bottom:1020.570000px;}
.y896_c00000{bottom:1020.750000px;}
.y9b4_c00000{bottom:1020.930000px;}
.y3c_c00000{bottom:1021.110000px;}
.y6d2_c00000{bottom:1021.650000px;}
.y389_c00000{bottom:1023.450000px;}
.y194_c00000{bottom:1023.810000px;}
.y1234_c00000{bottom:1023.990000px;}
.y315_c00000{bottom:1024.170000px;}
.y1e0_c00000{bottom:1025.790000px;}
.y22f_c00000{bottom:1025.970000px;}
.y877_c00000{bottom:1026.330000px;}
.y4_c00000{bottom:1026.377280px;}
.y8ed_c00000{bottom:1026.690000px;}
.y11ac_c00000{bottom:1026.870000px;}
.y127_c00000{bottom:1027.770000px;}
.y284_c00000{bottom:1027.950000px;}
.yc4b_c00000{bottom:1028.130000px;}
.yce7_c00000{bottom:1028.310000px;}
.y13bb_c00000{bottom:1028.490000px;}
.yb42_c00000{bottom:1029.210000px;}
.y8b6_c00000{bottom:1029.570000px;}
.y992_c00000{bottom:1029.750000px;}
.y509_c00000{bottom:1030.830000px;}
.ybc_c00000{bottom:1031.010000px;}
.y24c_c00000{bottom:1031.730000px;}
.y592_c00000{bottom:1032.270000px;}
.y50b_c00000{bottom:1032.630000px;}
.y1321_c00000{bottom:1032.810000px;}
.y1266_c00000{bottom:1033.170000px;}
.y34c_c00000{bottom:1033.890000px;}
.y75a_c00000{bottom:1034.070000px;}
.ydf2_c00000{bottom:1034.250000px;}
.y5b9_c00000{bottom:1034.430000px;}
.y7a8_c00000{bottom:1035.330000px;}
.y5d_c00000{bottom:1035.690000px;}
.y130f_c00000{bottom:1036.230000px;}
.y1383_c00000{bottom:1036.410000px;}
.y12ff_c00000{bottom:1036.590000px;}
.y136d_c00000{bottom:1036.770000px;}
.y604_c00000{bottom:1037.130000px;}
.y654_c00000{bottom:1037.310000px;}
.y634_c00000{bottom:1037.490000px;}
.y3a4_c00000{bottom:1038.210000px;}
.y9ef_c00000{bottom:1038.390000px;}
.yc63_c00000{bottom:1038.570000px;}
.ye20_c00000{bottom:1038.750000px;}
.y169_c00000{bottom:1039.830000px;}
.y3ed_c00000{bottom:1040.010000px;}
.y4a2_c00000{bottom:1041.990000px;}
.y44e_c00000{bottom:1042.710000px;}
.y635_c00000{bottom:1043.430000px;}
.y2a_c00000{bottom:1043.610000px;}
.y1332_c00000{bottom:1043.790000px;}
.y923_c00000{bottom:1044.330000px;}
.y895_c00000{bottom:1044.690000px;}
.y9b3_c00000{bottom:1044.870000px;}
.y1120_c00000{bottom:1045.035000px;}
.yaa_c00000{bottom:1045.050000px;}
.y10f8_c00000{bottom:1045.770000px;}
.y4c5_c00000{bottom:1045.950000px;}
.y1b8_c00000{bottom:1046.130000px;}
.yc89_c00000{bottom:1046.310000px;}
.y1df_c00000{bottom:1046.490000px;}
.y22e_c00000{bottom:1046.670000px;}
.y11c1_c00000{bottom:1047.375000px;}
.y11c0_c00000{bottom:1047.390000px;}
.yc1b_c00000{bottom:1047.735000px;}
.yc1a_c00000{bottom:1047.750000px;}
.y6d1_c00000{bottom:1048.110000px;}
.yb23_c00000{bottom:1048.650000px;}
.yf5e_c00000{bottom:1049.010000px;}
.y540_c00000{bottom:1050.090000px;}
.yd8_c00000{bottom:1050.270000px;}
.yc4a_c00000{bottom:1050.450000px;}
.yb8d_c00000{bottom:1050.630000px;}
.yb41_c00000{bottom:1051.710000px;}
.y5da_c00000{bottom:1051.890000px;}
.y1b9_c00000{bottom:1052.070000px;}
.y12e7_c00000{bottom:1052.250000px;}
.y191_c00000{bottom:1052.790000px;}
.ybb_c00000{bottom:1053.330000px;}
.y8b5_c00000{bottom:1053.510000px;}
.y991_c00000{bottom:1053.690000px;}
.y5c_c00000{bottom:1054.770000px;}
.yfd2_c00000{bottom:1055.295000px;}
.yfd1_c00000{bottom:1055.310000px;}
.y5b8_c00000{bottom:1055.850000px;}
.yfac_c00000{bottom:1056.390000px;}
.yfc1_c00000{bottom:1056.570000px;}
.y130e_c00000{bottom:1056.930000px;}
.y12f2_c00000{bottom:1057.290000px;}
.y1360_c00000{bottom:1057.470000px;}
.y34b_c00000{bottom:1057.650000px;}
.y4de_c00000{bottom:1057.830000px;}
.y50a_c00000{bottom:1058.370000px;}
.y7a7_c00000{bottom:1059.090000px;}
.y633_c00000{bottom:1059.810000px;}
.yc62_c00000{bottom:1060.890000px;}
.yd82_c00000{bottom:1061.070000px;}
.y46e_c00000{bottom:1061.595000px;}
.y46d_c00000{bottom:1061.610000px;}
.y168_c00000{bottom:1062.150000px;}
.y43c_c00000{bottom:1062.330000px;}
.y125_c00000{bottom:1062.510000px;}
.y4a1_c00000{bottom:1064.310000px;}
.y3_c00000{bottom:1064.531520px;}
.ya9_c00000{bottom:1065.750000px;}
.y7ca_c00000{bottom:1066.470000px;}
.y1b7_c00000{bottom:1066.830000px;}
.y3b_c00000{bottom:1067.010000px;}
.y1de_c00000{bottom:1067.190000px;}
.y22d_c00000{bottom:1067.370000px;}
.y922_c00000{bottom:1068.090000px;}
.y126_c00000{bottom:1068.450000px;}
.y9b2_c00000{bottom:1068.630000px;}
.y314_c00000{bottom:1068.990000px;}
.y1331_c00000{bottom:1070.070000px;}
.y6d0_c00000{bottom:1070.610000px;}
.yf5d_c00000{bottom:1071.330000px;}
.y36f_c00000{bottom:1072.410000px;}
.y283_c00000{bottom:1072.590000px;}
.yc49_c00000{bottom:1072.770000px;}
.yc37_c00000{bottom:1072.950000px;}
.y23c_c00000{bottom:1073.130000px;}
.y5b_c00000{bottom:1073.850000px;}
.y131f_c00000{bottom:1074.210000px;}
.y9e4_c00000{bottom:1074.390000px;}
.y8d_c00000{bottom:1074.750000px;}
.yba_c00000{bottom:1075.650000px;}
.y8b4_c00000{bottom:1077.270000px;}
.y990_c00000{bottom:1077.450000px;}
.y133b_c00000{bottom:1077.630000px;}
.y12f1_c00000{bottom:1077.990000px;}
.y135f_c00000{bottom:1078.170000px;}
.yd25_c00000{bottom:1078.710000px;}
.y1431_c00000{bottom:1078.890000px;}
.y1320_c00000{bottom:1080.150000px;}
.y29_c00000{bottom:1080.870000px;}
.y34a_c00000{bottom:1081.590000px;}
.y4dd_c00000{bottom:1081.770000px;}
.y632_c00000{bottom:1082.310000px;}
.y653_c00000{bottom:1082.490000px;}
.y7a6_c00000{bottom:1082.850000px;}
.yc73_c00000{bottom:1083.210000px;}
.yc88_c00000{bottom:1083.390000px;}
.y13ac_c00000{bottom:1083.930000px;}
.y167_c00000{bottom:1084.470000px;}
.yd7_c00000{bottom:1084.650000px;}
.y40c_c00000{bottom:1084.830000px;}
.y4a0_c00000{bottom:1086.630000px;}
.y1dd_c00000{bottom:1087.890000px;}
.y22c_c00000{bottom:1088.070000px;}
.y686_c00000{bottom:1088.250000px;}
.y53f_c00000{bottom:1090.050000px;}
.y849_c00000{bottom:1090.230000px;}
.y6f9_c00000{bottom:1090.410000px;}
.y193_c00000{bottom:1090.590000px;}
.y921_c00000{bottom:1091.850000px;}
.y313_c00000{bottom:1092.210000px;}
.y9b1_c00000{bottom:1092.390000px;}
.y5a_c00000{bottom:1092.750000px;}
.y8c_c00000{bottom:1093.650000px;}
.y3a3_c00000{bottom:1094.730000px;}
.y131e_c00000{bottom:1094.910000px;}
.yc36_c00000{bottom:1095.090000px;}
.yc61_c00000{bottom:1095.270000px;}
.y113b_c00000{bottom:1097.610000px;}
.y1107_c00000{bottom:1098.150000px;}
.ya8_c00000{bottom:1098.330000px;}
.y12ef_c00000{bottom:1098.690000px;}
.y136c_c00000{bottom:1098.870000px;}
.y759_c00000{bottom:1099.230000px;}
.y6b6_c00000{bottom:1100.310000px;}
.ya54_c00000{bottom:1101.030000px;}
.y98f_c00000{bottom:1101.210000px;}
.y2_c00000{bottom:1102.685760px;}
.y1066_c00000{bottom:1102.830000px;}
.y46a_c00000{bottom:1103.730000px;}
.y7a5_c00000{bottom:1104.270000px;}
.y12f0_c00000{bottom:1104.630000px;}
.y685_c00000{bottom:1104.810000px;}
.y631_c00000{bottom:1104.990000px;}
.y349_c00000{bottom:1105.350000px;}
.y4dc_c00000{bottom:1105.530000px;}
.yd6_c00000{bottom:1106.790000px;}
.y124_c00000{bottom:1106.970000px;}
.y36e_c00000{bottom:1107.150000px;}
.y49f_c00000{bottom:1108.050000px;}
.y1dc_c00000{bottom:1108.590000px;}
.y1b6_c00000{bottom:1108.770000px;}
.y59_c00000{bottom:1111.830000px;}
.y5aa_c00000{bottom:1112.370000px;}
.y3a_c00000{bottom:1112.730000px;}
.y920_c00000{bottom:1113.270000px;}
.ycc6_c00000{bottom:1115.070000px;}
.y894_c00000{bottom:1115.970000px;}
.y971_c00000{bottom:1116.150000px;}
.yc35_c00000{bottom:1117.410000px;}
.yc72_c00000{bottom:1117.590000px;}
.y28_c00000{bottom:1117.770000px;}
.y12ee_c00000{bottom:1119.390000px;}
.y1357_c00000{bottom:1119.570000px;}
.y978_c00000{bottom:1121.370000px;}
.yb9_c00000{bottom:1121.550000px;}
.y969_c00000{bottom:1121.910000px;}
.y972_c00000{bottom:1122.090000px;}
.y312_c00000{bottom:1123.350000px;}
.yc87_c00000{bottom:1123.530000px;}
.y7a4_c00000{bottom:1126.590000px;}
.y684_c00000{bottom:1127.310000px;}
.y652_c00000{bottom:1127.490000px;}
.y630_c00000{bottom:1127.670000px;}
.yd5_c00000{bottom:1129.110000px;}
.y1db_c00000{bottom:1129.290000px;}
.y1b5_c00000{bottom:1129.470000px;}
.y58_c00000{bottom:1130.760000px;}
.yc19_c00000{bottom:1131.120000px;}
.y876_c00000{bottom:1134.180000px;}
.y388_c00000{bottom:1135.080000px;}
.y91f_c00000{bottom:1137.240000px;}
.ycc5_c00000{bottom:1137.420000px;}
.y893_c00000{bottom:1139.940000px;}
.y970_c00000{bottom:1140.120000px;}
.y1356_c00000{bottom:1140.300000px;}
.y1_c00000{bottom:1140.840000px;}
.yf70_c00000{bottom:1141.200000px;}
.yb8c_c00000{bottom:1145.880000px;}
.y219_c00000{bottom:1174.320000px;}
.y8b3_c00000{bottom:1174.680000px;}
.y1064_c00000{bottom:1194.247500px;}
.y102_c00000{bottom:1194.660000px;}
.h133_c00000{height:11.700000px;}
.haa_c00000{height:11.880000px;}
.h60_c00000{height:14.400000px;}
.h189_c00000{height:15.840000px;}
.h100_c00000{height:16.380000px;}
.h17f_c00000{height:16.402500px;}
.h16d_c00000{height:16.560000px;}
.hf7_c00000{height:16.740000px;}
.h5a_c00000{height:18.000000px;}
.h42_c00000{height:18.180000px;}
.h117_c00000{height:18.540000px;}
.h12f_c00000{height:18.900000px;}
.h101_c00000{height:19.260000px;}
.hc0_c00000{height:19.440000px;}
.h91_c00000{height:19.620000px;}
.h7d_c00000{height:19.980000px;}
.h18e_c00000{height:20.002500px;}
.h111_c00000{height:20.160000px;}
.h12c_c00000{height:20.520000px;}
.h7a_c00000{height:20.685000px;}
.h57_c00000{height:20.700000px;}
.h5e_c00000{height:20.880000px;}
.hbf_c00000{height:21.060000px;}
.h11b_c00000{height:21.240000px;}
.h7f_c00000{height:21.420000px;}
.h9c_c00000{height:21.600000px;}
.hd0_c00000{height:21.780000px;}
.h97_c00000{height:21.960000px;}
.h17d_c00000{height:22.140000px;}
.hef_c00000{height:22.320000px;}
.h6c_c00000{height:22.500000px;}
.hf4_c00000{height:22.522500px;}
.h86_c00000{height:22.680000px;}
.h1a1_c00000{height:23.040000px;}
.h11c_c00000{height:23.220000px;}
.h134_c00000{height:23.400000px;}
.h106_c00000{height:23.580000px;}
.h5c_c00000{height:23.760000px;}
.h56_c00000{height:23.940000px;}
.h99_c00000{height:24.120000px;}
.h75_c00000{height:24.300000px;}
.h12a_c00000{height:24.480000px;}
.h9e_c00000{height:24.660000px;}
.h18a_c00000{height:24.705000px;}
.ha0_c00000{height:24.840000px;}
.h180_c00000{height:24.862500px;}
.hb8_c00000{height:25.020000px;}
.he2_c00000{height:25.200000px;}
.hce_c00000{height:25.380000px;}
.h132_c00000{height:25.560000px;}
.hc7_c00000{height:25.725000px;}
.hc4_c00000{height:25.740000px;}
.hc5_c00000{height:25.770000px;}
.hc6_c00000{height:25.905000px;}
.h72_c00000{height:25.920000px;}
.h10a_c00000{height:25.965000px;}
.h71_c00000{height:26.100000px;}
.hc8_c00000{height:26.265000px;}
.h120_c00000{height:26.280000px;}
.h183_c00000{height:26.445000px;}
.h182_c00000{height:26.460000px;}
.h15c_c00000{height:26.640000px;}
.h82_c00000{height:27.000000px;}
.h46_c00000{height:27.360000px;}
.h44_c00000{height:27.540000px;}
.ha4_c00000{height:27.562500px;}
.h47_c00000{height:27.720000px;}
.hcd_c00000{height:27.765000px;}
.h190_c00000{height:27.900000px;}
.h149_c00000{height:28.080000px;}
.h70_c00000{height:28.260000px;}
.h165_c00000{height:28.665000px;}
.h18f_c00000{height:28.980000px;}
.h187_c00000{height:29.340000px;}
.h22_c00000{height:29.482734px;}
.hab_c00000{height:29.520000px;}
.hb1_c00000{height:29.700000px;}
.h94_c00000{height:29.880000px;}
.ha7_c00000{height:30.045000px;}
.h121_c00000{height:30.060000px;}
.h12d_c00000{height:30.240000px;}
.h12e_c00000{height:30.262500px;}
.h7b_c00000{height:30.960000px;}
.h108_c00000{height:30.982500px;}
.ha5_c00000{height:31.125000px;}
.h92_c00000{height:31.320000px;}
.hbe_c00000{height:31.500000px;}
.ha6_c00000{height:31.665000px;}
.h2f_c00000{height:31.666641px;}
.h107_c00000{height:31.680000px;}
.h9b_c00000{height:31.860000px;}
.h155_c00000{height:32.040000px;}
.h32_c00000{height:32.220000px;}
.h6f_c00000{height:32.242500px;}
.hbd_c00000{height:32.400000px;}
.h15b_c00000{height:32.445000px;}
.h19b_c00000{height:32.580000px;}
.h197_c00000{height:33.120000px;}
.hc1_c00000{height:33.300000px;}
.h160_c00000{height:33.322500px;}
.hc3_c00000{height:33.480000px;}
.h19f_c00000{height:33.660000px;}
.hc2_c00000{height:33.840000px;}
.hec_c00000{height:34.020000px;}
.h13d_c00000{height:34.200000px;}
.h53_c00000{height:34.380000px;}
.h124_c00000{height:34.560000px;}
.h10b_c00000{height:34.605000px;}
.h128_c00000{height:34.740000px;}
.h140_c00000{height:34.760391px;}
.h6d_c00000{height:34.762500px;}
.hac_c00000{height:34.920000px;}
.h14c_c00000{height:34.942500px;}
.h10e_c00000{height:35.100000px;}
.hb9_c00000{height:35.280000px;}
.h11e_c00000{height:35.302500px;}
.h196_c00000{height:35.482500px;}
.h10d_c00000{height:35.640000px;}
.h10c_c00000{height:35.865000px;}
.h8b_c00000{height:36.000000px;}
.h15e_c00000{height:36.045000px;}
.h13e_c00000{height:36.180000px;}
.h3e_c00000{height:36.345000px;}
.h3c_c00000{height:36.355500px;}
.h3d_c00000{height:36.360000px;}
.h3a_c00000{height:36.390000px;}
.h3b_c00000{height:36.525000px;}
.h40_c00000{height:36.531000px;}
.h39_c00000{height:36.535500px;}
.h37_c00000{height:36.540000px;}
.h41_c00000{height:36.562500px;}
.h7c_c00000{height:36.720000px;}
.hd1_c00000{height:36.900000px;}
.hf8_c00000{height:36.922500px;}
.hf0_c00000{height:36.945000px;}
.h98_c00000{height:37.260000px;}
.h9a_c00000{height:37.440000px;}
.h115_c00000{height:37.620000px;}
.h5f_c00000{height:37.800000px;}
.h10f_c00000{height:37.980000px;}
.hd9_c00000{height:38.160000px;}
.hb2_c00000{height:38.340000px;}
.h113_c00000{height:38.362500px;}
.h169_c00000{height:38.520000px;}
.h1a2_c00000{height:38.542500px;}
.h16b_c00000{height:38.685000px;}
.h16a_c00000{height:38.865000px;}
.h7e_c00000{height:38.880000px;}
.h199_c00000{height:39.060000px;}
.h19e_c00000{height:39.082500px;}
.he4_c00000{height:39.240000px;}
.h5d_c00000{height:39.420000px;}
.h34_c00000{height:39.442500px;}
.h76_c00000{height:39.465000px;}
.h5b_c00000{height:39.802500px;}
.haf_c00000{height:39.960000px;}
.hb3_c00000{height:39.982500px;}
.h48_c00000{height:40.140000px;}
.h49_c00000{height:40.320000px;}
.h176_c00000{height:40.500000px;}
.h129_c00000{height:40.680000px;}
.h80_c00000{height:40.860000px;}
.h110_c00000{height:40.948242px;}
.hf1_c00000{height:41.205000px;}
.hf2_c00000{height:41.211000px;}
.h131_c00000{height:41.215500px;}
.hf3_c00000{height:41.220000px;}
.h2b_c00000{height:41.385000px;}
.h2c_c00000{height:41.391000px;}
.h77_c00000{height:41.395500px;}
.h2d_c00000{height:41.400000px;}
.hc9_c00000{height:41.421000px;}
.h2e_c00000{height:41.422500px;}
.h2a_c00000{height:41.430000px;}
.h78_c00000{height:41.436000px;}
.h79_c00000{height:41.445000px;}
.h1b_c00000{height:41.484960px;}
.h156_c00000{height:41.580000px;}
.h84_c00000{height:41.760000px;}
.h8e_c00000{height:41.805000px;}
.hb5_c00000{height:41.940000px;}
.hb7_c00000{height:42.705000px;}
.he1_c00000{height:42.840000px;}
.h1d_c00000{height:43.128633px;}
.h14e_c00000{height:43.222500px;}
.h1a_c00000{height:43.246406px;}
.had_c00000{height:43.380000px;}
.h6e_c00000{height:43.560000px;}
.h154_c00000{height:43.920000px;}
.h29_c00000{height:44.024062px;}
.h2_c00000{height:44.149219px;}
.h8c_c00000{height:44.820000px;}
.h161_c00000{height:45.000000px;}
.h122_c00000{height:45.180000px;}
.h11f_c00000{height:45.360000px;}
.h30_c00000{height:46.025156px;}
.h73_c00000{height:46.080000px;}
.h85_c00000{height:46.260000px;}
.h93_c00000{height:46.620000px;}
.h114_c00000{height:46.800000px;}
.h184_c00000{height:46.965000px;}
.h191_c00000{height:46.980000px;}
.h181_c00000{height:47.002500px;}
.h14b_c00000{height:47.340000px;}
.ha9_c00000{height:47.520000px;}
.he0_c00000{height:47.700000px;}
.h18_c00000{height:48.062812px;}
.h143_c00000{height:48.225000px;}
.h141_c00000{height:48.231000px;}
.h148_c00000{height:48.235500px;}
.h142_c00000{height:48.240000px;}
.hd4_c00000{height:48.262500px;}
.h145_c00000{height:48.405000px;}
.h144_c00000{height:48.411000px;}
.h58_c00000{height:48.420000px;}
.h147_c00000{height:48.441000px;}
.h146_c00000{height:48.442500px;}
.h18b_c00000{height:48.780000px;}
.ha2_c00000{height:48.825000px;}
.h119_c00000{height:49.320000px;}
.h6b_c00000{height:49.500000px;}
.h195_c00000{height:49.522500px;}
.hd6_c00000{height:49.680000px;}
.h14_c00000{height:50.027344px;}
.hae_c00000{height:50.040000px;}
.h95_c00000{height:50.220000px;}
.h8_c00000{height:50.229844px;}
.hfe_c00000{height:50.242500px;}
.h8d_c00000{height:50.760000px;}
.h90_c00000{height:51.120000px;}
.hd5_c00000{height:51.142500px;}
.hee_c00000{height:51.300000px;}
.hdf_c00000{height:51.660000px;}
.h74_c00000{height:51.682500px;}
.h173_c00000{height:51.840000px;}
.h16e_c00000{height:52.020000px;}
.h18d_c00000{height:52.042500px;}
.hfc_c00000{height:52.200000px;}
.h130_c00000{height:52.380000px;}
.h64_c00000{height:52.382812px;}
.h151_c00000{height:52.417969px;}
.hca_c00000{height:52.560000px;}
.hb6_c00000{height:52.740000px;}
.h15d_c00000{height:52.762500px;}
.h126_c00000{height:52.920000px;}
.h16c_c00000{height:52.942500px;}
.h7_c00000{height:52.998047px;}
.h166_c00000{height:53.100000px;}
.h81_c00000{height:53.280000px;}
.hff_c00000{height:53.302500px;}
.h26_c00000{height:53.398828px;}
.h33_c00000{height:53.428008px;}
.h55_c00000{height:53.573906px;}
.h88_c00000{height:53.640000px;}
.h105_c00000{height:53.662500px;}
.h45_c00000{height:53.953242px;}
.h137_c00000{height:54.000000px;}
.h83_c00000{height:54.022500px;}
.ha3_c00000{height:54.045000px;}
.h28_c00000{height:54.069961px;}
.h135_c00000{height:54.180000px;}
.h65_c00000{height:54.345000px;}
.h66_c00000{height:54.351000px;}
.h67_c00000{height:54.360000px;}
.h9d_c00000{height:54.525000px;}
.hba_c00000{height:54.531000px;}
.hbb_c00000{height:54.540000px;}
.h3f_c00000{height:54.545040px;}
.h153_c00000{height:54.720000px;}
.h13f_c00000{height:54.900000px;}
.h17c_c00000{height:54.922500px;}
.hf9_c00000{height:55.080000px;}
.h116_c00000{height:55.260000px;}
.h125_c00000{height:55.440000px;}
.hfa_c00000{height:55.620000px;}
.h1a3_c00000{height:55.642500px;}
.h138_c00000{height:55.980000px;}
.h127_c00000{height:56.340000px;}
.hcc_c00000{height:56.700000px;}
.h9f_c00000{height:56.801250px;}
.h192_c00000{height:56.880000px;}
.h11d_c00000{height:57.060000px;}
.hdd_c00000{height:57.082500px;}
.hdb_c00000{height:57.240000px;}
.h35_c00000{height:57.420000px;}
.h172_c00000{height:57.600000px;}
.hcf_c00000{height:57.780000px;}
.h168_c00000{height:57.960000px;}
.h174_c00000{height:58.140000px;}
.h43_c00000{height:58.242656px;}
.h118_c00000{height:58.500000px;}
.h89_c00000{height:58.680000px;}
.h8f_c00000{height:59.085000px;}
.h13_c00000{height:59.383125px;}
.h109_c00000{height:59.400000px;}
.h16f_c00000{height:59.760000px;}
.h24_c00000{height:59.789180px;}
.h12_c00000{height:59.803594px;}
.h4e_c00000{height:59.932969px;}
.h87_c00000{height:60.300000px;}
.h50_c00000{height:60.321000px;}
.h51_c00000{height:60.322500px;}
.h4a_c00000{height:60.465000px;}
.h4c_c00000{height:60.471000px;}
.h4d_c00000{height:60.480000px;}
.h38_c00000{height:60.577031px;}
.h1a0_c00000{height:60.682500px;}
.hd2_c00000{height:60.840000px;}
.h17b_c00000{height:60.862500px;}
.hde_c00000{height:60.885000px;}
.h19c_c00000{height:61.762500px;}
.he5_c00000{height:61.920000px;}
.h15a_c00000{height:62.095500px;}
.h159_c00000{height:62.100000px;}
.h11a_c00000{height:62.145000px;}
.h3_c00000{height:62.184375px;}
.h136_c00000{height:62.280000px;}
.h19a_c00000{height:62.460000px;}
.h139_c00000{height:62.820000px;}
.h4_c00000{height:62.850938px;}
.hda_c00000{height:63.540000px;}
.h63_c00000{height:63.550195px;}
.h1c_c00000{height:63.763920px;}
.h68_c00000{height:64.065000px;}
.h112_c00000{height:64.245000px;}
.h1e_c00000{height:64.371094px;}
.h16_c00000{height:64.546875px;}
.h15_c00000{height:64.806328px;}
.h17_c00000{height:65.003906px;}
.h6_c00000{height:65.010937px;}
.h5_c00000{height:65.025338px;}
.h17e_c00000{height:65.144531px;}
.h170_c00000{height:65.160000px;}
.ha8_c00000{height:65.325000px;}
.h103_c00000{height:65.340000px;}
.h188_c00000{height:65.880000px;}
.h102_c00000{height:66.420000px;}
.hed_c00000{height:66.600000px;}
.hbc_c00000{height:66.780000px;}
.h19d_c00000{height:66.960000px;}
.h54_c00000{height:67.006406px;}
.h175_c00000{height:67.140000px;}
.h104_c00000{height:67.320000px;}
.h167_c00000{height:67.500000px;}
.h171_c00000{height:67.680000px;}
.he8_c00000{height:68.040000px;}
.h185_c00000{height:68.061000px;}
.h186_c00000{height:68.062500px;}
.hfb_c00000{height:68.400000px;}
.heb_c00000{height:68.580000px;}
.he7_c00000{height:68.760000px;}
.hcb_c00000{height:69.086250px;}
.h61_c00000{height:69.575625px;}
.h158_c00000{height:69.660000px;}
.h13b_c00000{height:69.682500px;}
.h13a_c00000{height:70.402500px;}
.h13c_c00000{height:70.560000px;}
.hd7_c00000{height:70.740000px;}
.h164_c00000{height:70.920000px;}
.hd3_c00000{height:71.122500px;}
.h162_c00000{height:71.640000px;}
.hb0_c00000{height:71.820000px;}
.ha1_c00000{height:72.180000px;}
.hf6_c00000{height:72.360000px;}
.h23_c00000{height:72.558281px;}
.hb4_c00000{height:72.562500px;}
.hfd_c00000{height:72.742500px;}
.h163_c00000{height:72.900000px;}
.h4f_c00000{height:73.785000px;}
.h12b_c00000{height:73.800000px;}
.h15f_c00000{height:73.980000px;}
.hd8_c00000{height:74.340000px;}
.h8a_c00000{height:75.060000px;}
.h21_c00000{height:75.093750px;}
.h4b_c00000{height:75.314180px;}
.h20_c00000{height:75.519844px;}
.h1f_c00000{height:76.054570px;}
.h96_c00000{height:76.140000px;}
.hdc_c00000{height:76.162500px;}
.hf5_c00000{height:76.320000px;}
.h194_c00000{height:76.665000px;}
.h152_c00000{height:76.702500px;}
.h62_c00000{height:76.845000px;}
.h198_c00000{height:76.860000px;}
.h69_c00000{height:76.881000px;}
.h6a_c00000{height:76.882500px;}
.h18c_c00000{height:77.400000px;}
.h36_c00000{height:77.519531px;}
.h178_c00000{height:79.920000px;}
.hc_c00000{height:82.665000px;}
.h59_c00000{height:82.980000px;}
.h27_c00000{height:85.566797px;}
.h150_c00000{height:85.847344px;}
.h25_c00000{height:86.455195px;}
.h179_c00000{height:86.580000px;}
.h17a_c00000{height:87.120000px;}
.he9_c00000{height:87.480000px;}
.h14d_c00000{height:87.660000px;}
.h52_c00000{height:87.859687px;}
.h123_c00000{height:89.460000px;}
.h193_c00000{height:89.842500px;}
.h177_c00000{height:90.720000px;}
.he6_c00000{height:92.002500px;}
.h11_c00000{height:93.023438px;}
.h31_c00000{height:96.820312px;}
.h14a_c00000{height:99.874688px;}
.hea_c00000{height:101.160000px;}
.h10_c00000{height:102.960000px;}
.h157_c00000{height:106.200000px;}
.he3_c00000{height:106.560000px;}
.h9_c00000{height:107.441016px;}
.hd_c00000{height:107.499727px;}
.ha_c00000{height:108.791367px;}
.he_c00000{height:111.812695px;}
.hf_c00000{height:119.970703px;}
.hb_c00000{height:128.671875px;}
.h14f_c00000{height:150.120000px;}
.h19_c00000{height:1262.865000px;}
.h0_c00000{height:1262.880000px;}
.h1_c00000{height:1263.000000px;}
.w83_c00000{width:21.600000px;}
.wa5_c00000{width:21.622500px;}
.w48_c00000{width:25.200000px;}
.w3f_c00000{width:28.071000px;}
.w200_c00000{width:31.485000px;}
.we4_c00000{width:31.491000px;}
.w157_c00000{width:31.495500px;}
.w158_c00000{width:31.500000px;}
.w128_c00000{width:31.860000px;}
.we6_c00000{width:32.040000px;}
.w41_c00000{width:32.616000px;}
.w44_c00000{width:32.760000px;}
.w80_c00000{width:39.960000px;}
.w22c_c00000{width:42.115500px;}
.w1a0_c00000{width:42.120000px;}
.w17b_c00000{width:50.575500px;}
.w17c_c00000{width:50.580000px;}
.w1d4_c00000{width:52.740000px;}
.w4_c00000{width:56.160000px;}
.wa3_c00000{width:62.091000px;}
.w6_c00000{width:63.165000px;}
.w7_c00000{width:63.171000px;}
.w8_c00000{width:63.180000px;}
.w11b_c00000{width:65.700000px;}
.w145_c00000{width:81.720000px;}
.w1eb_c00000{width:82.822500px;}
.w10d_c00000{width:84.420000px;}
.w117_c00000{width:85.320000px;}
.w1c3_c00000{width:93.420000px;}
.wd3_c00000{width:97.020000px;}
.w16a_c00000{width:97.222500px;}
.wcb_c00000{width:102.240000px;}
.w1e5_c00000{width:102.262500px;}
.w13_c00000{width:102.945000px;}
.w1c2_c00000{width:103.162500px;}
.wc6_c00000{width:105.660000px;}
.w1ba_c00000{width:106.942500px;}
.w93_c00000{width:108.720000px;}
.w1c1_c00000{width:109.260000px;}
.wcf_c00000{width:112.882500px;}
.w1ea_c00000{width:113.040000px;}
.w217_c00000{width:114.660000px;}
.w1c4_c00000{width:115.245000px;}
.wf8_c00000{width:117.180000px;}
.w91_c00000{width:117.720000px;}
.w1bc_c00000{width:118.845000px;}
.w101_c00000{width:120.960000px;}
.w169_c00000{width:121.680000px;}
.w213_c00000{width:122.782500px;}
.wd0_c00000{width:123.660000px;}
.wf_c00000{width:123.681000px;}
.we_c00000{width:124.365000px;}
.w244_c00000{width:126.360000px;}
.w245_c00000{width:126.382500px;}
.w1bb_c00000{width:128.880000px;}
.w1bd_c00000{width:129.622500px;}
.wf9_c00000{width:130.500000px;}
.wd6_c00000{width:134.482500px;}
.w1b3_c00000{width:134.685000px;}
.w137_c00000{width:135.000000px;}
.w220_c00000{width:135.540000px;}
.w1b4_c00000{width:136.260000px;}
.wc5_c00000{width:137.362500px;}
.w102_c00000{width:137.542500px;}
.w1c9_c00000{width:137.880000px;}
.w1e6_c00000{width:138.240000px;}
.wb6_c00000{width:140.220000px;}
.w109_c00000{width:141.322500px;}
.w16f_c00000{width:142.222500px;}
.w165_c00000{width:142.380000px;}
.w1b8_c00000{width:144.540000px;}
.w100_c00000{width:144.742500px;}
.w90_c00000{width:145.305000px;}
.wa7_c00000{width:145.440000px;}
.wba_c00000{width:145.800000px;}
.w50_c00000{width:145.822500px;}
.w1d6_c00000{width:146.340000px;}
.wee_c00000{width:146.880000px;}
.w1fa_c00000{width:149.040000px;}
.w1a8_c00000{width:150.135000px;}
.w1d2_c00000{width:151.395000px;}
.w197_c00000{width:153.180000px;}
.w19e_c00000{width:153.900000px;}
.w142_c00000{width:155.550000px;}
.w92_c00000{width:156.450000px;}
.w226_c00000{width:156.630000px;}
.wb7_c00000{width:158.055000px;}
.w240_c00000{width:158.220000px;}
.w16d_c00000{width:158.940000px;}
.w12f_c00000{width:158.970000px;}
.w1b5_c00000{width:160.215000px;}
.w14c_c00000{width:162.000000px;}
.wac_c00000{width:162.030000px;}
.w189_c00000{width:162.390000px;}
.w227_c00000{width:162.540000px;}
.w1f1_c00000{width:165.630000px;}
.w6b_c00000{width:166.170000px;}
.wc7_c00000{width:166.530000px;}
.w13a_c00000{width:167.775000px;}
.w118_c00000{width:169.380000px;}
.w1f0_c00000{width:171.045000px;}
.w1c5_c00000{width:171.210000px;}
.w1de_c00000{width:172.635000px;}
.w7b_c00000{width:173.010000px;}
.w7c_c00000{width:173.025000px;}
.w212_c00000{width:173.175000px;}
.w233_c00000{width:173.370000px;}
.w1ef_c00000{width:173.910000px;}
.w14b_c00000{width:174.450000px;}
.w12c_c00000{width:174.975000px;}
.w20f_c00000{width:174.990000px;}
.w1c8_c00000{width:175.365000px;}
.w241_c00000{width:176.415000px;}
.w13c_c00000{width:177.495000px;}
.w1e7_c00000{width:177.870000px;}
.wbc_c00000{width:178.230000px;}
.w10a_c00000{width:178.410000px;}
.w238_c00000{width:180.030000px;}
.w62_c00000{width:180.210000px;}
.w126_c00000{width:180.390000px;}
.w105_c00000{width:180.750000px;}
.w228_c00000{width:181.485000px;}
.w1fc_c00000{width:181.665000px;}
.w12e_c00000{width:182.175000px;}
.wb4_c00000{width:182.550000px;}
.w115_c00000{width:182.565000px;}
.wf2_c00000{width:182.715000px;}
.w191_c00000{width:184.515000px;}
.w4a_c00000{width:184.530000px;}
.w1b9_c00000{width:185.415000px;}
.w193_c00000{width:185.595000px;}
.wd2_c00000{width:185.970000px;}
.w1e1_c00000{width:186.135000px;}
.w204_c00000{width:187.215000px;}
.w70_c00000{width:187.425000px;}
.wfa_c00000{width:187.755000px;}
.w215_c00000{width:188.310000px;}
.w19f_c00000{width:188.490000px;}
.w1fd_c00000{width:188.850000px;}
.w10e_c00000{width:189.555000px;}
.w23e_c00000{width:192.075000px;}
.w11f_c00000{width:192.630000px;}
.w242_c00000{width:193.170000px;}
.w6d_c00000{width:193.335000px;}
.w149_c00000{width:193.530000px;}
.w33_c00000{width:193.710000px;}
.w18f_c00000{width:195.330000px;}
.w219_c00000{width:195.870000px;}
.wdf_c00000{width:196.050000px;}
.wc1_c00000{width:196.230000px;}
.w89_c00000{width:196.590000px;}
.w57_c00000{width:198.030000px;}
.w103_c00000{width:198.930000px;}
.w71_c00000{width:199.095000px;}
.w7a_c00000{width:199.110000px;}
.w107_c00000{width:199.290000px;}
.w154_c00000{width:200.190000px;}
.w23c_c00000{width:200.550000px;}
.w1b2_c00000{width:201.090000px;}
.wa8_c00000{width:201.990000px;}
.w23d_c00000{width:202.710000px;}
.wb8_c00000{width:202.905000px;}
.w13b_c00000{width:203.250000px;}
.w111_c00000{width:203.430000px;}
.wb1_c00000{width:204.330000px;}
.w66_c00000{width:204.870000px;}
.wa6_c00000{width:205.770000px;}
.w15d_c00000{width:205.965000px;}
.w23b_c00000{width:206.130000px;}
.w1aa_c00000{width:206.310000px;}
.w106_c00000{width:206.325000px;}
.w82_c00000{width:206.490000px;}
.w190_c00000{width:206.505000px;}
.w1e0_c00000{width:206.535000px;}
.wc9_c00000{width:206.850000px;}
.wf7_c00000{width:207.390000px;}
.wbe_c00000{width:208.110000px;}
.w104_c00000{width:208.290000px;}
.w120_c00000{width:208.650000px;}
.wd4_c00000{width:208.665000px;}
.w231_c00000{width:208.830000px;}
.w69_c00000{width:209.010000px;}
.w1ac_c00000{width:209.550000px;}
.w68_c00000{width:210.090000px;}
.w1da_c00000{width:210.105000px;}
.wef_c00000{width:211.335000px;}
.w65_c00000{width:211.350000px;}
.w234_c00000{width:213.330000px;}
.w15b_c00000{width:213.690000px;}
.w16b_c00000{width:213.885000px;}
.w8a_c00000{width:214.950000px;}
.w122_c00000{width:215.115000px;}
.w21d_c00000{width:215.130000px;}
.w56_c00000{width:216.030000px;}
.w155_c00000{width:216.750000px;}
.w114_c00000{width:217.110000px;}
.wfe_c00000{width:217.650000px;}
.w1d0_c00000{width:217.830000px;}
.w54_c00000{width:218.010000px;}
.w7d_c00000{width:218.370000px;}
.we9_c00000{width:218.730000px;}
.w1a5_c00000{width:218.910000px;}
.w14e_c00000{width:219.270000px;}
.w1d9_c00000{width:219.450000px;}
.w179_c00000{width:220.545000px;}
.w119_c00000{width:221.835000px;}
.w116_c00000{width:221.970000px;}
.w22_c00000{width:222.735000px;}
.w37_c00000{width:222.870000px;}
.w1d5_c00000{width:223.455000px;}
.w201_c00000{width:223.755000px;}
.w13f_c00000{width:223.770000px;}
.w168_c00000{width:223.950000px;}
.w178_c00000{width:225.030000px;}
.w18e_c00000{width:225.075000px;}
.w1ed_c00000{width:225.390000px;}
.w161_c00000{width:226.125000px;}
.w29_c00000{width:226.470000px;}
.w113_c00000{width:226.650000px;}
.w18d_c00000{width:227.175000px;}
.wbf_c00000{width:227.910000px;}
.w180_c00000{width:227.925000px;}
.wd7_c00000{width:229.530000px;}
.w1c_c00000{width:230.415000px;}
.w1d_c00000{width:230.430000px;}
.w1e9_c00000{width:230.475000px;}
.wae_c00000{width:230.610000px;}
.w19b_c00000{width:230.775000px;}
.w15e_c00000{width:230.790000px;}
.w6e_c00000{width:231.150000px;}
.w1f7_c00000{width:231.345000px;}
.w5c_c00000{width:231.510000px;}
.w97_c00000{width:231.870000px;}
.w98_c00000{width:231.915000px;}
.w1dd_c00000{width:232.605000px;}
.wde_c00000{width:232.950000px;}
.w5d_c00000{width:233.490000px;}
.w1db_c00000{width:233.535000px;}
.w8f_c00000{width:233.670000px;}
.w3c_c00000{width:234.570000px;}
.w162_c00000{width:234.750000px;}
.w138_c00000{width:234.930000px;}
.w139_c00000{width:234.975000px;}
.w13d_c00000{width:235.110000px;}
.w209_c00000{width:235.125000px;}
.w99_c00000{width:235.290000px;}
.w1af_c00000{width:235.830000px;}
.w185_c00000{width:236.025000px;}
.w1ee_c00000{width:236.205000px;}
.w95_c00000{width:236.550000px;}
.w96_c00000{width:236.580000px;}
.w86_c00000{width:236.910000px;}
.w8e_c00000{width:237.135000px;}
.w181_c00000{width:237.270000px;}
.w1fe_c00000{width:237.675000px;}
.w12d_c00000{width:238.185000px;}
.w94_c00000{width:238.350000px;}
.w4c_c00000{width:239.070000px;}
.w18a_c00000{width:239.805000px;}
.wa9_c00000{width:240.510000px;}
.wdc_c00000{width:240.870000px;}
.w6f_c00000{width:241.065000px;}
.w8d_c00000{width:241.230000px;}
.w79_c00000{width:241.590000px;}
.w18c_c00000{width:241.770000px;}
.w7f_c00000{width:242.490000px;}
.w9b_c00000{width:243.030000px;}
.w17f_c00000{width:243.210000px;}
.w133_c00000{width:243.570000px;}
.w5_c00000{width:243.795000px;}
.w184_c00000{width:243.930000px;}
.wc_c00000{width:244.290000px;}
.w73_c00000{width:244.995000px;}
.w74_c00000{width:245.010000px;}
.w22b_c00000{width:245.910000px;}
.w229_c00000{width:245.925000px;}
.w176_c00000{width:246.090000px;}
.w1fb_c00000{width:246.270000px;}
.w160_c00000{width:246.450000px;}
.w76_c00000{width:246.630000px;}
.w1f2_c00000{width:246.990000px;}
.w1ec_c00000{width:247.170000px;}
.w192_c00000{width:247.530000px;}
.w182_c00000{width:247.560000px;}
.w5b_c00000{width:249.330000px;}
.w1b0_c00000{width:249.375000px;}
.we2_c00000{width:250.230000px;}
.w174_c00000{width:250.275000px;}
.w202_c00000{width:250.410000px;}
.w15c_c00000{width:250.770000px;}
.w1e4_c00000{width:251.145000px;}
.w1e8_c00000{width:252.030000px;}
.w206_c00000{width:252.930000px;}
.w130_c00000{width:253.110000px;}
.w7e_c00000{width:253.470000px;}
.w1a6_c00000{width:253.830000px;}
.w211_c00000{width:254.370000px;}
.w1dc_c00000{width:255.810000px;}
.w22e_c00000{width:258.510000px;}
.wf5_c00000{width:259.230000px;}
.w20c_c00000{width:259.410000px;}
.w20e_c00000{width:259.455000px;}
.w15f_c00000{width:260.850000px;}
.w3_c00000{width:261.021000px;}
.w9_c00000{width:261.030000px;}
.w11d_c00000{width:261.750000px;}
.w134_c00000{width:262.830000px;}
.w221_c00000{width:263.175000px;}
.w223_c00000{width:263.190000px;}
.w222_c00000{width:263.235000px;}
.w46_c00000{width:263.775000px;}
.waf_c00000{width:264.315000px;}
.w21_c00000{width:264.450000px;}
.w2a_c00000{width:264.495000px;}
.we1_c00000{width:266.070000px;}
.w4d_c00000{width:266.460000px;}
.w124_c00000{width:266.595000px;}
.w1cb_c00000{width:267.510000px;}
.wc3_c00000{width:267.690000px;}
.wc0_c00000{width:267.705000px;}
.w52_c00000{width:268.950000px;}
.w42_c00000{width:269.295000px;}
.w173_c00000{width:269.490000px;}
.w1a2_c00000{width:270.030000px;}
.w45_c00000{width:270.255000px;}
.w1ca_c00000{width:270.750000px;}
.wd8_c00000{width:270.795000px;}
.wc8_c00000{width:271.110000px;}
.w84_c00000{width:273.435000px;}
.w1e3_c00000{width:273.450000px;}
.wce_c00000{width:273.675000px;}
.w1cf_c00000{width:274.530000px;}
.w43_c00000{width:275.055000px;}
.w3a_c00000{width:275.295000px;}
.w210_c00000{width:275.430000px;}
.w1b6_c00000{width:275.790000px;}
.wea_c00000{width:276.150000px;}
.w1a1_c00000{width:276.540000px;}
.w20d_c00000{width:277.050000px;}
.w1df_c00000{width:278.850000px;}
.w14a_c00000{width:281.385000px;}
.wbb_c00000{width:281.415000px;}
.w14d_c00000{width:281.595000px;}
.wed_c00000{width:281.910000px;}
.w1d8_c00000{width:283.170000px;}
.w131_c00000{width:283.575000px;}
.w5a_c00000{width:284.070000px;}
.w18b_c00000{width:285.690000px;}
.wb9_c00000{width:286.275000px;}
.we7_c00000{width:286.620000px;}
.we8_c00000{width:286.935000px;}
.we5_c00000{width:286.950000px;}
.w15a_c00000{width:287.160000px;}
.w159_c00000{width:287.175000px;}
.w1f6_c00000{width:287.895000px;}
.w31_c00000{width:288.030000px;}
.w172_c00000{width:289.695000px;}
.w60_c00000{width:291.855000px;}
.w1a3_c00000{width:292.530000px;}
.wa0_c00000{width:294.330000px;}
.w166_c00000{width:295.230000px;}
.w1b7_c00000{width:295.455000px;}
.w17e_c00000{width:295.950000px;}
.w1f4_c00000{width:296.310000px;}
.w4e_c00000{width:297.570000px;}
.w22d_c00000{width:297.780000px;}
.w1f5_c00000{width:299.370000px;}
.web_c00000{width:299.775000px;}
.w87_c00000{width:300.075000px;}
.w2f_c00000{width:301.530000px;}
.w235_c00000{width:301.890000px;}
.w207_c00000{width:303.915000px;}
.w4f_c00000{width:305.115000px;}
.w81_c00000{width:305.175000px;}
.w152_c00000{width:305.355000px;}
.w40_c00000{width:307.830000px;}
.wb5_c00000{width:308.775000px;}
.w151_c00000{width:309.270000px;}
.w218_c00000{width:309.675000px;}
.w1e_c00000{width:309.810000px;}
.waa_c00000{width:310.035000px;}
.w32_c00000{width:310.935000px;}
.w225_c00000{width:312.510000px;}
.wfd_c00000{width:313.230000px;}
.w5f_c00000{width:316.290000px;}
.wc4_c00000{width:318.120000px;}
.w19a_c00000{width:318.990000px;}
.w123_c00000{width:319.575000px;}
.w88_c00000{width:320.460000px;}
.w30_c00000{width:321.870000px;}
.w9e_c00000{width:321.915000px;}
.w1c6_c00000{width:322.770000px;}
.w167_c00000{width:323.535000px;}
.wa_c00000{width:324.075000px;}
.w10b_c00000{width:325.695000px;}
.w2b_c00000{width:326.910000px;}
.w112_c00000{width:327.315000px;}
.w51_c00000{width:328.935000px;}
.w17d_c00000{width:329.640000px;}
.w2c_c00000{width:330.375000px;}
.w1ce_c00000{width:330.510000px;}
.w196_c00000{width:330.915000px;}
.w34_c00000{width:331.785000px;}
.w22f_c00000{width:332.175000px;}
.w9d_c00000{width:332.670000px;}
.w77_c00000{width:332.715000px;}
.wfc_c00000{width:334.875000px;}
.w230_c00000{width:335.190000px;}
.w5e_c00000{width:335.580000px;}
.w127_c00000{width:335.775000px;}
.w78_c00000{width:340.095000px;}
.w75_c00000{width:340.590000px;}
.w129_c00000{width:340.620000px;}
.w26_c00000{width:340.635000px;}
.w1d7_c00000{width:340.995000px;}
.wb3_c00000{width:341.535000px;}
.w6c_c00000{width:341.880000px;}
.w20b_c00000{width:342.075000px;}
.w1ab_c00000{width:345.675000px;}
.w61_c00000{width:347.280000px;}
.w1cc_c00000{width:347.640000px;}
.w2d_c00000{width:351.030000px;}
.w35_c00000{width:352.155000px;}
.w11c_c00000{width:354.630000px;}
.w9c_c00000{width:354.675000px;}
.w146_c00000{width:355.215000px;}
.we0_c00000{width:356.430000px;}
.wec_c00000{width:356.475000px;}
.w1f9_c00000{width:356.970000px;}
.w224_c00000{width:357.375000px;}
.wf3_c00000{width:358.275000px;}
.w8c_c00000{width:358.455000px;}
.wb0_c00000{width:360.255000px;}
.w9f_c00000{width:361.140000px;}
.w135_c00000{width:362.055000px;}
.w12b_c00000{width:365.475000px;}
.w23f_c00000{width:367.275000px;}
.w2e_c00000{width:367.995000px;}
.w47_c00000{width:369.435000px;}
.w1f8_c00000{width:371.775000px;}
.w183_c00000{width:373.035000px;}
.w246_c00000{width:373.395000px;}
.w153_c00000{width:374.115000px;}
.w186_c00000{width:374.655000px;}
.w187_c00000{width:374.835000px;}
.w236_c00000{width:376.455000px;}
.w23a_c00000{width:377.355000px;}
.w1cd_c00000{width:377.700000px;}
.w85_c00000{width:378.435000px;}
.w10_c00000{width:378.960000px;}
.wd_c00000{width:378.966000px;}
.w11_c00000{width:378.975000px;}
.w20a_c00000{width:381.120000px;}
.w177_c00000{width:381.675000px;}
.w1d3_c00000{width:382.395000px;}
.w3d_c00000{width:383.295000px;}
.wda_c00000{width:383.835000px;}
.wb_c00000{width:386.880000px;}
.w205_c00000{width:395.355000px;}
.wb2_c00000{width:395.535000px;}
.w1c7_c00000{width:397.335000px;}
.w148_c00000{width:398.040000px;}
.w4b_c00000{width:398.415000px;}
.w14_c00000{width:399.660000px;}
.w12_c00000{width:399.666000px;}
.w15_c00000{width:399.675000px;}
.w195_c00000{width:399.855000px;}
.wd9_c00000{width:401.115000px;}
.w17a_c00000{width:401.655000px;}
.w164_c00000{width:402.555000px;}
.w203_c00000{width:402.900000px;}
.w1a7_c00000{width:403.275000px;}
.w72_c00000{width:403.620000px;}
.w1b_c00000{width:403.626000px;}
.w11e_c00000{width:406.155000px;}
.w20_c00000{width:407.055000px;}
.w27_c00000{width:407.220000px;}
.wad_c00000{width:410.115000px;}
.w248_c00000{width:411.540000px;}
.w1d1_c00000{width:411.915000px;}
.w63_c00000{width:412.275000px;}
.w12a_c00000{width:413.175000px;}
.w1f_c00000{width:413.700000px;}
.w175_c00000{width:413.715000px;}
.w194_c00000{width:414.795000px;}
.w1a9_c00000{width:417.675000px;}
.w1a4_c00000{width:419.475000px;}
.w10c_c00000{width:421.275000px;}
.w125_c00000{width:421.470000px;}
.w147_c00000{width:422.355000px;}
.wab_c00000{width:423.255000px;}
.w170_c00000{width:425.580000px;}
.w247_c00000{width:425.955000px;}
.w17_c00000{width:427.035000px;}
.w55_c00000{width:428.115000px;}
.wc2_c00000{width:429.015000px;}
.w171_c00000{width:430.995000px;}
.w49_c00000{width:432.075000px;}
.w1ae_c00000{width:434.775000px;}
.wd5_c00000{width:435.675000px;}
.w53_c00000{width:437.115000px;}
.wa2_c00000{width:439.635000px;}
.w19d_c00000{width:442.695000px;}
.w38_c00000{width:443.220000px;}
.w67_c00000{width:446.280000px;}
.w1e2_c00000{width:447.015000px;}
.w8b_c00000{width:448.995000px;}
.wcc_c00000{width:450.090000px;}
.w13e_c00000{width:450.255000px;}
.w64_c00000{width:450.435000px;}
.w140_c00000{width:451.515000px;}
.w19c_c00000{width:455.655000px;}
.w1f3_c00000{width:459.060000px;}
.wf6_c00000{width:461.235000px;}
.w6a_c00000{width:462.495000px;}
.wbd_c00000{width:463.035000px;}
.wcd_c00000{width:463.395000px;}
.w156_c00000{width:469.515000px;}
.w214_c00000{width:470.955000px;}
.w199_c00000{width:472.230000px;}
.w16e_c00000{width:472.395000px;}
.w216_c00000{width:472.935000px;}
.w9a_c00000{width:473.835000px;}
.w39_c00000{width:475.095000px;}
.w24_c00000{width:477.075000px;}
.wa1_c00000{width:478.515000px;}
.w21e_c00000{width:485.700000px;}
.w21c_c00000{width:485.715000px;}
.w36_c00000{width:487.170000px;}
.w59_c00000{width:487.335000px;}
.w141_c00000{width:489.495000px;}
.w136_c00000{width:492.030000px;}
.w150_c00000{width:496.170000px;}
.w19_c00000{width:496.890000px;}
.wf0_c00000{width:498.510000px;}
.w18_c00000{width:500.850000px;}
.wdd_c00000{width:501.210000px;}
.we3_c00000{width:501.750000px;}
.w21b_c00000{width:502.470000px;}
.w16c_c00000{width:503.190000px;}
.wf4_c00000{width:504.450000px;}
.wf1_c00000{width:506.790000px;}
.w1bf_c00000{width:507.690000px;}
.w1be_c00000{width:508.590000px;}
.w163_c00000{width:508.770000px;}
.wff_c00000{width:509.310000px;}
.w1a_c00000{width:511.110000px;}
.wfb_c00000{width:511.470000px;}
.w1c0_c00000{width:511.650000px;}
.w1b1_c00000{width:514.890000px;}
.w11a_c00000{width:515.040000px;}
.w10f_c00000{width:515.070000px;}
.w1ad_c00000{width:517.410000px;}
.w237_c00000{width:519.210000px;}
.w188_c00000{width:520.110000px;}
.w108_c00000{width:525.330000px;}
.wca_c00000{width:529.110000px;}
.w144_c00000{width:529.470000px;}
.w28_c00000{width:531.630000px;}
.w121_c00000{width:533.070000px;}
.w143_c00000{width:533.250000px;}
.w198_c00000{width:533.430000px;}
.w21a_c00000{width:540.810000px;}
.w58_c00000{width:545.130000px;}
.w23_c00000{width:550.350000px;}
.wd1_c00000{width:550.710000px;}
.w132_c00000{width:555.210000px;}
.wa4_c00000{width:565.650000px;}
.w1ff_c00000{width:574.110000px;}
.w3e_c00000{width:578.430000px;}
.w21f_c00000{width:582.030000px;}
.w22a_c00000{width:593.730000px;}
.w25_c00000{width:596.610000px;}
.w110_c00000{width:596.970000px;}
.w232_c00000{width:598.440000px;}
.w243_c00000{width:613.890000px;}
.w239_c00000{width:614.610000px;}
.wdb_c00000{width:615.150000px;}
.w3b_c00000{width:627.030000px;}
.w208_c00000{width:629.370000px;}
.w16_c00000{width:633.510000px;}
.w14f_c00000{width:636.210000px;}
.w2_c00000{width:892.957500px;}
.w0_c00000{width:892.980000px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.xa1_c00000{left:1.071000px;}
.x6f_c00000{left:7.731000px;}
.xc1_c00000{left:10.251000px;}
.xa5_c00000{left:12.405000px;}
.xa8_c00000{left:19.965000px;}
.xa3_c00000{left:30.585000px;}
.xc3_c00000{left:31.845000px;}
.x14f_c00000{left:33.105000px;}
.xaa_c00000{left:37.065000px;}
.xa9_c00000{left:47.685000px;}
.xa6_c00000{left:57.585000px;}
.xab_c00000{left:59.610000px;}
.x150_c00000{left:64.965000px;}
.x1b1_c00000{left:86.400000px;}
.x145_c00000{left:88.200000px;}
.x12f_c00000{left:104.085000px;}
.x126_c00000{left:106.416000px;}
.x13a_c00000{left:108.585000px;}
.x146_c00000{left:112.260000px;}
.x6d_c00000{left:117.036000px;}
.x12b_c00000{left:120.996000px;}
.x15f_c00000{left:123.165000px;}
.x12d_c00000{left:124.776000px;}
.x17c_c00000{left:126.405000px;}
.x1_c00000{left:127.620000px;}
.x121_c00000{left:128.745000px;}
.xa0_c00000{left:129.825000px;}
.x107_c00000{left:130.845000px;}
.x2d_c00000{left:132.516000px;}
.x1f_c00000{left:133.776000px;}
.xe9_c00000{left:135.765000px;}
.x3a_c00000{left:137.376000px;}
.x8_c00000{left:138.456000px;}
.x35_c00000{left:139.896000px;}
.xd6_c00000{left:142.236000px;}
.x158_c00000{left:143.316000px;}
.x194_c00000{left:144.576000px;}
.x3_c00000{left:145.620000px;}
.xc8_c00000{left:147.096000px;}
.xb_c00000{left:148.536000px;}
.x119_c00000{left:150.330000px;}
.xbf_c00000{left:152.310000px;}
.x123_c00000{left:153.585000px;}
.x10_c00000{left:154.650000px;}
.x112_c00000{left:155.745000px;}
.x10e_c00000{left:157.905000px;}
.x68_c00000{left:159.690000px;}
.x102_c00000{left:162.030000px;}
.x19a_c00000{left:163.290000px;}
.x133_c00000{left:165.450000px;}
.x18f_c00000{left:166.725000px;}
.xeb_c00000{left:167.790000px;}
.x16d_c00000{left:168.885000px;}
.x2b_c00000{left:170.130000px;}
.x14a_c00000{left:172.627500px;}
.x1c_c00000{left:174.270000px;}
.xcb_c00000{left:176.085000px;}
.xe3_c00000{left:177.667500px;}
.xc9_c00000{left:180.045000px;}
.x1b_c00000{left:181.650000px;}
.x90_c00000{left:184.350000px;}
.x180_c00000{left:185.625000px;}
.x92_c00000{left:186.667500px;}
.x144_c00000{left:188.505000px;}
.xc0_c00000{left:190.485000px;}
.x2c_c00000{left:191.550000px;}
.x76_c00000{left:192.787500px;}
.x139_c00000{left:193.905000px;}
.x162_c00000{left:195.667500px;}
.x9d_c00000{left:197.130000px;}
.x177_c00000{left:198.225000px;}
.x93_c00000{left:200.010000px;}
.x17a_c00000{left:201.105000px;}
.x1a_c00000{left:202.170000px;}
.x6a_c00000{left:204.127500px;}
.x77_c00000{left:206.130000px;}
.x13c_c00000{left:207.585000px;}
.x11_c00000{left:208.650000px;}
.x103_c00000{left:209.745000px;}
.x193_c00000{left:211.005000px;}
.x17_c00000{left:212.610000px;}
.x153_c00000{left:213.690000px;}
.x63_c00000{left:214.747500px;}
.x14e_c00000{left:216.007500px;}
.x6b_c00000{left:217.470000px;}
.x58_c00000{left:218.707500px;}
.xec_c00000{left:221.265000px;}
.x1a3_c00000{left:222.345000px;}
.x13_c00000{left:223.410000px;}
.x72_c00000{left:225.030000px;}
.x135_c00000{left:226.987500px;}
.x64_c00000{left:228.090000px;}
.x66_c00000{left:229.687500px;}
.xc6_c00000{left:230.970000px;}
.x6_c00000{left:232.410000px;}
.x7a_c00000{left:233.467500px;}
.x16_c00000{left:235.650000px;}
.x114_c00000{left:237.285000px;}
.x198_c00000{left:238.545000px;}
.xc_c00000{left:239.610000px;}
.x134_c00000{left:241.245000px;}
.x67_c00000{left:243.030000px;}
.x12_c00000{left:244.650000px;}
.x106_c00000{left:245.730000px;}
.x7b_c00000{left:246.810000px;}
.x166_c00000{left:248.070000px;}
.x16c_c00000{left:249.510000px;}
.x16f_c00000{left:250.770000px;}
.x156_c00000{left:252.390000px;}
.x65_c00000{left:253.470000px;}
.x14_c00000{left:255.270000px;}
.xf3_c00000{left:256.867500px;}
.x148_c00000{left:258.690000px;}
.xf7_c00000{left:260.130000px;}
.x108_c00000{left:261.727500px;}
.x169_c00000{left:264.810000px;}
.x10b_c00000{left:266.047500px;}
.x1b2_c00000{left:267.510000px;}
.x17e_c00000{left:269.310000px;}
.x98_c00000{left:270.727500px;}
.x1b0_c00000{left:271.845000px;}
.xd7_c00000{left:274.185000px;}
.xee_c00000{left:275.767500px;}
.xf4_c00000{left:276.870000px;}
.x168_c00000{left:278.647500px;}
.x3d_c00000{left:279.727500px;}
.x7d_c00000{left:281.527500px;}
.xfb_c00000{left:282.787500px;}
.x99_c00000{left:284.070000px;}
.x1a0_c00000{left:285.510000px;}
.x94_c00000{left:286.747500px;}
.xcd_c00000{left:288.030000px;}
.x143_c00000{left:289.125000px;}
.xd_c00000{left:290.730000px;}
.x3e_c00000{left:293.115000px;}
.x7e_c00000{left:294.915000px;}
.xa_c00000{left:296.715000px;}
.x15_c00000{left:297.795000px;}
.x95_c00000{left:300.135000px;}
.xfc_c00000{left:302.835000px;}
.x32_c00000{left:304.635000px;}
.x6c_c00000{left:306.795000px;}
.x19_c00000{left:308.415000px;}
.x4_c00000{left:309.780000px;}
.x104_c00000{left:312.712500px;}
.xdf_c00000{left:314.692500px;}
.x6e_c00000{left:316.312500px;}
.x130_c00000{left:317.955000px;}
.x131_c00000{left:320.115000px;}
.x179_c00000{left:321.195000px;}
.x178_c00000{left:322.275000px;}
.x27_c00000{left:323.332500px;}
.x161_c00000{left:326.235000px;}
.x115_c00000{left:327.495000px;}
.x1a8_c00000{left:328.732500px;}
.x28_c00000{left:330.015000px;}
.x18a_c00000{left:331.455000px;}
.x105_c00000{left:332.715000px;}
.xd8_c00000{left:333.772500px;}
.x181_c00000{left:335.775000px;}
.x13d_c00000{left:337.035000px;}
.x195_c00000{left:339.015000px;}
.xcc_c00000{left:340.072500px;}
.x185_c00000{left:341.175000px;}
.x159_c00000{left:342.232500px;}
.x18_c00000{left:343.695000px;}
.x17d_c00000{left:345.855000px;}
.x47_c00000{left:346.912500px;}
.x163_c00000{left:348.015000px;}
.x120_c00000{left:349.815000px;}
.xac_c00000{left:351.952500px;}
.xd9_c00000{left:353.775000px;}
.x14c_c00000{left:354.855000px;}
.x42_c00000{left:357.195000px;}
.x12e_c00000{left:358.455000px;}
.x48_c00000{left:360.255000px;}
.xc7_c00000{left:362.055000px;}
.x10a_c00000{left:363.855000px;}
.xad_c00000{left:365.295000px;}
.xda_c00000{left:368.355000px;}
.x2_c00000{left:370.621440px;}
.x175_c00000{left:372.855000px;}
.x5f_c00000{left:374.812500px;}
.x15c_c00000{left:376.815000px;}
.x74_c00000{left:377.872500px;}
.x14b_c00000{left:379.852500px;}
.xff_c00000{left:381.832500px;}
.x51_c00000{left:382.912500px;}
.x174_c00000{left:384.375000px;}
.x165_c00000{left:385.995000px;}
.x1ac_c00000{left:387.075000px;}
.x60_c00000{left:388.155000px;}
.x70_c00000{left:390.135000px;}
.x75_c00000{left:391.215000px;}
.x173_c00000{left:392.632500px;}
.xb4_c00000{left:393.892500px;}
.x30_c00000{left:394.972500px;}
.x52_c00000{left:396.255000px;}
.x176_c00000{left:397.515000px;}
.xdb_c00000{left:398.752500px;}
.x9a_c00000{left:400.192500px;}
.x31_c00000{left:401.655000px;}
.x188_c00000{left:403.635000px;}
.xf_c00000{left:404.715000px;}
.x160_c00000{left:406.132500px;}
.xb5_c00000{left:407.235000px;}
.x1a4_c00000{left:408.315000px;}
.x12a_c00000{left:409.372500px;}
.x9_c00000{left:410.655000px;}
.x55_c00000{left:412.612500px;}
.x19b_c00000{left:414.232500px;}
.x15b_c00000{left:415.695000px;}
.xdc_c00000{left:418.755000px;}
.x11d_c00000{left:420.375000px;}
.x45_c00000{left:422.152500px;}
.x124_c00000{left:424.695000px;}
.x56_c00000{left:425.955000px;}
.x137_c00000{left:427.575000px;}
.x118_c00000{left:428.655000px;}
.x113_c00000{left:430.815000px;}
.x19f_c00000{left:431.895000px;}
.xe2_c00000{left:432.975000px;}
.x196_c00000{left:434.415000px;}
.x46_c00000{left:435.495000px;}
.x13e_c00000{left:436.935000px;}
.x83_c00000{left:438.555000px;}
.x61_c00000{left:441.052500px;}
.x43_c00000{left:442.132500px;}
.x13b_c00000{left:444.315000px;}
.xbb_c00000{left:445.395000px;}
.x7_c00000{left:446.655000px;}
.xc4_c00000{left:449.355000px;}
.x157_c00000{left:450.952500px;}
.x1a5_c00000{left:452.055000px;}
.x62_c00000{left:454.395000px;}
.x44_c00000{left:455.475000px;}
.x15a_c00000{left:456.735000px;}
.x29_c00000{left:457.792500px;}
.x11c_c00000{left:459.615000px;}
.xe7_c00000{left:461.055000px;}
.xd3_c00000{left:463.012500px;}
.x2a_c00000{left:464.475000px;}
.x197_c00000{left:465.915000px;}
.x138_c00000{left:467.535000px;}
.xca_c00000{left:468.615000px;}
.xbe_c00000{left:469.852500px;}
.xf1_c00000{left:471.472500px;}
.x149_c00000{left:472.935000px;}
.x1ae_c00000{left:474.015000px;}
.x53_c00000{left:475.072500px;}
.x19c_c00000{left:477.255000px;}
.xf5_c00000{left:478.492500px;}
.x38_c00000{left:480.472500px;}
.x4e_c00000{left:482.452500px;}
.x1a1_c00000{left:484.432500px;}
.x91_c00000{left:485.692500px;}
.x154_c00000{left:486.952500px;}
.x54_c00000{left:488.415000px;}
.xe4_c00000{left:489.855000px;}
.xf2_c00000{left:491.505000px;}
.x1a9_c00000{left:492.765000px;}
.x39_c00000{left:493.845000px;}
.x4f_c00000{left:495.825000px;}
.xf6_c00000{left:498.525000px;}
.x69_c00000{left:499.942500px;}
.x18e_c00000{left:501.765000px;}
.x8c_c00000{left:503.362500px;}
.x1a2_c00000{left:504.465000px;}
.x18c_c00000{left:505.725000px;}
.x155_c00000{left:506.985000px;}
.x85_c00000{left:508.402500px;}
.x87_c00000{left:509.482500px;}
.x101_c00000{left:510.922500px;}
.xa2_c00000{left:512.040000px;}
.x21_c00000{left:513.982500px;}
.x11a_c00000{left:515.280000px;}
.x8d_c00000{left:516.705000px;}
.x151_c00000{left:518.160000px;}
.x22_c00000{left:520.665000px;}
.x86_c00000{left:521.745000px;}
.x88_c00000{left:522.825000px;}
.xb6_c00000{left:523.882500px;}
.x16e_c00000{left:525.322500px;}
.x57_c00000{left:527.505000px;}
.xde_c00000{left:529.282500px;}
.xc2_c00000{left:531.300000px;}
.x14d_c00000{left:532.380000px;}
.xa7_c00000{left:533.460000px;}
.x109_c00000{left:534.885000px;}
.x11b_c00000{left:536.160000px;}
.xb7_c00000{left:537.225000px;}
.x116_c00000{left:539.565000px;}
.x125_c00000{left:540.645000px;}
.x33_c00000{left:541.702500px;}
.x1d_c00000{left:542.962500px;}
.x10c_c00000{left:544.785000px;}
.xd5_c00000{left:546.225000px;}
.xcf_c00000{left:548.002500px;}
.x1e_c00000{left:549.645000px;}
.xb0_c00000{left:551.422500px;}
.x11e_c00000{left:553.620000px;}
.x34_c00000{left:555.045000px;}
.x15d_c00000{left:556.320000px;}
.xd4_c00000{left:557.565000px;}
.x132_c00000{left:560.640000px;}
.x73_c00000{left:562.425000px;}
.x1a6_c00000{left:563.505000px;}
.xb1_c00000{left:564.765000px;}
.xd0_c00000{left:568.005000px;}
.x111_c00000{left:569.062500px;}
.x19d_c00000{left:571.065000px;}
.xb8_c00000{left:572.482500px;}
.x19e_c00000{left:573.945000px;}
.x89_c00000{left:575.205000px;}
.x172_c00000{left:576.285000px;}
.x10f_c00000{left:577.365000px;}
.x17b_c00000{left:580.965000px;}
.xed_c00000{left:582.045000px;}
.x25_c00000{left:583.822500px;}
.xb9_c00000{left:585.825000px;}
.x3f_c00000{left:587.602500px;}
.xef_c00000{left:589.042500px;}
.x26_c00000{left:590.505000px;}
.x171_c00000{left:592.125000px;}
.x96_c00000{left:593.362500px;}
.xf8_c00000{left:595.522500px;}
.x191_c00000{left:596.820000px;}
.xb2_c00000{left:599.122500px;}
.x40_c00000{left:600.945000px;}
.x152_c00000{left:603.105000px;}
.x17f_c00000{left:604.185000px;}
.xfa_c00000{left:605.265000px;}
.x97_c00000{left:606.705000px;}
.xf0_c00000{left:609.045000px;}
.xe5_c00000{left:610.125000px;}
.x8a_c00000{left:612.082500px;}
.x16a_c00000{left:614.062500px;}
.xf9_c00000{left:615.525000px;}
.xce_c00000{left:618.225000px;}
.xbc_c00000{left:620.745000px;}
.x183_c00000{left:622.560000px;}
.x18b_c00000{left:624.345000px;}
.x8b_c00000{left:625.425000px;}
.x142_c00000{left:626.505000px;}
.x122_c00000{left:628.102500px;}
.x170_c00000{left:630.480000px;}
.x12c_c00000{left:632.782500px;}
.x16b_c00000{left:634.065000px;}
.x189_c00000{left:635.505000px;}
.x7c_c00000{left:636.922500px;}
.x1ab_c00000{left:638.220000px;}
.xa4_c00000{left:639.660000px;}
.x8f_c00000{left:641.265000px;}
.x8e_c00000{left:642.345000px;}
.x2e_c00000{left:644.122500px;}
.x147_c00000{left:645.202500px;}
.x1aa_c00000{left:646.485000px;}
.x84_c00000{left:648.082500px;}
.x15e_c00000{left:649.545000px;}
.x2f_c00000{left:650.805000px;}
.xbd_c00000{left:652.425000px;}
.x49_c00000{left:654.382500px;}
.x186_c00000{left:657.645000px;}
.x18d_c00000{left:659.062500px;}
.x59_c00000{left:660.862500px;}
.x1af_c00000{left:662.145000px;}
.xfe_c00000{left:663.202500px;}
.xc5_c00000{left:664.462500px;}
.x199_c00000{left:666.300000px;}
.x4a_c00000{left:667.725000px;}
.x100_c00000{left:669.502500px;}
.xe8_c00000{left:671.685000px;}
.x5a_c00000{left:674.205000px;}
.xe0_c00000{left:675.262500px;}
.xae_c00000{left:676.882500px;}
.x190_c00000{left:678.345000px;}
.x9b_c00000{left:679.582500px;}
.x192_c00000{left:681.945000px;}
.x9e_c00000{left:683.182500px;}
.xea_c00000{left:684.285000px;}
.xfd_c00000{left:686.602500px;}
.x4b_c00000{left:688.402500px;}
.xaf_c00000{left:690.270000px;}
.x71_c00000{left:691.530000px;}
.x9c_c00000{left:692.970000px;}
.xe1_c00000{left:695.310000px;}
.x9f_c00000{left:696.570000px;}
.xb3_c00000{left:699.247500px;}
.x81_c00000{left:700.890000px;}
.x36_c00000{left:702.487500px;}
.x3b_c00000{left:704.647500px;}
.x4c_c00000{left:706.267500px;}
.x110_c00000{left:707.910000px;}
.x182_c00000{left:708.990000px;}
.x117_c00000{left:710.587500px;}
.x5b_c00000{left:712.207500px;}
.x187_c00000{left:714.007500px;}
.x37_c00000{left:715.830000px;}
.x3c_c00000{left:717.990000px;}
.x4d_c00000{left:719.610000px;}
.x5d_c00000{left:721.027500px;}
.x184_c00000{left:722.130000px;}
.x164_c00000{left:723.727500px;}
.x5c_c00000{left:725.550000px;}
.x78_c00000{left:726.787500px;}
.x41_c00000{left:728.250000px;}
.x11f_c00000{left:730.050000px;}
.x7f_c00000{left:731.287500px;}
.x82_c00000{left:733.290000px;}
.x5e_c00000{left:734.370000px;}
.x10d_c00000{left:735.810000px;}
.xd2_c00000{left:737.790000px;}
.x79_c00000{left:740.130000px;}
.xba_c00000{left:741.187500px;}
.x167_c00000{left:742.650000px;}
.x80_c00000{left:744.630000px;}
.x50_c00000{left:747.307500px;}
.x20_c00000{left:748.950000px;}
.x1a7_c00000{left:750.930000px;}
.x140_c00000{left:751.987500px;}
.x23_c00000{left:754.147500px;}
.x1ad_c00000{left:755.610000px;}
.xe_c00000{left:757.410000px;}
.x24_c00000{left:760.830000px;}
.xd1_c00000{left:762.990000px;}
.xdd_c00000{left:764.430000px;}
.x5_c00000{left:765.690000px;}
.xe6_c00000{left:766.770000px;}
.x141_c00000{left:771.990000px;}
.x13f_c00000{left:781.350000px;}
.x127_c00000{left:783.150000px;}
.x136_c00000{left:803.310000px;}
.x128_c00000{left:829.050000px;}
.x129_c00000{left:832.650000px;}
@media print{
.v3_c00000{vertical-align:-18.538667pt;}
.v1_c00000{vertical-align:-1.920000pt;}
.v0_c00000{vertical-align:0.000000pt;}
.v4_c00000{vertical-align:18.560000pt;}
.v2_c00000{vertical-align:21.120000pt;}
.ls74_c00000{letter-spacing:-3.712000pt;}
.lsf_c00000{letter-spacing:-1.552000pt;}
.ls85_c00000{letter-spacing:-1.493333pt;}
.ls55_c00000{letter-spacing:-1.280000pt;}
.ls97_c00000{letter-spacing:-1.152000pt;}
.ls77_c00000{letter-spacing:-0.832000pt;}
.ls50_c00000{letter-spacing:-0.800000pt;}
.ls32_c00000{letter-spacing:-0.768000pt;}
.ls12_c00000{letter-spacing:-0.640000pt;}
.ls6f_c00000{letter-spacing:-0.560000pt;}
.ls15_c00000{letter-spacing:-0.512000pt;}
.ls4d_c00000{letter-spacing:-0.480533pt;}
.ls73_c00000{letter-spacing:-0.448000pt;}
.ls6b_c00000{letter-spacing:-0.412267pt;}
.ls1a_c00000{letter-spacing:-0.384000pt;}
.ls54_c00000{letter-spacing:-0.320000pt;}
.ls44_c00000{letter-spacing:-0.299733pt;}
.ls4e_c00000{letter-spacing:-0.289067pt;}
.lsd_c00000{letter-spacing:-0.271467pt;}
.ls39_c00000{letter-spacing:-0.259733pt;}
.ls29_c00000{letter-spacing:-0.242133pt;}
.lsc_c00000{letter-spacing:-0.233067pt;}
.ls80_c00000{letter-spacing:-0.230933pt;}
.ls27_c00000{letter-spacing:-0.220267pt;}
.ls24_c00000{letter-spacing:-0.192000pt;}
.ls82_c00000{letter-spacing:-0.168533pt;}
.ls26_c00000{letter-spacing:-0.161067pt;}
.ls4a_c00000{letter-spacing:-0.155733pt;}
.ls37_c00000{letter-spacing:-0.147733pt;}
.ls28_c00000{letter-spacing:-0.135467pt;}
.ls1b_c00000{letter-spacing:-0.128000pt;}
.ls84_c00000{letter-spacing:-0.105067pt;}
.lsb_c00000{letter-spacing:-0.097067pt;}
.ls6c_c00000{letter-spacing:-0.094933pt;}
.ls36_c00000{letter-spacing:-0.064000pt;}
.ls7b_c00000{letter-spacing:-0.061867pt;}
.ls4f_c00000{letter-spacing:-0.047467pt;}
.ls48_c00000{letter-spacing:-0.031467pt;}
.ls6_c00000{letter-spacing:-0.028267pt;}
.ls87_c00000{letter-spacing:-0.015467pt;}
.ls1_c00000{letter-spacing:0.000000pt;}
.ls86_c00000{letter-spacing:0.036267pt;}
.ls41_c00000{letter-spacing:0.042133pt;}
.ls2_c00000{letter-spacing:0.053120pt;}
.ls76_c00000{letter-spacing:0.064000pt;}
.ls95_c00000{letter-spacing:0.067733pt;}
.ls2e_c00000{letter-spacing:0.067840pt;}
.ls3d_c00000{letter-spacing:0.096000pt;}
.ls3_c00000{letter-spacing:0.117760pt;}
.ls18_c00000{letter-spacing:0.128000pt;}
.ls38_c00000{letter-spacing:0.133120pt;}
.ls19_c00000{letter-spacing:0.133333pt;}
.ls16_c00000{letter-spacing:0.135467pt;}
.ls3c_c00000{letter-spacing:0.135680pt;}
.ls89_c00000{letter-spacing:0.146133pt;}
.ls0_c00000{letter-spacing:0.154240pt;}
.ls5c_c00000{letter-spacing:0.154667pt;}
.ls1f_c00000{letter-spacing:0.154880pt;}
.ls5b_c00000{letter-spacing:0.165333pt;}
.ls88_c00000{letter-spacing:0.168320pt;}
.ls1d_c00000{letter-spacing:0.181867pt;}
.ls35_c00000{letter-spacing:0.182827pt;}
.ls20_c00000{letter-spacing:0.186133pt;}
.ls40_c00000{letter-spacing:0.186240pt;}
.ls13_c00000{letter-spacing:0.192000pt;}
.ls33_c00000{letter-spacing:0.203520pt;}
.ls34_c00000{letter-spacing:0.203733pt;}
.ls23_c00000{letter-spacing:0.203947pt;}
.ls2d_c00000{letter-spacing:0.204160pt;}
.ls5_c00000{letter-spacing:0.212480pt;}
.ls17_c00000{letter-spacing:0.227733pt;}
.ls45_c00000{letter-spacing:0.227748pt;}
.ls6a_c00000{letter-spacing:0.227840pt;}
.ls10_c00000{letter-spacing:0.256000pt;}
.ls8_c00000{letter-spacing:0.271467pt;}
.ls91_c00000{letter-spacing:0.289280pt;}
.ls4_c00000{letter-spacing:0.294400pt;}
.ls49_c00000{letter-spacing:0.294933pt;}
.ls6d_c00000{letter-spacing:0.303467pt;}
.ls9d_c00000{letter-spacing:0.310187pt;}
.ls1c_c00000{letter-spacing:0.311680pt;}
.ls5a_c00000{letter-spacing:0.340267pt;}
.ls2a_c00000{letter-spacing:0.343040pt;}
.ls56_c00000{letter-spacing:0.448000pt;}
.ls42_c00000{letter-spacing:0.501760pt;}
.ls3a_c00000{letter-spacing:0.504533pt;}
.ls57_c00000{letter-spacing:0.504747pt;}
.ls3f_c00000{letter-spacing:0.504960pt;}
.ls63_c00000{letter-spacing:0.544000pt;}
.ls7a_c00000{letter-spacing:0.577920pt;}
.ls2c_c00000{letter-spacing:0.608427pt;}
.ls64_c00000{letter-spacing:0.640000pt;}
.ls2b_c00000{letter-spacing:0.768000pt;}
.ls9e_c00000{letter-spacing:0.773120pt;}
.ls59_c00000{letter-spacing:0.773333pt;}
.ls2f_c00000{letter-spacing:0.826667pt;}
.ls8d_c00000{letter-spacing:0.864000pt;}
.ls8b_c00000{letter-spacing:0.874667pt;}
.ls5f_c00000{letter-spacing:1.120427pt;}
.ls5e_c00000{letter-spacing:1.408000pt;}
.ls5d_c00000{letter-spacing:2.048000pt;}
.ls7d_c00000{letter-spacing:2.688000pt;}
.ls6e_c00000{letter-spacing:2.693120pt;}
.ls66_c00000{letter-spacing:3.328000pt;}
.ls98_c00000{letter-spacing:3.333120pt;}
.ls8e_c00000{letter-spacing:3.488000pt;}
.ls51_c00000{letter-spacing:3.968000pt;}
.ls67_c00000{letter-spacing:4.608000pt;}
.ls21_c00000{letter-spacing:5.248000pt;}
.ls92_c00000{letter-spacing:5.866667pt;}
.ls22_c00000{letter-spacing:5.888000pt;}
.ls65_c00000{letter-spacing:6.528000pt;}
.ls72_c00000{letter-spacing:6.533120pt;}
.ls3b_c00000{letter-spacing:7.680000pt;}
.ls61_c00000{letter-spacing:7.808000pt;}
.ls93_c00000{letter-spacing:8.448000pt;}
.ls8f_c00000{letter-spacing:8.474880pt;}
.ls62_c00000{letter-spacing:9.088000pt;}
.ls83_c00000{letter-spacing:9.728000pt;}
.ls60_c00000{letter-spacing:10.368000pt;}
.ls69_c00000{letter-spacing:11.008000pt;}
.ls14_c00000{letter-spacing:12.288000pt;}
.ls8a_c00000{letter-spacing:12.661760pt;}
.ls78_c00000{letter-spacing:12.928000pt;}
.ls8c_c00000{letter-spacing:14.208000pt;}
.ls90_c00000{letter-spacing:14.736640pt;}
.ls68_c00000{letter-spacing:15.488000pt;}
.ls58_c00000{letter-spacing:15.840427pt;}
.ls71_c00000{letter-spacing:16.128000pt;}
.ls9b_c00000{letter-spacing:16.768000pt;}
.ls4c_c00000{letter-spacing:17.472000pt;}
.ls99_c00000{letter-spacing:18.048000pt;}
.ls52_c00000{letter-spacing:18.474667pt;}
.ls53_c00000{letter-spacing:18.496000pt;}
.ls7c_c00000{letter-spacing:18.688000pt;}
.ls9c_c00000{letter-spacing:19.216640pt;}
.ls9a_c00000{letter-spacing:21.136640pt;}
.ls7f_c00000{letter-spacing:22.528000pt;}
.ls4b_c00000{letter-spacing:24.448000pt;}
.ls79_c00000{letter-spacing:25.088000pt;}
.ls46_c00000{letter-spacing:28.288000pt;}
.ls11_c00000{letter-spacing:28.394667pt;}
.ls75_c00000{letter-spacing:28.928000pt;}
.ls31_c00000{letter-spacing:32.016640pt;}
.ls94_c00000{letter-spacing:32.128000pt;}
.ls3e_c00000{letter-spacing:34.752000pt;}
.ls47_c00000{letter-spacing:36.783360pt;}
.ls43_c00000{letter-spacing:37.423360pt;}
.ls81_c00000{letter-spacing:37.888000pt;}
.ls7e_c00000{letter-spacing:41.733120pt;}
.ls1e_c00000{letter-spacing:45.103360pt;}
.ls30_c00000{letter-spacing:46.383360pt;}
.ls70_c00000{letter-spacing:48.128000pt;}
.ls25_c00000{letter-spacing:51.503360pt;}
.lse_c00000{letter-spacing:172.431552pt;}
.ls96_c00000{letter-spacing:1064.074667pt;}
.ls7_c00000{letter-spacing:1416.858027pt;}
.lsa_c00000{letter-spacing:1528.378027pt;}
.ls9_c00000{letter-spacing:1541.178027pt;}
.ws22_c00000{word-spacing:-64.000000pt;}
.ws11_c00000{word-spacing:-45.408000pt;}
.ws53_c00000{word-spacing:-40.261760pt;}
.ws2f_c00000{word-spacing:-37.840000pt;}
.ws1c_c00000{word-spacing:-35.600107pt;}
.ws2d_c00000{word-spacing:-35.418240pt;}
.ws8_c00000{word-spacing:-23.541120pt;}
.ws24_c00000{word-spacing:-21.280000pt;}
.ws4e_c00000{word-spacing:-21.111467pt;}
.ws3e_c00000{word-spacing:-20.816640pt;}
.ws23_c00000{word-spacing:-19.524907pt;}
.ws41_c00000{word-spacing:-19.471573pt;}
.ws34_c00000{word-spacing:-18.993173pt;}
.ws1f_c00000{word-spacing:-18.884373pt;}
.ws42_c00000{word-spacing:-18.863573pt;}
.ws52_c00000{word-spacing:-18.844373pt;}
.ws17_c00000{word-spacing:-18.833707pt;}
.ws2e_c00000{word-spacing:-18.740373pt;}
.ws51_c00000{word-spacing:-18.734507pt;}
.ws1e_c00000{word-spacing:-18.698240pt;}
.ws32_c00000{word-spacing:-18.666773pt;}
.ws4b_c00000{word-spacing:-18.636373pt;}
.ws49_c00000{word-spacing:-18.562773pt;}
.ws2a_c00000{word-spacing:-18.560000pt;}
.ws29_c00000{word-spacing:-18.550507pt;}
.ws33_c00000{word-spacing:-18.542507pt;}
.ws30_c00000{word-spacing:-18.398507pt;}
.ws3c_c00000{word-spacing:-18.270720pt;}
.ws40_c00000{word-spacing:-18.240000pt;}
.ws31_c00000{word-spacing:-18.167040pt;}
.ws4f_c00000{word-spacing:-18.165653pt;}
.ws13_c00000{word-spacing:-18.048000pt;}
.ws21_c00000{word-spacing:-17.984000pt;}
.ws48_c00000{word-spacing:-17.950720pt;}
.ws27_c00000{word-spacing:-17.920000pt;}
.ws12_c00000{word-spacing:-17.792000pt;}
.ws26_c00000{word-spacing:-17.728000pt;}
.ws19_c00000{word-spacing:-17.664000pt;}
.ws20_c00000{word-spacing:-17.600000pt;}
.ws2b_c00000{word-spacing:-17.408000pt;}
.ws4a_c00000{word-spacing:-17.344000pt;}
.ws43_c00000{word-spacing:-17.280000pt;}
.ws3f_c00000{word-spacing:-17.152000pt;}
.ws25_c00000{word-spacing:-17.024000pt;}
.ws50_c00000{word-spacing:-16.777387pt;}
.ws9_c00000{word-spacing:-16.368640pt;}
.wsa_c00000{word-spacing:-16.271573pt;}
.ws57_c00000{word-spacing:-16.256000pt;}
.ws10_c00000{word-spacing:-16.097173pt;}
.ws3d_c00000{word-spacing:-16.000000pt;}
.ws3b_c00000{word-spacing:-15.680000pt;}
.ws55_c00000{word-spacing:-15.616000pt;}
.ws44_c00000{word-spacing:-15.311360pt;}
.ws1_c00000{word-spacing:-15.014400pt;}
.ws3_c00000{word-spacing:-14.837760pt;}
.wsf_c00000{word-spacing:-14.816640pt;}
.ws35_c00000{word-spacing:-14.767360pt;}
.ws2_c00000{word-spacing:-14.720000pt;}
.ws46_c00000{word-spacing:-14.672427pt;}
.ws4c_c00000{word-spacing:-14.536427pt;}
.ws36_c00000{word-spacing:-14.430933pt;}
.ws18_c00000{word-spacing:-13.534613pt;}
.ws0_c00000{word-spacing:-13.333120pt;}
.ws45_c00000{word-spacing:-12.894613pt;}
.ws37_c00000{word-spacing:-11.920640pt;}
.ws59_c00000{word-spacing:-11.759573pt;}
.ws7_c00000{word-spacing:-0.647680pt;}
.ws2c_c00000{word-spacing:-0.640000pt;}
.ws4d_c00000{word-spacing:-0.512000pt;}
.ws39_c00000{word-spacing:-0.362667pt;}
.ws6_c00000{word-spacing:-0.212480pt;}
.ws5_c00000{word-spacing:-0.117760pt;}
.ws38_c00000{word-spacing:-0.112000pt;}
.ws1b_c00000{word-spacing:-0.064000pt;}
.ws4_c00000{word-spacing:0.000000pt;}
.ws56_c00000{word-spacing:0.122667pt;}
.ws58_c00000{word-spacing:0.250667pt;}
.ws3a_c00000{word-spacing:0.256000pt;}
.ws47_c00000{word-spacing:0.277333pt;}
.ws1a_c00000{word-spacing:0.576000pt;}
.ws54_c00000{word-spacing:0.634667pt;}
.ws16_c00000{word-spacing:0.869333pt;}
.ws1d_c00000{word-spacing:4.224000pt;}
.ws28_c00000{word-spacing:12.992000pt;}
.wsb_c00000{word-spacing:30.816640pt;}
.wsd_c00000{word-spacing:35.607360pt;}
.wsc_c00000{word-spacing:38.730560pt;}
.ws15_c00000{word-spacing:177.386667pt;}
.ws14_c00000{word-spacing:228.202667pt;}
.wse_c00000{word-spacing:1378.879147pt;}
._58_c00000{margin-left:-174.183524pt;}
._6_c00000{margin-left:-21.530624pt;}
._54_c00000{margin-left:-15.574741pt;}
._2a_c00000{margin-left:-14.227896pt;}
._45_c00000{margin-left:-12.852937pt;}
._9b_c00000{margin-left:-11.264000pt;}
._e1_c00000{margin-left:-9.641728pt;}
._e2_c00000{margin-left:-8.742615pt;}
._2e_c00000{margin-left:-7.787858pt;}
._71_c00000{margin-left:-5.402713pt;}
._1e_c00000{margin-left:-4.297322pt;}
._5_c00000{margin-left:-2.910634pt;}
._2_c00000{margin-left:-1.951616pt;}
._0_c00000{margin-left:-0.960384pt;}
._1_c00000{width:1.077504pt;}
._55_c00000{width:2.027434pt;}
._32_c00000{width:2.976945pt;}
._5c_c00000{width:3.968000pt;}
._5d_c00000{width:5.440000pt;}
._60_c00000{width:6.420022pt;}
._1c_c00000{width:7.549165pt;}
._23_c00000{width:8.638336pt;}
._3b_c00000{width:9.909357pt;}
._63_c00000{width:11.359488pt;}
._62_c00000{width:12.608000pt;}
._47_c00000{width:14.359941pt;}
._61_c00000{width:15.872000pt;}
._57_c00000{width:17.640136pt;}
._24_c00000{width:19.559555pt;}
._5e_c00000{width:20.652278pt;}
._5f_c00000{width:21.898980pt;}
._c_c00000{width:22.871927pt;}
._65_c00000{width:23.936000pt;}
._6d_c00000{width:24.881526pt;}
._34_c00000{width:25.880970pt;}
._5b_c00000{width:27.016945pt;}
._35_c00000{width:28.187528pt;}
._68_c00000{width:29.717781pt;}
._1d_c00000{width:30.719701pt;}
._66_c00000{width:31.765888pt;}
._37_c00000{width:32.931437pt;}
._73_c00000{width:33.859205pt;}
._3e_c00000{width:34.790484pt;}
._38_c00000{width:35.750927pt;}
._70_c00000{width:36.928000pt;}
._6e_c00000{width:37.824000pt;}
._69_c00000{width:38.826432pt;}
._67_c00000{width:39.786688pt;}
._7b_c00000{width:40.681920pt;}
._f_c00000{width:41.642173pt;}
._25_c00000{width:43.100715pt;}
._9c_c00000{width:44.042202pt;}
._4_c00000{width:44.960034pt;}
._4b_c00000{width:46.665108pt;}
._33_c00000{width:47.862838pt;}
._21_c00000{width:48.913341pt;}
._6c_c00000{width:50.432000pt;}
._6b_c00000{width:52.032000pt;}
._6f_c00000{width:53.056000pt;}
._87_c00000{width:54.784000pt;}
._86_c00000{width:56.192000pt;}
._2d_c00000{width:57.552599pt;}
._7a_c00000{width:58.473298pt;}
._82_c00000{width:59.379428pt;}
._2c_c00000{width:60.876572pt;}
._81_c00000{width:62.656000pt;}
._31_c00000{width:64.249244pt;}
._9d_c00000{width:65.779948pt;}
._b2_c00000{width:67.466624pt;}
._97_c00000{width:68.522688pt;}
._7e_c00000{width:70.080000pt;}
._89_c00000{width:71.850688pt;}
._28_c00000{width:73.469611pt;}
._8a_c00000{width:74.368860pt;}
._20_c00000{width:75.391140pt;}
._c5_c00000{width:76.352000pt;}
._c4_c00000{width:77.248000pt;}
._42_c00000{width:79.402212pt;}
._39_c00000{width:82.654812pt;}
._76_c00000{width:85.248000pt;}
._f0_c00000{width:87.104000pt;}
._8f_c00000{width:89.280572pt;}
._3_c00000{width:90.378690pt;}
._52_c00000{width:94.336847pt;}
._d6_c00000{width:95.936000pt;}
._51_c00000{width:97.065568pt;}
._2f_c00000{width:99.523674pt;}
._b3_c00000{width:102.784000pt;}
._99_c00000{width:107.712000pt;}
._98_c00000{width:108.906688pt;}
._56_c00000{width:110.167521pt;}
._59_c00000{width:112.070196pt;}
._e_c00000{width:113.464277pt;}
._2b_c00000{width:132.051566pt;}
._18_c00000{width:135.053483pt;}
._22_c00000{width:138.376947pt;}
._53_c00000{width:149.967980pt;}
._b_c00000{width:154.045525pt;}
._16_c00000{width:155.826669pt;}
._64_c00000{width:157.098667pt;}
._30_c00000{width:158.345760pt;}
._27_c00000{width:162.337293pt;}
._29_c00000{width:164.808056pt;}
._36_c00000{width:168.247361pt;}
._1f_c00000{width:172.431552pt;}
._26_c00000{width:173.368683pt;}
._9_c00000{width:207.886719pt;}
._4d_c00000{width:220.917142pt;}
._eb_c00000{width:268.288000pt;}
._d5_c00000{width:281.248000pt;}
._46_c00000{width:325.375175pt;}
._d0_c00000{width:336.128000pt;}
._da_c00000{width:352.288000pt;}
._49_c00000{width:353.882183pt;}
._48_c00000{width:360.641348pt;}
._cf_c00000{width:370.848000pt;}
._3d_c00000{width:383.202389pt;}
._4e_c00000{width:387.696790pt;}
._b9_c00000{width:399.520000pt;}
._d1_c00000{width:402.154667pt;}
._13_c00000{width:414.808813pt;}
._cd_c00000{width:433.514667pt;}
._41_c00000{width:446.728789pt;}
._cc_c00000{width:455.680000pt;}
._4f_c00000{width:458.629675pt;}
._a_c00000{width:460.905685pt;}
._f2_c00000{width:464.288000pt;}
._4c_c00000{width:468.697515pt;}
._ce_c00000{width:480.288000pt;}
._ca_c00000{width:482.154667pt;}
._6a_c00000{width:485.226667pt;}
._cb_c00000{width:487.968000pt;}
._a0_c00000{width:505.216000pt;}
._4a_c00000{width:514.592427pt;}
._93_c00000{width:519.786667pt;}
._d4_c00000{width:528.128000pt;}
._78_c00000{width:530.208000pt;}
._e4_c00000{width:533.408000pt;}
._79_c00000{width:544.234667pt;}
._43_c00000{width:549.468378pt;}
._e5_c00000{width:560.234667pt;}
._b6_c00000{width:576.128000pt;}
._3c_c00000{width:578.378093pt;}
._dd_c00000{width:587.168000pt;}
._af_c00000{width:607.519573pt;}
._d2_c00000{width:619.168000pt;}
._ed_c00000{width:624.106667pt;}
._d3_c00000{width:625.514667pt;}
._dc_c00000{width:627.434667pt;}
._b5_c00000{width:631.968000pt;}
._1b_c00000{width:638.893099pt;}
._8d_c00000{width:640.234667pt;}
._ad_c00000{width:647.919787pt;}
._a6_c00000{width:658.080000pt;}
._c6_c00000{width:665.248000pt;}
._3a_c00000{width:668.245077pt;}
._8c_c00000{width:682.399787pt;}
._a3_c00000{width:703.520000pt;}
._c3_c00000{width:709.482667pt;}
._ab_c00000{width:713.120000pt;}
._14_c00000{width:718.784043pt;}
._9e_c00000{width:720.106667pt;}
._75_c00000{width:722.730667pt;}
._ba_c00000{width:732.394667pt;}
._7_c00000{width:735.498667pt;}
._aa_c00000{width:740.586667pt;}
._5a_c00000{width:742.602667pt;}
._c7_c00000{width:747.290027pt;}
._72_c00000{width:750.346667pt;}
._96_c00000{width:754.831787pt;}
._d8_c00000{width:756.362667pt;}
._8e_c00000{width:784.288000pt;}
._b0_c00000{width:788.106240pt;}
._be_c00000{width:791.146667pt;}
._ef_c00000{width:793.760000pt;}
._40_c00000{width:796.773101pt;}
._ae_c00000{width:799.653120pt;}
._c2_c00000{width:800.906667pt;}
._bf_c00000{width:807.786667pt;}
._9a_c00000{width:810.703360pt;}
._bb_c00000{width:823.946667pt;}
._d7_c00000{width:825.194667pt;}
._e6_c00000{width:832.746667pt;}
._b4_c00000{width:840.426667pt;}
._db_c00000{width:848.106667pt;}
._e3_c00000{width:850.442667pt;}
._91_c00000{width:852.000000pt;}
._c1_c00000{width:855.146240pt;}
._19_c00000{width:870.359467pt;}
._77_c00000{width:882.826667pt;}
._44_c00000{width:889.903303pt;}
._bd_c00000{width:891.626667pt;}
._d9_c00000{width:903.914667pt;}
._e8_c00000{width:916.128000pt;}
._c9_c00000{width:922.634667pt;}
._d_c00000{width:927.897054pt;}
._e7_c00000{width:930.186667pt;}
._a9_c00000{width:935.968000pt;}
._c8_c00000{width:944.394667pt;}
._83_c00000{width:947.466667pt;}
._a7_c00000{width:960.266667pt;}
._8b_c00000{width:975.930027pt;}
._ee_c00000{width:983.946667pt;}
._a1_c00000{width:987.786667pt;}
._bc_c00000{width:992.394667pt;}
._12_c00000{width:1010.240043pt;}
._b7_c00000{width:1012.234667pt;}
._9f_c00000{width:1032.074667pt;}
._92_c00000{width:1033.226667pt;}
._15_c00000{width:1036.351915pt;}
._88_c00000{width:1059.594667pt;}
._ac_c00000{width:1065.226667pt;}
._10_c00000{width:1080.438637pt;}
._a8_c00000{width:1081.866667pt;}
._17_c00000{width:1090.829099pt;}
._c0_c00000{width:1093.514667pt;}
._df_c00000{width:1097.866667pt;}
._b1_c00000{width:1103.626240pt;}
._7f_c00000{width:1105.162667pt;}
._7c_c00000{width:1107.466667pt;}
._ea_c00000{width:1111.434667pt;}
._74_c00000{width:1112.714667pt;}
._3f_c00000{width:1116.697942pt;}
._e9_c00000{width:1121.034667pt;}
._a4_c00000{width:1129.354667pt;}
._90_c00000{width:1136.266667pt;}
._e0_c00000{width:1140.234667pt;}
._de_c00000{width:1154.954667pt;}
._84_c00000{width:1168.394667pt;}
._1a_c00000{width:1190.820267pt;}
._11_c00000{width:1200.069163pt;}
._94_c00000{width:1261.065813pt;}
._95_c00000{width:1290.506027pt;}
._ec_c00000{width:1303.572907pt;}
._f1_c00000{width:1328.394667pt;}
._80_c00000{width:1367.306667pt;}
._a2_c00000{width:1385.226667pt;}
._b8_c00000{width:1448.074667pt;}
._7d_c00000{width:1544.074667pt;}
._85_c00000{width:1568.394667pt;}
._50_c00000{width:1587.459797pt;}
._a5_c00000{width:1746.986667pt;}
._8_c00000{width:1762.793259pt;}
.fsd_c00000{font-size:34.560000pt;}
.fsf_c00000{font-size:37.120000pt;}
.fsc_c00000{font-size:42.880000pt;}
.fs12_c00000{font-size:45.440000pt;}
.fs3_c00000{font-size:48.000000pt;}
.fs2_c00000{font-size:53.120000pt;}
.fs1_c00000{font-size:56.320000pt;}
.fs0_c00000{font-size:58.880000pt;}
.fs10_c00000{font-size:61.440000pt;}
.fsa_c00000{font-size:64.000000pt;}
.fs13_c00000{font-size:69.120000pt;}
.fse_c00000{font-size:74.880000pt;}
.fs11_c00000{font-size:80.000000pt;}
.fsb_c00000{font-size:85.120000pt;}
.fs9_c00000{font-size:96.000000pt;}
.fs4_c00000{font-size:106.880000pt;}
.fs7_c00000{font-size:117.120000pt;}
.fs5_c00000{font-size:128.000000pt;}
.fs6_c00000{font-size:149.120000pt;}
.fs8_c00000{font-size:160.000000pt;}
.y13a9_c00000{bottom:-51.200000pt;}
.yd93_c00000{bottom:-22.080000pt;}
.y13a8_c00000{bottom:-21.120000pt;}
.yb77_c00000{bottom:-18.253333pt;}
.y12ae_c00000{bottom:-18.226667pt;}
.yf2a_c00000{bottom:-14.728000pt;}
.y1204_c00000{bottom:-10.240000pt;}
.yd8c_c00000{bottom:-9.906667pt;}
.yba4_c00000{bottom:-1.760000pt;}
.y1269_c00000{bottom:-1.746667pt;}
.yfe1_c00000{bottom:-1.600000pt;}
.ycda_c00000{bottom:-1.586667pt;}
.y0_c00000{bottom:0.000000pt;}
.y874_c00000{bottom:0.472000pt;}
.yb1c_c00000{bottom:0.640000pt;}
.yf29_c00000{bottom:0.792000pt;}
.y1388_c00000{bottom:0.800000pt;}
.y11ed_c00000{bottom:1.120000pt;}
.yd61_c00000{bottom:1.133333pt;}
.yed8_c00000{bottom:1.272000pt;}
.y1403_c00000{bottom:1.280000pt;}
.y107b_c00000{bottom:1.293333pt;}
.ydb2_c00000{bottom:1.613333pt;}
.yf08_c00000{bottom:1.760000pt;}
.y1342_c00000{bottom:1.773333pt;}
.y1214_c00000{bottom:1.906667pt;}
.ycaf_c00000{bottom:1.920000pt;}
.y13d0_c00000{bottom:2.072000pt;}
.ybd3_c00000{bottom:2.080000pt;}
.ye11_c00000{bottom:2.226667pt;}
.yfa8_c00000{bottom:2.240000pt;}
.yf24_c00000{bottom:2.253333pt;}
.yd5d_c00000{bottom:2.386667pt;}
.ycba_c00000{bottom:2.400000pt;}
.yd65_c00000{bottom:2.413333pt;}
.ye44_c00000{bottom:2.546667pt;}
.yacd_c00000{bottom:2.552000pt;}
.y100a_c00000{bottom:2.560000pt;}
.yeee_c00000{bottom:2.573333pt;}
.y105f_c00000{bottom:2.706667pt;}
.y5e1_c00000{bottom:2.720000pt;}
.y5e6_c00000{bottom:2.733333pt;}
.y140e_c00000{bottom:2.866667pt;}
.y779_c00000{bottom:2.872000pt;}
.y5df_c00000{bottom:2.880000pt;}
.y5ea_c00000{bottom:2.893333pt;}
.y12d5_c00000{bottom:3.026667pt;}
.ydc0_c00000{bottom:3.053333pt;}
.y12c2_c00000{bottom:3.186667pt;}
.y90c_c00000{bottom:3.200000pt;}
.y1276_c00000{bottom:3.213333pt;}
.y5fd_c00000{bottom:3.360000pt;}
.ybb8_c00000{bottom:3.373333pt;}
.y1348_c00000{bottom:3.386667pt;}
.ye87_c00000{bottom:3.506667pt;}
.y5fa_c00000{bottom:3.520000pt;}
.y47a_c00000{bottom:3.666667pt;}
.ye8b_c00000{bottom:3.672000pt;}
.y46c_c00000{bottom:3.680000pt;}
.y46f_c00000{bottom:3.693333pt;}
.ybff_c00000{bottom:3.832000pt;}
.yfc5_c00000{bottom:3.840000pt;}
.yf43_c00000{bottom:3.853333pt;}
.yf6c_c00000{bottom:3.986667pt;}
.y1111_c00000{bottom:4.000000pt;}
.y1026_c00000{bottom:4.013333pt;}
.y126d_c00000{bottom:4.146667pt;}
.y112d_c00000{bottom:4.160000pt;}
.yf69_c00000{bottom:4.173333pt;}
.y1128_c00000{bottom:4.306667pt;}
.yfbd_c00000{bottom:4.312000pt;}
.yab1_c00000{bottom:4.320000pt;}
.y10e0_c00000{bottom:4.333333pt;}
.y885_c00000{bottom:4.466667pt;}
.y87a_c00000{bottom:4.480000pt;}
.y87e_c00000{bottom:4.493333pt;}
.yf1e_c00000{bottom:4.506667pt;}
.yfb1_c00000{bottom:4.626667pt;}
.yb25_c00000{bottom:4.640000pt;}
.yc20_c00000{bottom:4.653333pt;}
.yf5c_c00000{bottom:4.786667pt;}
.y1227_c00000{bottom:4.800000pt;}
.yf1a_c00000{bottom:4.813333pt;}
.ya15_c00000{bottom:4.952000pt;}
.y1053_c00000{bottom:4.960000pt;}
.yb72_c00000{bottom:4.973333pt;}
.ye6c_c00000{bottom:5.112000pt;}
.yd3f_c00000{bottom:5.120000pt;}
.yad7_c00000{bottom:5.133333pt;}
.ye8c_c00000{bottom:5.160000pt;}
.yf94_c00000{bottom:5.266667pt;}
.yf96_c00000{bottom:5.280000pt;}
.y11d4_c00000{bottom:5.293333pt;}
.y1391_c00000{bottom:5.426667pt;}
.yb0e_c00000{bottom:5.440000pt;}
.ya17_c00000{bottom:5.453333pt;}
.ycd7_c00000{bottom:5.586667pt;}
.y1199_c00000{bottom:5.592000pt;}
.ycc8_c00000{bottom:5.600000pt;}
.yb19_c00000{bottom:5.613333pt;}
.yfff_c00000{bottom:5.746667pt;}
.yccb_c00000{bottom:5.760000pt;}
.y120d_c00000{bottom:5.773333pt;}
.y1085_c00000{bottom:5.906667pt;}
.y860_c00000{bottom:5.920000pt;}
.yee1_c00000{bottom:5.933333pt;}
.ycd1_c00000{bottom:6.080000pt;}
.y7c9_c00000{bottom:6.093333pt;}
.y848_c00000{bottom:6.226667pt;}
.ybfa_c00000{bottom:6.240000pt;}
.y1434_c00000{bottom:6.253333pt;}
.yce6_c00000{bottom:6.386667pt;}
.yc54_c00000{bottom:6.392000pt;}
.y10b4_c00000{bottom:6.400000pt;}
.yca0_c00000{bottom:6.413333pt;}
.y142c_c00000{bottom:6.546667pt;}
.y1259_c00000{bottom:6.560000pt;}
.y1001_c00000{bottom:6.706667pt;}
.ya25_c00000{bottom:6.733333pt;}
.ya1f_c00000{bottom:6.880000pt;}
.yf46_c00000{bottom:6.893333pt;}
.y1185_c00000{bottom:7.026667pt;}
.yeb5_c00000{bottom:7.032000pt;}
.y75c_c00000{bottom:7.040000pt;}
.y75f_c00000{bottom:7.053333pt;}
.y764_c00000{bottom:7.066667pt;}
.yb0b_c00000{bottom:7.200000pt;}
.y122e_c00000{bottom:7.213333pt;}
.y83d_c00000{bottom:7.346667pt;}
.y11fa_c00000{bottom:7.352000pt;}
.y91b_c00000{bottom:7.360000pt;}
.y12dc_c00000{bottom:7.373333pt;}
.y56f_c00000{bottom:7.506667pt;}
.y102c_c00000{bottom:7.512000pt;}
.y9c4_c00000{bottom:7.520000pt;}
.ye68_c00000{bottom:7.533333pt;}
.y811_c00000{bottom:7.666667pt;}
.y10dd_c00000{bottom:7.680000pt;}
.y11a7_c00000{bottom:7.693333pt;}
.y881_c00000{bottom:7.840000pt;}
.ya66_c00000{bottom:7.853333pt;}
.ya33_c00000{bottom:8.000000pt;}
.y581_c00000{bottom:8.013333pt;}
.ycd8_c00000{bottom:8.146667pt;}
.ycc9_c00000{bottom:8.160000pt;}
.y733_c00000{bottom:8.173333pt;}
.yd1d_c00000{bottom:8.306667pt;}
.y12b0_c00000{bottom:8.312000pt;}
.yccc_c00000{bottom:8.320000pt;}
.y1004_c00000{bottom:8.466667pt;}
.y1262_c00000{bottom:8.472000pt;}
.y10a9_c00000{bottom:8.480000pt;}
.y10c3_c00000{bottom:8.493333pt;}
.y10a7_c00000{bottom:8.626667pt;}
.y10b5_c00000{bottom:8.632000pt;}
.ya35_c00000{bottom:8.640000pt;}
.yf3f_c00000{bottom:8.653333pt;}
.ybc7_c00000{bottom:8.786667pt;}
.y83a_c00000{bottom:8.800000pt;}
.y1143_c00000{bottom:8.813333pt;}
.y7c7_c00000{bottom:8.952000pt;}
.y10cf_c00000{bottom:8.960000pt;}
.yf22_c00000{bottom:9.112000pt;}
.ya73_c00000{bottom:9.133333pt;}
.y9d0_c00000{bottom:9.266667pt;}
.yee9_c00000{bottom:9.280000pt;}
.ya83_c00000{bottom:9.432000pt;}
.yafb_c00000{bottom:9.440000pt;}
.yaca_c00000{bottom:9.453333pt;}
.y10bd_c00000{bottom:9.586667pt;}
.yadd_c00000{bottom:9.600000pt;}
.yac2_c00000{bottom:9.613333pt;}
.y1365_c00000{bottom:9.640000pt;}
.yf99_c00000{bottom:9.746667pt;}
.ye0a_c00000{bottom:9.760000pt;}
.yb58_c00000{bottom:9.773333pt;}
.y131b_c00000{bottom:9.786667pt;}
.yc06_c00000{bottom:9.906667pt;}
.yc12_c00000{bottom:9.920000pt;}
.yfef_c00000{bottom:9.933333pt;}
.ydd7_c00000{bottom:10.080000pt;}
.y128d_c00000{bottom:10.226667pt;}
.yd1a_c00000{bottom:10.240000pt;}
.y13d4_c00000{bottom:10.253333pt;}
.y1401_c00000{bottom:10.392000pt;}
.ydca_c00000{bottom:10.400000pt;}
.y13e1_c00000{bottom:10.413333pt;}
.ya6a_c00000{bottom:10.552000pt;}
.y12a1_c00000{bottom:10.573333pt;}
.y115c_c00000{bottom:10.706667pt;}
.y94e_c00000{bottom:10.720000pt;}
.yf65_c00000{bottom:10.733333pt;}
.y943_c00000{bottom:10.866667pt;}
.y13f4_c00000{bottom:10.872000pt;}
.y5dd_c00000{bottom:10.880000pt;}
.y12cf_c00000{bottom:11.040000pt;}
.ydb6_c00000{bottom:11.080000pt;}
.yd33_c00000{bottom:11.200000pt;}
.y11aa_c00000{bottom:11.373333pt;}
.y1019_c00000{bottom:11.512000pt;}
.y5f1_c00000{bottom:11.520000pt;}
.y5f8_c00000{bottom:11.560000pt;}
.y5f3_c00000{bottom:11.680000pt;}
.y100d_c00000{bottom:11.693333pt;}
.y140a_c00000{bottom:11.840000pt;}
.yed2_c00000{bottom:11.986667pt;}
.ydf1_c00000{bottom:11.992000pt;}
.y723_c00000{bottom:12.000000pt;}
.yb74_c00000{bottom:12.146667pt;}
.ybae_c00000{bottom:12.160000pt;}
.y6f8_c00000{bottom:12.173333pt;}
.yb76_c00000{bottom:12.186667pt;}
.yb8b_c00000{bottom:12.200000pt;}
.y731_c00000{bottom:12.306667pt;}
.y761_c00000{bottom:12.320000pt;}
.yd01_c00000{bottom:12.333333pt;}
.y11f0_c00000{bottom:12.466667pt;}
.y13a5_c00000{bottom:12.472000pt;}
.y1222_c00000{bottom:12.480000pt;}
.y10b1_c00000{bottom:12.493333pt;}
.y93c_c00000{bottom:12.786667pt;}
.y10c6_c00000{bottom:12.800000pt;}
.y12ad_c00000{bottom:12.813333pt;}
.yfab_c00000{bottom:12.946667pt;}
.yb9c_c00000{bottom:12.960000pt;}
.y880_c00000{bottom:13.120000pt;}
.y122a_c00000{bottom:13.133333pt;}
.yf83_c00000{bottom:13.280000pt;}
.ye0c_c00000{bottom:13.426667pt;}
.yb9e_c00000{bottom:13.440000pt;}
.y1393_c00000{bottom:13.453333pt;}
.ya53_c00000{bottom:13.586667pt;}
.yd7f_c00000{bottom:13.600000pt;}
.yaef_c00000{bottom:13.746667pt;}
.y1338_c00000{bottom:13.760000pt;}
.y1260_c00000{bottom:13.920000pt;}
.yba9_c00000{bottom:13.933333pt;}
.y11d9_c00000{bottom:14.066667pt;}
.ybde_c00000{bottom:14.080000pt;}
.yfdf_c00000{bottom:14.226667pt;}
.yff1_c00000{bottom:14.232000pt;}
.yaf0_c00000{bottom:14.240000pt;}
.yfe3_c00000{bottom:14.253333pt;}
.y1130_c00000{bottom:14.386667pt;}
.y1051_c00000{bottom:14.560000pt;}
.y1017_c00000{bottom:14.573333pt;}
.ydc7_c00000{bottom:14.706667pt;}
.y105c_c00000{bottom:14.720000pt;}
.y1055_c00000{bottom:14.733333pt;}
.y1293_c00000{bottom:14.866667pt;}
.yfe8_c00000{bottom:15.053333pt;}
.yf2e_c00000{bottom:15.192000pt;}
.ya12_c00000{bottom:15.200000pt;}
.y108d_c00000{bottom:15.213333pt;}
.yf52_c00000{bottom:15.226667pt;}
.yd50_c00000{bottom:15.240000pt;}
.y7e0_c00000{bottom:15.346667pt;}
.yada_c00000{bottom:15.512000pt;}
.ydc4_c00000{bottom:15.520000pt;}
.y13d6_c00000{bottom:15.533333pt;}
.y1367_c00000{bottom:15.672000pt;}
.ydee_c00000{bottom:15.680000pt;}
.yc52_c00000{bottom:15.693333pt;}
.y124d_c00000{bottom:15.826667pt;}
.y13b3_c00000{bottom:15.840000pt;}
.y13b5_c00000{bottom:15.853333pt;}
.yba5_c00000{bottom:15.992000pt;}
.y13b1_c00000{bottom:16.000000pt;}
.y13b7_c00000{bottom:16.013333pt;}
.yf28_c00000{bottom:16.152000pt;}
.yb1b_c00000{bottom:16.160000pt;}
.y1418_c00000{bottom:16.173333pt;}
.y931_c00000{bottom:16.306667pt;}
.yb3c_c00000{bottom:16.312000pt;}
.y56c_c00000{bottom:16.320000pt;}
.y7d8_c00000{bottom:16.333333pt;}
.y13cd_c00000{bottom:16.360000pt;}
.yfdd_c00000{bottom:16.480000pt;}
.y11ce_c00000{bottom:16.520000pt;}
.y93f_c00000{bottom:16.626667pt;}
.y8b2_c00000{bottom:16.640000pt;}
.yd60_c00000{bottom:16.653333pt;}
.yed7_c00000{bottom:16.792000pt;}
.ybbc_c00000{bottom:16.800000pt;}
.y1405_c00000{bottom:16.813333pt;}
.yaf3_c00000{bottom:17.120000pt;}
.ydb1_c00000{bottom:17.133333pt;}
.y11cc_c00000{bottom:17.266667pt;}
.y13e0_c00000{bottom:17.280000pt;}
.y1213_c00000{bottom:17.426667pt;}
.y11a4_c00000{bottom:17.432000pt;}
.ycae_c00000{bottom:17.440000pt;}
.yeb3_c00000{bottom:17.453333pt;}
.ye10_c00000{bottom:17.586667pt;}
.y13cf_c00000{bottom:17.592000pt;}
.ybd2_c00000{bottom:17.600000pt;}
.yb1f_c00000{bottom:17.613333pt;}
.y1021_c00000{bottom:17.773333pt;}
.y1289_c00000{bottom:17.906667pt;}
.yacc_c00000{bottom:17.912000pt;}
.ycb9_c00000{bottom:17.920000pt;}
.yd64_c00000{bottom:17.933333pt;}
.yd5c_c00000{bottom:17.946667pt;}
.ye43_c00000{bottom:18.066667pt;}
.ye5a_c00000{bottom:18.072000pt;}
.yeed_c00000{bottom:18.093333pt;}
.y10e7_c00000{bottom:18.226667pt;}
.ye01_c00000{bottom:18.240000pt;}
.ye2f_c00000{bottom:18.253333pt;}
.y140d_c00000{bottom:18.386667pt;}
.y778_c00000{bottom:18.392000pt;}
.ye2d_c00000{bottom:18.400000pt;}
.ydbf_c00000{bottom:18.413333pt;}
.y12d4_c00000{bottom:18.546667pt;}
.yf67_c00000{bottom:18.573333pt;}
.y12c1_c00000{bottom:18.706667pt;}
.y90b_c00000{bottom:18.720000pt;}
.y1275_c00000{bottom:18.733333pt;}
.y142f_c00000{bottom:18.746667pt;}
.y5e7_c00000{bottom:18.880000pt;}
.ybb7_c00000{bottom:18.893333pt;}
.y5e3_c00000{bottom:18.906667pt;}
.y113a_c00000{bottom:18.920000pt;}
.yc14_c00000{bottom:19.026667pt;}
.y5de_c00000{bottom:19.040000pt;}
.yfec_c00000{bottom:19.053333pt;}
.y5f7_c00000{bottom:19.080000pt;}
.y1009_c00000{bottom:19.200000pt;}
.ybfe_c00000{bottom:19.346667pt;}
.y11e0_c00000{bottom:19.360000pt;}
.yf42_c00000{bottom:19.373333pt;}
.yf6b_c00000{bottom:19.506667pt;}
.y10ba_c00000{bottom:19.520000pt;}
.ye1c_c00000{bottom:19.533333pt;}
.ycd4_c00000{bottom:19.546667pt;}
.yb6c_c00000{bottom:19.672000pt;}
.y10c9_c00000{bottom:19.680000pt;}
.yf68_c00000{bottom:19.693333pt;}
.y11db_c00000{bottom:19.826667pt;}
.yab0_c00000{bottom:19.840000pt;}
.ya3c_c00000{bottom:19.853333pt;}
.yf1d_c00000{bottom:19.866667pt;}
.y11e6_c00000{bottom:19.880000pt;}
.y862_c00000{bottom:19.986667pt;}
.yf38_c00000{bottom:20.000000pt;}
.y119c_c00000{bottom:20.013333pt;}
.yf59_c00000{bottom:20.026667pt;}
.y1164_c00000{bottom:20.160000pt;}
.yd6f_c00000{bottom:20.173333pt;}
.yf5b_c00000{bottom:20.186667pt;}
.y104a_c00000{bottom:20.312000pt;}
.yfc4_c00000{bottom:20.320000pt;}
.yf34_c00000{bottom:20.333333pt;}
.yf3b_c00000{bottom:20.346667pt;}
.ya4e_c00000{bottom:20.360000pt;}
.ye7c_c00000{bottom:20.466667pt;}
.ya14_c00000{bottom:20.472000pt;}
.yd4e_c00000{bottom:20.480000pt;}
.yb71_c00000{bottom:20.493333pt;}
.yede_c00000{bottom:20.506667pt;}
.ye6b_c00000{bottom:20.626667pt;}
.ye9c_c00000{bottom:20.640000pt;}
.yd24_c00000{bottom:20.653333pt;}
.y10ac_c00000{bottom:20.800000pt;}
.yc17_c00000{bottom:20.813333pt;}
.y1115_c00000{bottom:20.946667pt;}
.yb0d_c00000{bottom:20.960000pt;}
.ybd8_c00000{bottom:20.973333pt;}
.y1198_c00000{bottom:21.112000pt;}
.y10f7_c00000{bottom:21.120000pt;}
.yb18_c00000{bottom:21.133333pt;}
.yfb0_c00000{bottom:21.266667pt;}
.yde1_c00000{bottom:21.280000pt;}
.y120c_c00000{bottom:21.293333pt;}
.y1031_c00000{bottom:21.426667pt;}
.y85f_c00000{bottom:21.440000pt;}
.yee0_c00000{bottom:21.453333pt;}
.yf6f_c00000{bottom:21.586667pt;}
.ybf9_c00000{bottom:21.600000pt;}
.yece_c00000{bottom:21.613333pt;}
.yd81_c00000{bottom:21.746667pt;}
.y1427_c00000{bottom:21.752000pt;}
.yf95_c00000{bottom:21.760000pt;}
.y1210_c00000{bottom:21.773333pt;}
.yce5_c00000{bottom:21.906667pt;}
.ybe0_c00000{bottom:21.920000pt;}
.yd14_c00000{bottom:21.933333pt;}
.y479_c00000{bottom:22.066667pt;}
.ye8a_c00000{bottom:22.072000pt;}
.y46b_c00000{bottom:22.080000pt;}
.y10e5_c00000{bottom:22.093333pt;}
.ycd5_c00000{bottom:22.106667pt;}
.y1092_c00000{bottom:22.120000pt;}
.y10c1_c00000{bottom:22.253333pt;}
.yffe_c00000{bottom:22.386667pt;}
.yeb4_c00000{bottom:22.392000pt;}
.ya1e_c00000{bottom:22.400000pt;}
.yf45_c00000{bottom:22.413333pt;}
.y13f6_c00000{bottom:22.573333pt;}
.y141f_c00000{bottom:22.586667pt;}
.y9e3_c00000{bottom:22.720000pt;}
.y9d7_c00000{bottom:22.733333pt;}
.y83c_c00000{bottom:22.866667pt;}
.y11f9_c00000{bottom:22.872000pt;}
.y91a_c00000{bottom:22.880000pt;}
.y1375_c00000{bottom:22.893333pt;}
.y56e_c00000{bottom:22.906667pt;}
.yda6_c00000{bottom:23.040000pt;}
.y810_c00000{bottom:23.226667pt;}
.ybd4_c00000{bottom:23.360000pt;}
.yd73_c00000{bottom:23.373333pt;}
.y1299_c00000{bottom:23.512000pt;}
.ya32_c00000{bottom:23.520000pt;}
.y580_c00000{bottom:23.533333pt;}
.yaac_c00000{bottom:23.666667pt;}
.y1005_c00000{bottom:23.680000pt;}
.y74d_c00000{bottom:23.693333pt;}
.ydfd_c00000{bottom:23.706667pt;}
.yd1c_c00000{bottom:23.826667pt;}
.y12af_c00000{bottom:23.832000pt;}
.y103c_c00000{bottom:23.986667pt;}
.y102b_c00000{bottom:23.992000pt;}
.y141d_c00000{bottom:24.146667pt;}
.ya34_c00000{bottom:24.160000pt;}
.y1193_c00000{bottom:24.320000pt;}
.y879_c00000{bottom:24.480000pt;}
.y884_c00000{bottom:24.506667pt;}
.y1069_c00000{bottom:24.520000pt;}
.y941_c00000{bottom:24.626667pt;}
.yf21_c00000{bottom:24.632000pt;}
.ya72_c00000{bottom:24.653333pt;}
.yea5_c00000{bottom:24.786667pt;}
.ya93_c00000{bottom:24.800000pt;}
.ya50_c00000{bottom:24.813333pt;}
.ya82_c00000{bottom:24.952000pt;}
.yadc_c00000{bottom:24.960000pt;}
.yac1_c00000{bottom:24.973333pt;}
.yac5_c00000{bottom:25.133333pt;}
.yf57_c00000{bottom:25.280000pt;}
.y112b_c00000{bottom:25.586667pt;}
.y111f_c00000{bottom:25.600000pt;}
.y128c_c00000{bottom:25.746667pt;}
.y1379_c00000{bottom:25.752000pt;}
.y101c_c00000{bottom:25.760000pt;}
.yc04_c00000{bottom:25.800000pt;}
.ydc9_c00000{bottom:25.920000pt;}
.ya69_c00000{bottom:26.072000pt;}
.y115b_c00000{bottom:26.226667pt;}
.yf98_c00000{bottom:26.386667pt;}
.y13f3_c00000{bottom:26.392000pt;}
.y1426_c00000{bottom:26.400000pt;}
.ybba_c00000{bottom:26.413333pt;}
.y91d_c00000{bottom:26.546667pt;}
.yd32_c00000{bottom:26.560000pt;}
.ydb5_c00000{bottom:26.600000pt;}
.y11a9_c00000{bottom:26.893333pt;}
.y1409_c00000{bottom:27.400000pt;}
.ydf0_c00000{bottom:27.512000pt;}
.y10e3_c00000{bottom:27.520000pt;}
.yab3_c00000{bottom:27.666667pt;}
.y87c_c00000{bottom:27.680000pt;}
.y121f_c00000{bottom:27.693333pt;}
.yb24_c00000{bottom:27.840000pt;}
.y10b0_c00000{bottom:27.853333pt;}
.y11ef_c00000{bottom:27.986667pt;}
.y1018_c00000{bottom:27.992000pt;}
.y121c_c00000{bottom:28.000000pt;}
.y1216_c00000{bottom:28.013333pt;}
.y12bc_c00000{bottom:28.146667pt;}
.y101b_c00000{bottom:28.160000pt;}
.y100c_c00000{bottom:28.173333pt;}
.y1129_c00000{bottom:28.306667pt;}
.y10c5_c00000{bottom:28.320000pt;}
.y12ac_c00000{bottom:28.333333pt;}
.y950_c00000{bottom:28.632000pt;}
.y103a_c00000{bottom:28.640000pt;}
.ya52_c00000{bottom:28.946667pt;}
.yd7e_c00000{bottom:28.960000pt;}
.yaee_c00000{bottom:29.266667pt;}
.yfaa_c00000{bottom:29.426667pt;}
.y131d_c00000{bottom:29.466667pt;}
.y13a1_c00000{bottom:29.592000pt;}
.y112f_c00000{bottom:29.906667pt;}
.yba2_c00000{bottom:29.920000pt;}
.ydc6_c00000{bottom:30.226667pt;}
.y127c_c00000{bottom:30.240000pt;}
.y1292_c00000{bottom:30.386667pt;}
.yf2d_c00000{bottom:30.552000pt;}
.yd4f_c00000{bottom:30.760000pt;}
.y7df_c00000{bottom:30.866667pt;}
.ydc3_c00000{bottom:30.880000pt;}
.y7d6_c00000{bottom:30.893333pt;}
.y123f_c00000{bottom:31.040000pt;}
.y1366_c00000{bottom:31.192000pt;}
.yb6e_c00000{bottom:31.240000pt;}
.yf27_c00000{bottom:31.512000pt;}
.y1149_c00000{bottom:31.672000pt;}
.y1387_c00000{bottom:31.680000pt;}
.yfe7_c00000{bottom:31.693333pt;}
.y93e_c00000{bottom:31.826667pt;}
.y141b_c00000{bottom:31.832000pt;}
.y8b1_c00000{bottom:31.840000pt;}
.y13af_c00000{bottom:31.853333pt;}
.y13cc_c00000{bottom:31.880000pt;}
.yed6_c00000{bottom:31.992000pt;}
.yd5f_c00000{bottom:32.013333pt;}
.y12a9_c00000{bottom:32.160000pt;}
.yf31_c00000{bottom:32.312000pt;}
.ybbb_c00000{bottom:32.320000pt;}
.y1233_c00000{bottom:32.466667pt;}
.yaf2_c00000{bottom:32.480000pt;}
.ydb0_c00000{bottom:32.493333pt;}
.y1296_c00000{bottom:32.626667pt;}
.yab9_c00000{bottom:32.800000pt;}
.ye0f_c00000{bottom:32.946667pt;}
.y1428_c00000{bottom:32.952000pt;}
.ybd1_c00000{bottom:32.960000pt;}
.yb1e_c00000{bottom:32.973333pt;}
.y763_c00000{bottom:33.146667pt;}
.y1288_c00000{bottom:33.266667pt;}
.yacb_c00000{bottom:33.272000pt;}
.y75b_c00000{bottom:33.280000pt;}
.yd63_c00000{bottom:33.293333pt;}
.yd5b_c00000{bottom:33.306667pt;}
.ye42_c00000{bottom:33.426667pt;}
.ye59_c00000{bottom:33.432000pt;}
.yeec_c00000{bottom:33.453333pt;}
.y953_c00000{bottom:33.586667pt;}
.ye00_c00000{bottom:33.600000pt;}
.y140c_c00000{bottom:33.746667pt;}
.ye2c_c00000{bottom:33.760000pt;}
.ydbe_c00000{bottom:33.773333pt;}
.y12d3_c00000{bottom:33.906667pt;}
.y12a5_c00000{bottom:33.920000pt;}
.y12c0_c00000{bottom:34.066667pt;}
.y1274_c00000{bottom:34.093333pt;}
.y1382_c00000{bottom:34.106667pt;}
.yefb_c00000{bottom:34.253333pt;}
.y1086_c00000{bottom:34.400000pt;}
.y1020_c00000{bottom:34.413333pt;}
.ycdd_c00000{bottom:34.560000pt;}
.yf41_c00000{bottom:34.573333pt;}
.ybfd_c00000{bottom:34.706667pt;}
.y1110_c00000{bottom:34.720000pt;}
.y11df_c00000{bottom:34.760000pt;}
.y1029_c00000{bottom:34.866667pt;}
.y10b9_c00000{bottom:34.880000pt;}
.ye1b_c00000{bottom:34.893333pt;}
.y126c_c00000{bottom:34.906667pt;}
.y1230_c00000{bottom:35.053333pt;}
.y10c8_c00000{bottom:35.080000pt;}
.y1159_c00000{bottom:35.200000pt;}
.ya3b_c00000{bottom:35.213333pt;}
.yf1c_c00000{bottom:35.226667pt;}
.ya6f_c00000{bottom:35.346667pt;}
.yf37_c00000{bottom:35.520000pt;}
.yd6e_c00000{bottom:35.533333pt;}
.yf3a_c00000{bottom:35.546667pt;}
.y1226_c00000{bottom:35.680000pt;}
.y105e_c00000{bottom:35.826667pt;}
.y10bb_c00000{bottom:35.840000pt;}
.y1380_c00000{bottom:35.853333pt;}
.ya4d_c00000{bottom:35.880000pt;}
.ycf0_c00000{bottom:35.986667pt;}
.y10ab_c00000{bottom:36.000000pt;}
.y12e2_c00000{bottom:36.013333pt;}
.yd8b_c00000{bottom:36.173333pt;}
.y87f_c00000{bottom:36.320000pt;}
.ybd7_c00000{bottom:36.333333pt;}
.y1197_c00000{bottom:36.472000pt;}
.yde0_c00000{bottom:36.480000pt;}
.y10f6_c00000{bottom:36.640000pt;}
.y120b_c00000{bottom:36.653333pt;}
.y12d1_c00000{bottom:36.666667pt;}
.y136b_c00000{bottom:36.786667pt;}
.y1203_c00000{bottom:36.800000pt;}
.yb61_c00000{bottom:36.813333pt;}
.y1049_c00000{bottom:36.946667pt;}
.ybf8_c00000{bottom:36.960000pt;}
.yecd_c00000{bottom:36.973333pt;}
.yf06_c00000{bottom:37.120000pt;}
.y1025_c00000{bottom:37.133333pt;}
.yee3_c00000{bottom:37.266667pt;}
.y10b3_c00000{bottom:37.280000pt;}
.y120f_c00000{bottom:37.293333pt;}
.y142d_c00000{bottom:37.306667pt;}
.y10d1_c00000{bottom:37.586667pt;}
.y10c0_c00000{bottom:37.613333pt;}
.y12b7_c00000{bottom:37.773333pt;}
.y1030_c00000{bottom:37.906667pt;}
.y122d_c00000{bottom:37.933333pt;}
.y11f8_c00000{bottom:38.226667pt;}
.yce3_c00000{bottom:38.240000pt;}
.y13a7_c00000{bottom:38.400000pt;}
.yda5_c00000{bottom:38.560000pt;}
.y1008_c00000{bottom:38.573333pt;}
.yaa8_c00000{bottom:38.720000pt;}
.yd72_c00000{bottom:38.733333pt;}
.yffd_c00000{bottom:38.866667pt;}
.y57f_c00000{bottom:38.893333pt;}
.ydfc_c00000{bottom:38.906667pt;}
.y1298_c00000{bottom:39.026667pt;}
.yaab_c00000{bottom:39.186667pt;}
.y1256_c00000{bottom:39.200000pt;}
.y12a7_c00000{bottom:39.520000pt;}
.yfe5_c00000{bottom:39.853333pt;}
.yf20_c00000{bottom:39.986667pt;}
.ya71_c00000{bottom:40.013333pt;}
.yea4_c00000{bottom:40.306667pt;}
.yafa_c00000{bottom:40.320000pt;}
.yac4_c00000{bottom:40.333333pt;}
.y11c8_c00000{bottom:40.480000pt;}
.y102a_c00000{bottom:40.626667pt;}
.yf56_c00000{bottom:40.640000pt;}
.y1335_c00000{bottom:40.666667pt;}
.y1336_c00000{bottom:40.826667pt;}
.y128b_c00000{bottom:40.946667pt;}
.y1378_c00000{bottom:41.266667pt;}
.ya68_c00000{bottom:41.426667pt;}
.y1425_c00000{bottom:41.800000pt;}
.yd31_c00000{bottom:41.920000pt;}
.ydb4_c00000{bottom:41.960000pt;}
.y1408_c00000{bottom:42.760000pt;}
.ydef_c00000{bottom:42.866667pt;}
.yfee_c00000{bottom:43.080000pt;}
.y10af_c00000{bottom:43.213333pt;}
.yba1_c00000{bottom:43.360000pt;}
.y13f9_c00000{bottom:43.373333pt;}
.y12bb_c00000{bottom:43.506667pt;}
.y10c4_c00000{bottom:43.680000pt;}
.y12ab_c00000{bottom:43.693333pt;}
.yd7d_c00000{bottom:44.320000pt;}
.y118c_c00000{bottom:44.626667pt;}
.y760_c00000{bottom:45.120000pt;}
.y1291_c00000{bottom:45.746667pt;}
.yf2c_c00000{bottom:45.906667pt;}
.y7de_c00000{bottom:46.226667pt;}
.ydc2_c00000{bottom:46.240000pt;}
.y133a_c00000{bottom:46.386667pt;}
.y123e_c00000{bottom:46.400000pt;}
.yf26_c00000{bottom:46.866667pt;}
.ye57_c00000{bottom:47.040000pt;}
.yc34_c00000{bottom:47.186667pt;}
.y141a_c00000{bottom:47.346667pt;}
.y12a8_c00000{bottom:47.520000pt;}
.y1192_c00000{bottom:47.560000pt;}
.yf30_c00000{bottom:47.666667pt;}
.y878_c00000{bottom:47.680000pt;}
.y883_c00000{bottom:47.706667pt;}
.y1068_c00000{bottom:47.720000pt;}
.y1232_c00000{bottom:47.826667pt;}
.y1295_c00000{bottom:47.986667pt;}
.ye0e_c00000{bottom:48.306667pt;}
.yeeb_c00000{bottom:48.653333pt;}
.ye41_c00000{bottom:48.786667pt;}
.ydff_c00000{bottom:48.960000pt;}
.y12bf_c00000{bottom:49.426667pt;}
.y11bb_c00000{bottom:49.760000pt;}
.y10cb_c00000{bottom:49.800000pt;}
.y12c9_c00000{bottom:49.933333pt;}
.ye1a_c00000{bottom:50.253333pt;}
.y1158_c00000{bottom:50.400000pt;}
.y10c7_c00000{bottom:50.440000pt;}
.y10df_c00000{bottom:50.573333pt;}
.yd6d_c00000{bottom:50.733333pt;}
.y1225_c00000{bottom:50.880000pt;}
.y101f_c00000{bottom:50.893333pt;}
.yd4d_c00000{bottom:51.080000pt;}
.y27_c00000{bottom:51.232000pt;}
.y11ba_c00000{bottom:51.533333pt;}
.ybd6_c00000{bottom:51.693333pt;}
.yddf_c00000{bottom:51.840000pt;}
.yb60_c00000{bottom:52.013333pt;}
.yecc_c00000{bottom:52.173333pt;}
.ybf7_c00000{bottom:52.320000pt;}
.yf05_c00000{bottom:52.480000pt;}
.y1223_c00000{bottom:52.640000pt;}
.y12b6_c00000{bottom:53.133333pt;}
.y1048_c00000{bottom:53.426667pt;}
.y1206_c00000{bottom:53.586667pt;}
.yd71_c00000{bottom:53.933333pt;}
.ydfb_c00000{bottom:54.266667pt;}
.yaaa_c00000{bottom:54.546667pt;}
.yaf9_c00000{bottom:55.520000pt;}
.yda4_c00000{bottom:55.560000pt;}
.yea3_c00000{bottom:55.666667pt;}
.y13f2_c00000{bottom:56.160000pt;}
.y1377_c00000{bottom:56.626667pt;}
.y12ba_c00000{bottom:58.866667pt;}
.y118b_c00000{bottom:59.826667pt;}
.y7dd_c00000{bottom:61.586667pt;}
.ydc1_c00000{bottom:61.600000pt;}
.ye1f_c00000{bottom:62.253333pt;}
.y12be_c00000{bottom:64.786667pt;}
.y12c8_c00000{bottom:65.293333pt;}
.ye19_c00000{bottom:65.613333pt;}
.y1157_c00000{bottom:65.760000pt;}
.y11b9_c00000{bottom:66.893333pt;}
.ydde_c00000{bottom:67.200000pt;}
.y101e_c00000{bottom:67.373333pt;}
.y13ab_c00000{bottom:67.680000pt;}
.y12b5_c00000{bottom:68.493333pt;}
.y26_c00000{bottom:69.152000pt;}
.yc18_c00000{bottom:69.430667pt;}
.ydfa_c00000{bottom:69.626667pt;}
.y118a_c00000{bottom:75.186667pt;}
.ye1e_c00000{bottom:77.773333pt;}
.y11b8_c00000{bottom:82.253333pt;}
.yddd_c00000{bottom:82.560000pt;}
.y1189_c00000{bottom:90.546667pt;}
.yb6b_c00000{bottom:94.440000pt;}
.ye58_c00000{bottom:94.760000pt;}
.yf2f_c00000{bottom:94.920000pt;}
.y7c6_c00000{bottom:95.080000pt;}
.y873_c00000{bottom:95.240000pt;}
.ya13_c00000{bottom:95.400000pt;}
.y13a0_c00000{bottom:95.560000pt;}
.ye89_c00000{bottom:95.720000pt;}
.y11ab_c00000{bottom:96.040000pt;}
.yca1_c00000{bottom:96.200000pt;}
.yf2b_c00000{bottom:96.520000pt;}
.y1148_c00000{bottom:96.840000pt;}
.y14c_c00000{bottom:97.152000pt;}
.y1400_c00000{bottom:97.640000pt;}
.y2a7_c00000{bottom:97.952000pt;}
.y12e0_c00000{bottom:98.112000pt;}
.yed4_c00000{bottom:98.272000pt;}
.yfba_c00000{bottom:98.432000pt;}
.ya6e_c00000{bottom:98.440000pt;}
.yf1f_c00000{bottom:98.760000pt;}
.yff0_c00000{bottom:98.920000pt;}
.y1424_c00000{bottom:99.232000pt;}
.y1376_c00000{bottom:99.240000pt;}
.yd4_c00000{bottom:99.712000pt;}
.yf80_c00000{bottom:100.032000pt;}
.yf50_c00000{bottom:100.192000pt;}
.yc53_c00000{bottom:100.200000pt;}
.y3c5_c00000{bottom:100.672000pt;}
.y1419_c00000{bottom:100.680000pt;}
.y123_c00000{bottom:100.832000pt;}
.yeaa_c00000{bottom:101.152000pt;}
.y1028_c00000{bottom:101.320000pt;}
.y72f_c00000{bottom:101.472000pt;}
.y229_c00000{bottom:101.792000pt;}
.ybf6_c00000{bottom:101.952000pt;}
.y6b5_c00000{bottom:102.112000pt;}
.yb20_c00000{bottom:102.272000pt;}
.ya64_c00000{bottom:102.432000pt;}
.y2a6_c00000{bottom:102.592000pt;}
.y7c5_c00000{bottom:102.752000pt;}
.y1047_c00000{bottom:102.760000pt;}
.y311_c00000{bottom:103.072000pt;}
.y1371_c00000{bottom:103.232000pt;}
.yb22_c00000{bottom:103.392000pt;}
.y1180_c00000{bottom:104.192000pt;}
.y94f_c00000{bottom:104.360000pt;}
.y104b_c00000{bottom:104.672000pt;}
.yb3b_c00000{bottom:104.840000pt;}
.ya67_c00000{bottom:105.320000pt;}
.y12d7_c00000{bottom:105.472000pt;}
.y8f8_c00000{bottom:105.632000pt;}
.y43b_c00000{bottom:105.792000pt;}
.y1188_c00000{bottom:105.906667pt;}
.yf7_c00000{bottom:106.112000pt;}
.y13a4_c00000{bottom:106.120000pt;}
.y127b_c00000{bottom:106.272000pt;}
.y1062_c00000{bottom:106.432000pt;}
.y48f_c00000{bottom:106.592000pt;}
.yfbc_c00000{bottom:106.600000pt;}
.yc71_c00000{bottom:107.392000pt;}
.y7d4_c00000{bottom:107.872000pt;}
.y1330_c00000{bottom:108.032000pt;}
.y777_c00000{bottom:108.040000pt;}
.ya81_c00000{bottom:108.200000pt;}
.y872_c00000{bottom:108.512000pt;}
.y8b_c00000{bottom:108.672000pt;}
.yc60_c00000{bottom:108.992000pt;}
.y1106_c00000{bottom:109.000000pt;}
.yd2f_c00000{bottom:109.312000pt;}
.yc48_c00000{bottom:109.472000pt;}
.y44d_c00000{bottom:109.632000pt;}
.y621_c00000{bottom:109.952000pt;}
.y11f7_c00000{bottom:110.120000pt;}
.y11a3_c00000{bottom:110.440000pt;}
.y130d_c00000{bottom:110.912000pt;}
.yec6_c00000{bottom:111.072000pt;}
.y1340_c00000{bottom:111.392000pt;}
.y1140_c00000{bottom:111.712000pt;}
.y10f4_c00000{bottom:111.872000pt;}
.y74b_c00000{bottom:112.032000pt;}
.y12a4_c00000{bottom:112.352000pt;}
.y25_c00000{bottom:112.491520pt;}
.y1058_c00000{bottom:112.672000pt;}
.yb6a_c00000{bottom:112.832000pt;}
.y138d_c00000{bottom:113.152000pt;}
.y14b_c00000{bottom:113.312000pt;}
.y754_c00000{bottom:113.472000pt;}
.yf18_c00000{bottom:113.632000pt;}
.yeef_c00000{bottom:113.640000pt;}
.y1050_c00000{bottom:113.792000pt;}
.y1b4_c00000{bottom:114.112000pt;}
.ye6a_c00000{bottom:114.280000pt;}
.y7a0_c00000{bottom:114.432000pt;}
.y190_c00000{bottom:114.592000pt;}
.y6b2_c00000{bottom:114.752000pt;}
.ycee_c00000{bottom:114.912000pt;}
.ye26_c00000{bottom:115.232000pt;}
.y1002_c00000{bottom:115.392000pt;}
.y2a5_c00000{bottom:115.552000pt;}
.yed0_c00000{bottom:115.712000pt;}
.yf75_c00000{bottom:115.872000pt;}
.ybfc_c00000{bottom:115.880000pt;}
.y94d_c00000{bottom:116.352000pt;}
.ycac_c00000{bottom:116.672000pt;}
.y1436_c00000{bottom:116.680000pt;}
.y1105_c00000{bottom:116.832000pt;}
.y11a2_c00000{bottom:117.152000pt;}
.yf47_c00000{bottom:117.320000pt;}
.y10b2_c00000{bottom:117.632000pt;}
.y14a_c00000{bottom:117.952000pt;}
.y13f0_c00000{bottom:118.112000pt;}
.y1398_c00000{bottom:118.272000pt;}
.yb3a_c00000{bottom:118.592000pt;}
.y1b3_c00000{bottom:118.752000pt;}
.y8f7_c00000{bottom:118.912000pt;}
.yab7_c00000{bottom:119.072000pt;}
.yabf_c00000{bottom:119.232000pt;}
.yd3_c00000{bottom:119.392000pt;}
.yced_c00000{bottom:119.552000pt;}
.y137e_c00000{bottom:120.032000pt;}
.y846_c00000{bottom:120.192000pt;}
.y1421_c00000{bottom:120.200000pt;}
.ya6d_c00000{bottom:120.352000pt;}
.y6b4_c00000{bottom:120.512000pt;}
.y122_c00000{bottom:120.672000pt;}
.yea9_c00000{bottom:120.832000pt;}
.y1014_c00000{bottom:120.992000pt;}
.y1187_c00000{bottom:121.266667pt;}
.y72e_c00000{bottom:121.312000pt;}
.y1429_c00000{bottom:121.472000pt;}
.y1063_c00000{bottom:121.480000pt;}
.y1370_c00000{bottom:121.792000pt;}
.y125f_c00000{bottom:121.952000pt;}
.yc02_c00000{bottom:122.432000pt;}
.ye9f_c00000{bottom:122.912000pt;}
.y13e7_c00000{bottom:123.072000pt;}
.ya11_c00000{bottom:123.232000pt;}
.ya92_c00000{bottom:123.392000pt;}
.ya63_c00000{bottom:123.552000pt;}
.y9fb_c00000{bottom:123.712000pt;}
.y7c4_c00000{bottom:124.032000pt;}
.yffb_c00000{bottom:124.512000pt;}
.ye3a_c00000{bottom:124.672000pt;}
.y13aa_c00000{bottom:124.832000pt;}
.yfb9_c00000{bottom:125.312000pt;}
.y8a_c00000{bottom:125.472000pt;}
.y43a_c00000{bottom:125.632000pt;}
.yf6_c00000{bottom:125.792000pt;}
.y102e_c00000{bottom:125.952000pt;}
.y48e_c00000{bottom:126.432000pt;}
.y795_c00000{bottom:126.592000pt;}
.y8f5_c00000{bottom:126.752000pt;}
.yb34_c00000{bottom:127.232000pt;}
.yad5_c00000{bottom:127.392000pt;}
.yf9a_c00000{bottom:127.552000pt;}
.ydec_c00000{bottom:128.352000pt;}
.y847_c00000{bottom:128.360000pt;}
.y57_c00000{bottom:128.672000pt;}
.yc5f_c00000{bottom:128.832000pt;}
.y7d3_c00000{bottom:128.992000pt;}
.y909_c00000{bottom:129.152000pt;}
.yc33_c00000{bottom:129.160000pt;}
.y24_c00000{bottom:129.287040pt;}
.yc47_c00000{bottom:129.312000pt;}
.y12e5_c00000{bottom:129.320000pt;}
.y166_c00000{bottom:129.472000pt;}
.yfa9_c00000{bottom:129.640000pt;}
.y620_c00000{bottom:129.792000pt;}
.ya4c_c00000{bottom:129.952000pt;}
.yf7f_c00000{bottom:130.112000pt;}
.y1da_c00000{bottom:130.272000pt;}
.y11a5_c00000{bottom:130.432000pt;}
.y7db_c00000{bottom:130.592000pt;}
.y44c_c00000{bottom:130.752000pt;}
.y149_c00000{bottom:130.912000pt;}
.yda2_c00000{bottom:131.072000pt;}
.yad9_c00000{bottom:131.392000pt;}
.y138c_c00000{bottom:131.552000pt;}
.y348_c00000{bottom:131.712000pt;}
.y74a_c00000{bottom:131.872000pt;}
.y1435_c00000{bottom:132.192000pt;}
.y132b_c00000{bottom:132.352000pt;}
.ycec_c00000{bottom:132.512000pt;}
.ye88_c00000{bottom:132.520000pt;}
.y1057_c00000{bottom:132.672000pt;}
.y113f_c00000{bottom:132.832000pt;}
.y13c6_c00000{bottom:132.992000pt;}
.y102f_c00000{bottom:133.000000pt;}
.y753_c00000{bottom:133.152000pt;}
.y310_c00000{bottom:133.466667pt;}
.y24b_c00000{bottom:134.106667pt;}
.y18f_c00000{bottom:134.266667pt;}
.y1147_c00000{bottom:134.426667pt;}
.y8cd_c00000{bottom:134.586667pt;}
.y420_c00000{bottom:134.746667pt;}
.y1d9_c00000{bottom:134.906667pt;}
.ye25_c00000{bottom:135.066667pt;}
.y79f_c00000{bottom:135.546667pt;}
.y1247_c00000{bottom:135.560000pt;}
.yda1_c00000{bottom:135.706667pt;}
.ycab_c00000{bottom:136.506667pt;}
.y132a_c00000{bottom:137.626667pt;}
.y1104_c00000{bottom:137.946667pt;}
.y13f7_c00000{bottom:138.106667pt;}
.y6b3_c00000{bottom:138.906667pt;}
.y92f_c00000{bottom:139.066667pt;}
.y9c3_c00000{bottom:139.706667pt;}
.yb39_c00000{bottom:139.866667pt;}
.y8f6_c00000{bottom:140.026667pt;}
.yab6_c00000{bottom:140.186667pt;}
.ybcf_c00000{bottom:140.346667pt;}
.y121_c00000{bottom:140.506667pt;}
.yea8_c00000{bottom:140.666667pt;}
.y1013_c00000{bottom:140.826667pt;}
.y72d_c00000{bottom:141.146667pt;}
.yfa6_c00000{bottom:141.626667pt;}
.y62f_c00000{bottom:141.946667pt;}
.y968_c00000{bottom:142.106667pt;}
.y89_c00000{bottom:142.266667pt;}
.y940_c00000{bottom:142.440000pt;}
.ye9e_c00000{bottom:142.746667pt;}
.y13e6_c00000{bottom:142.906667pt;}
.y11f6_c00000{bottom:143.066667pt;}
.y13d2_c00000{bottom:143.226667pt;}
.y112e_c00000{bottom:143.240000pt;}
.y1038_c00000{bottom:143.866667pt;}
.y11a1_c00000{bottom:144.026667pt;}
.y104f_c00000{bottom:144.186667pt;}
.ye39_c00000{bottom:144.346667pt;}
.ya91_c00000{bottom:144.506667pt;}
.ya62_c00000{bottom:144.666667pt;}
.y124c_c00000{bottom:144.680000pt;}
.y9fa_c00000{bottom:144.826667pt;}
.y132f_c00000{bottom:144.986667pt;}
.ye40_c00000{bottom:145.000000pt;}
.y7c3_c00000{bottom:145.146667pt;}
.y439_c00000{bottom:145.466667pt;}
.yd2e_c00000{bottom:145.626667pt;}
.yaa9_c00000{bottom:145.640000pt;}
.y165_c00000{bottom:145.786667pt;}
.ye9d_c00000{bottom:145.800000pt;}
.y6b1_c00000{bottom:145.946667pt;}
.y8f2_c00000{bottom:145.960000pt;}
.y23_c00000{bottom:146.082560pt;}
.y48d_c00000{bottom:146.266667pt;}
.y2da_c00000{bottom:146.586667pt;}
.y129e_c00000{bottom:146.906667pt;}
.y24a_c00000{bottom:147.066667pt;}
.y52b_c00000{bottom:147.226667pt;}
.y94c_c00000{bottom:147.386667pt;}
.yf7b_c00000{bottom:147.706667pt;}
.y1205_c00000{bottom:147.720000pt;}
.y1d8_c00000{bottom:147.866667pt;}
.yda0_c00000{bottom:148.026667pt;}
.y10bc_c00000{bottom:148.040000pt;}
.ydeb_c00000{bottom:148.186667pt;}
.ycef_c00000{bottom:148.200000pt;}
.y590_c00000{bottom:148.346667pt;}
.yedc_c00000{bottom:148.506667pt;}
.yc5e_c00000{bottom:148.666667pt;}
.ye17_c00000{bottom:148.826667pt;}
.yb40_c00000{bottom:148.840000pt;}
.yc46_c00000{bottom:149.146667pt;}
.ycff_c00000{bottom:149.466667pt;}
.y111e_c00000{bottom:149.626667pt;}
.y138b_c00000{bottom:149.786667pt;}
.y7d2_c00000{bottom:150.266667pt;}
.y164_c00000{bottom:150.426667pt;}
.yec5_c00000{bottom:150.746667pt;}
.yd2d_c00000{bottom:150.906667pt;}
.y3c4_c00000{bottom:151.226667pt;}
.y749_c00000{bottom:151.706667pt;}
.y44b_c00000{bottom:151.866667pt;}
.yee2_c00000{bottom:151.880000pt;}
.y12d2_c00000{bottom:152.040000pt;}
.y776_c00000{bottom:152.186667pt;}
.y5f0_c00000{bottom:152.346667pt;}
.ydae_c00000{bottom:152.506667pt;}
.ybb4_c00000{bottom:152.666667pt;}
.y347_c00000{bottom:152.826667pt;}
.y752_c00000{bottom:152.986667pt;}
.y139f_c00000{bottom:153.146667pt;}
.y12bd_c00000{bottom:153.320000pt;}
.y8f1_c00000{bottom:153.466667pt;}
.y1165_c00000{bottom:153.800000pt;}
.ye56_c00000{bottom:153.946667pt;}
.y18e_c00000{bottom:154.106667pt;}
.ye0d_c00000{bottom:154.280000pt;}
.y1415_c00000{bottom:154.426667pt;}
.y41f_c00000{bottom:154.586667pt;}
.y116e_c00000{bottom:154.746667pt;}
.y7dc_c00000{bottom:154.760000pt;}
.ya31_c00000{bottom:154.906667pt;}
.yffa_c00000{bottom:155.066667pt;}
.y141c_c00000{bottom:155.080000pt;}
.yb69_c00000{bottom:155.226667pt;}
.y93a_c00000{bottom:155.386667pt;}
.y8cc_c00000{bottom:155.706667pt;}
.y103b_c00000{bottom:155.720000pt;}
.y4fa_c00000{bottom:155.866667pt;}
.y80e_c00000{bottom:156.026667pt;}
.y942_c00000{bottom:156.040000pt;}
.ycaa_c00000{bottom:156.346667pt;}
.yf5_c00000{bottom:156.506667pt;}
.y79e_c00000{bottom:156.666667pt;}
.yc01_c00000{bottom:156.826667pt;}
.y137d_c00000{bottom:157.146667pt;}
.y228_c00000{bottom:157.306667pt;}
.yb56_c00000{bottom:157.466667pt;}
.y1061_c00000{bottom:157.626667pt;}
.ya10_c00000{bottom:157.786667pt;}
.ye7a_c00000{bottom:157.946667pt;}
.ye2a_c00000{bottom:157.960000pt;}
.yd80_c00000{bottom:158.120000pt;}
.y1184_c00000{bottom:158.280000pt;}
.y136f_c00000{bottom:158.586667pt;}
.y11d6_c00000{bottom:158.906667pt;}
.y39_c00000{bottom:159.066667pt;}
.y88_c00000{bottom:159.226667pt;}
.ydc8_c00000{bottom:159.386667pt;}
.y1286_c00000{bottom:159.706667pt;}
.y2a4_c00000{bottom:159.866667pt;}
.yd3e_c00000{bottom:160.026667pt;}
.y92e_c00000{bottom:160.186667pt;}
.y62e_c00000{bottom:160.346667pt;}
.y120_c00000{bottom:160.506667pt;}
.yc05_c00000{bottom:160.520000pt;}
.ye08_c00000{bottom:160.666667pt;}
.y871_c00000{bottom:160.826667pt;}
.y72c_c00000{bottom:160.986667pt;}
.yf4f_c00000{bottom:161.146667pt;}
.y8e8_c00000{bottom:161.306667pt;}
.yc13_c00000{bottom:161.320000pt;}
.yab5_c00000{bottom:161.466667pt;}
.yabe_c00000{bottom:161.626667pt;}
.y10e8_c00000{bottom:161.640000pt;}
.y36d_c00000{bottom:161.786667pt;}
.y163_c00000{bottom:161.946667pt;}
.y1000_c00000{bottom:161.960000pt;}
.y91c_c00000{bottom:162.120000pt;}
.y1316_c00000{bottom:162.266667pt;}
.y56_c00000{bottom:162.426667pt;}
.ye9b_c00000{bottom:162.586667pt;}
.y2d9_c00000{bottom:162.746667pt;}
.yd2c_c00000{bottom:162.906667pt;}
.y22_c00000{bottom:163.040000pt;}
.y11f5_c00000{bottom:163.066667pt;}
.y967_c00000{bottom:163.226667pt;}
.ydc5_c00000{bottom:163.240000pt;}
.y560_c00000{bottom:163.386667pt;}
.yaae_c00000{bottom:163.546667pt;}
.y10e6_c00000{bottom:163.560000pt;}
.ye66_c00000{bottom:163.706667pt;}
.y30f_c00000{bottom:164.026667pt;}
.y6b0_c00000{bottom:164.186667pt;}
.ya4b_c00000{bottom:164.506667pt;}
.yc32_c00000{bottom:164.666667pt;}
.y128e_c00000{bottom:164.826667pt;}
.y7da_c00000{bottom:164.986667pt;}
.y438_c00000{bottom:165.306667pt;}
.yebc_c00000{bottom:165.466667pt;}
.ybf5_c00000{bottom:165.626667pt;}
.ya90_c00000{bottom:165.786667pt;}
.ya61_c00000{bottom:165.946667pt;}
.y48c_c00000{bottom:166.106667pt;}
.y7c2_c00000{bottom:166.266667pt;}
.y133f_c00000{bottom:166.426667pt;}
.y23b_c00000{bottom:166.586667pt;}
.y1294_c00000{bottom:166.600000pt;}
.y61f_c00000{bottom:166.746667pt;}
.y9ed_c00000{bottom:166.906667pt;}
.yaed_c00000{bottom:166.920000pt;}
.yc70_c00000{bottom:167.066667pt;}
.y11f1_c00000{bottom:167.080000pt;}
.yd89_c00000{bottom:167.226667pt;}
.y2d8_c00000{bottom:167.386667pt;}
.y1231_c00000{bottom:167.400000pt;}
.yd2b_c00000{bottom:167.546667pt;}
.yb73_c00000{bottom:167.560000pt;}
.y117f_c00000{bottom:167.706667pt;}
.y1319_c00000{bottom:167.866667pt;}
.y469_c00000{bottom:168.026667pt;}
.y11da_c00000{bottom:168.040000pt;}
.y58f_c00000{bottom:168.186667pt;}
.y10d0_c00000{bottom:168.360000pt;}
.yc5d_c00000{bottom:168.506667pt;}
.yce4_c00000{bottom:168.520000pt;}
.yceb_c00000{bottom:168.666667pt;}
.yc0f_c00000{bottom:168.826667pt;}
.y1290_c00000{bottom:168.840000pt;}
.yc45_c00000{bottom:168.986667pt;}
.y8f4_c00000{bottom:169.146667pt;}
.y977_c00000{bottom:169.306667pt;}
.ye86_c00000{bottom:169.320000pt;}
.yad4_c00000{bottom:169.466667pt;}
.y1003_c00000{bottom:169.480000pt;}
.y127a_c00000{bottom:169.626667pt;}
.y742_c00000{bottom:170.106667pt;}
.y202_c00000{bottom:170.266667pt;}
.y5d9_c00000{bottom:170.426667pt;}
.yec4_c00000{bottom:170.586667pt;}
.y111d_c00000{bottom:170.746667pt;}
.y3c3_c00000{bottom:170.906667pt;}
.y7d1_c00000{bottom:171.386667pt;}
.y12b9_c00000{bottom:171.400000pt;}
.y6f6_c00000{bottom:171.546667pt;}
.y919_c00000{bottom:172.026667pt;}
.y142b_c00000{bottom:172.186667pt;}
.y1114_c00000{bottom:172.200000pt;}
.y5ef_c00000{bottom:172.346667pt;}
.y13c5_c00000{bottom:172.666667pt;}
.ye0b_c00000{bottom:172.680000pt;}
.y751_c00000{bottom:172.826667pt;}
.y148_c00000{bottom:172.986667pt;}
.y1d7_c00000{bottom:173.146667pt;}
.y775_c00000{bottom:173.306667pt;}
.yf17_c00000{bottom:173.466667pt;}
.ybb3_c00000{bottom:173.626667pt;}
.y11d8_c00000{bottom:173.640000pt;}
.yef9_c00000{bottom:173.786667pt;}
.y346_c00000{bottom:173.946667pt;}
.y18d_c00000{bottom:174.106667pt;}
.y1414_c00000{bottom:174.266667pt;}
.y1037_c00000{bottom:174.426667pt;}
.y8f0_c00000{bottom:174.586667pt;}
.yc9c_c00000{bottom:174.600000pt;}
.ye24_c00000{bottom:174.746667pt;}
.yd12_c00000{bottom:174.906667pt;}
.y123c_c00000{bottom:175.066667pt;}
.y10f3_c00000{bottom:175.226667pt;}
.y218_c00000{bottom:175.706667pt;}
.y249_c00000{bottom:175.866667pt;}
.y1271_c00000{bottom:175.880000pt;}
.y87_c00000{bottom:176.026667pt;}
.yfde_c00000{bottom:176.040000pt;}
.yca9_c00000{bottom:176.186667pt;}
.yb68_c00000{bottom:176.346667pt;}
.y110e_c00000{bottom:176.666667pt;}
.y11ee_c00000{bottom:176.680000pt;}
.y8cb_c00000{bottom:176.826667pt;}
.y115e_c00000{bottom:176.986667pt;}
.y2c1_c00000{bottom:177.306667pt;}
.ya51_c00000{bottom:177.320000pt;}
.ye46_c00000{bottom:177.626667pt;}
.yf7a_c00000{bottom:177.786667pt;}
.y9cf_c00000{bottom:177.800000pt;}
.y79d_c00000{bottom:177.946667pt;}
.y162_c00000{bottom:178.106667pt;}
.yaec_c00000{bottom:178.586667pt;}
.y62d_c00000{bottom:178.746667pt;}
.y49e_c00000{bottom:178.906667pt;}
.y83b_c00000{bottom:178.920000pt;}
.y3dc_c00000{bottom:179.066667pt;}
.yf6e_c00000{bottom:179.080000pt;}
.yac8_c00000{bottom:179.226667pt;}
.y55_c00000{bottom:179.386667pt;}
.y2a3_c00000{bottom:179.546667pt;}
.y98e_c00000{bottom:179.706667pt;}
.yab2_c00000{bottom:179.720000pt;}
.y21_c00000{bottom:179.856640pt;}
.y11f_c00000{bottom:180.186667pt;}
.y2d7_c00000{bottom:180.346667pt;}
.yd2a_c00000{bottom:180.506667pt;}
.yd2_c00000{bottom:180.666667pt;}
.y72b_c00000{bottom:180.826667pt;}
.y10dc_c00000{bottom:181.146667pt;}
.yea2_c00000{bottom:181.160000pt;}
.y92d_c00000{bottom:181.306667pt;}
.yfaf_c00000{bottom:181.466667pt;}
.y36c_c00000{bottom:181.626667pt;}
.y40b_c00000{bottom:181.786667pt;}
.y32d_c00000{bottom:181.946667pt;}
.yf6a_c00000{bottom:181.960000pt;}
.y870_c00000{bottom:182.106667pt;}
.y8af_c00000{bottom:182.426667pt;}
.yf6d_c00000{bottom:182.440000pt;}
.yab4_c00000{bottom:182.586667pt;}
.y161_c00000{bottom:182.746667pt;}
.y11f4_c00000{bottom:182.906667pt;}
.y828_c00000{bottom:183.066667pt;}
.y282_c00000{bottom:183.226667pt;}
.y651_c00000{bottom:183.386667pt;}
.y9e0_c00000{bottom:183.546667pt;}
.yc9b_c00000{bottom:183.706667pt;}
.y52a_c00000{bottom:183.866667pt;}
.ye38_c00000{bottom:184.026667pt;}
.y1113_c00000{bottom:184.040000pt;}
.y98d_c00000{bottom:184.346667pt;}
.y966_c00000{bottom:184.506667pt;}
.y1339_c00000{bottom:184.520000pt;}
.y9ce_c00000{bottom:184.666667pt;}
.yd19_c00000{bottom:184.826667pt;}
.y133e_c00000{bottom:184.986667pt;}
.y437_c00000{bottom:185.146667pt;}
.y41e_c00000{bottom:185.306667pt;}
.yf3d_c00000{bottom:185.466667pt;}
.yf35_c00000{bottom:185.626667pt;}
.y1406_c00000{bottom:185.640000pt;}
.yf7e_c00000{bottom:185.946667pt;}
.y48b_c00000{bottom:186.106667pt;}
.y939_c00000{bottom:186.266667pt;}
.ybf4_c00000{bottom:186.586667pt;}
.ye29_c00000{bottom:186.746667pt;}
.ya8f_c00000{bottom:186.906667pt;}
.yf4_c00000{bottom:187.066667pt;}
.y9f9_c00000{bottom:187.226667pt;}
.y7c1_c00000{bottom:187.386667pt;}
.yba7_c00000{bottom:187.546667pt;}
.y468_c00000{bottom:187.706667pt;}
.y11cb_c00000{bottom:187.720000pt;}
.y918_c00000{bottom:187.866667pt;}
.y58e_c00000{bottom:188.026667pt;}
.y9ec_c00000{bottom:188.186667pt;}
.yc5c_c00000{bottom:188.346667pt;}
.yce1_c00000{bottom:188.506667pt;}
.y201_c00000{bottom:188.666667pt;}
.y117e_c00000{bottom:188.826667pt;}
.y5d8_c00000{bottom:188.986667pt;}
.y129d_c00000{bottom:189.306667pt;}
.ya30_c00000{bottom:189.466667pt;}
.y741_c00000{bottom:189.786667pt;}
.yc0e_c00000{bottom:189.946667pt;}
.y12d6_c00000{bottom:190.106667pt;}
.y8f3_c00000{bottom:190.266667pt;}
.y976_c00000{bottom:190.426667pt;}
.yad3_c00000{bottom:190.586667pt;}
.y3c2_c00000{bottom:190.746667pt;}
.y1006_c00000{bottom:190.906667pt;}
.ye07_c00000{bottom:191.066667pt;}
.y6f5_c00000{bottom:191.226667pt;}
.y748_c00000{bottom:191.386667pt;}
.y1d6_c00000{bottom:191.546667pt;}
.yd1b_c00000{bottom:191.560000pt;}
.y9d5_c00000{bottom:191.866667pt;}
.y5ee_c00000{bottom:192.026667pt;}
.y1b2_c00000{bottom:192.186667pt;}
.y7d0_c00000{bottom:192.506667pt;}
.y750_c00000{bottom:192.666667pt;}
.y147_c00000{bottom:192.826667pt;}
.y86_c00000{bottom:192.986667pt;}
.yf16_c00000{bottom:193.146667pt;}
.y838_c00000{bottom:193.306667pt;}
.y108b_c00000{bottom:193.466667pt;}
.y1044_c00000{bottom:193.626667pt;}
.yf97_c00000{bottom:193.640000pt;}
.yce2_c00000{bottom:193.786667pt;}
.y18c_c00000{bottom:193.946667pt;}
.y136a_c00000{bottom:193.960000pt;}
.y217_c00000{bottom:194.106667pt;}
.y248_c00000{bottom:194.266667pt;}
.y160_c00000{bottom:194.426667pt;}
.ye23_c00000{bottom:194.586667pt;}
.y11ea_c00000{bottom:194.746667pt;}
.ybb2_c00000{bottom:194.906667pt;}
.y345_c00000{bottom:195.066667pt;}
.yd7c_c00000{bottom:195.386667pt;}
.y251_c00000{bottom:195.706667pt;}
.y683_c00000{bottom:195.866667pt;}
.yca8_c00000{bottom:196.026667pt;}
.y54_c00000{bottom:196.186667pt;}
.y7a3_c00000{bottom:196.346667pt;}
.ye48_c00000{bottom:196.506667pt;}
.y1119_c00000{bottom:196.666667pt;}
.y20_c00000{bottom:196.814080pt;}
.y116d_c00000{bottom:196.986667pt;}
.y2c0_c00000{bottom:197.146667pt;}
.y98c_c00000{bottom:197.306667pt;}
.yb67_c00000{bottom:197.466667pt;}
.y1196_c00000{bottom:197.626667pt;}
.y12b3_c00000{bottom:197.786667pt;}
.yf92_c00000{bottom:197.946667pt;}
.y8ca_c00000{bottom:198.106667pt;}
.y115d_c00000{bottom:198.266667pt;}
.y80d_c00000{bottom:198.426667pt;}
.y1423_c00000{bottom:198.586667pt;}
.y3db_c00000{bottom:198.746667pt;}
.y587_c00000{bottom:198.906667pt;}
.y262_c00000{bottom:199.066667pt;}
.ycc7_c00000{bottom:199.226667pt;}
.y2a2_c00000{bottom:199.386667pt;}
.y7d9_c00000{bottom:199.546667pt;}
.y49d_c00000{bottom:199.706667pt;}
.y11e_c00000{bottom:200.026667pt;}
.yea7_c00000{bottom:200.186667pt;}
.y40a_c00000{bottom:200.346667pt;}
.y9ff_c00000{bottom:200.506667pt;}
.y72a_c00000{bottom:200.666667pt;}
.y11e1_c00000{bottom:200.826667pt;}
.y6af_c00000{bottom:200.986667pt;}
.y1144_c00000{bottom:201.000000pt;}
.yfa5_c00000{bottom:201.146667pt;}
.yfae_c00000{bottom:201.306667pt;}
.y36b_c00000{bottom:201.466667pt;}
.y32c_c00000{bottom:201.786667pt;}
.y1285_c00000{bottom:201.946667pt;}
.ycfe_c00000{bottom:202.106667pt;}
.ye9a_c00000{bottom:202.266667pt;}
.y11bf_c00000{bottom:202.426667pt;}
.y92c_c00000{bottom:202.586667pt;}
.ya80_c00000{bottom:202.746667pt;}
.y281_c00000{bottom:202.906667pt;}
.y1362_c00000{bottom:203.066667pt;}
.y86f_c00000{bottom:203.226667pt;}
.y650_c00000{bottom:203.386667pt;}
.y861_c00000{bottom:203.400000pt;}
.y61e_c00000{bottom:203.546667pt;}
.y1084_c00000{bottom:203.560000pt;}
.y529_c00000{bottom:203.706667pt;}
.yabd_c00000{bottom:203.866667pt;}
.yb33_c00000{bottom:204.026667pt;}
.y827_c00000{bottom:204.186667pt;}
.yc31_c00000{bottom:204.346667pt;}
.yd18_c00000{bottom:204.506667pt;}
.yeb1_c00000{bottom:204.826667pt;}
.y38_c00000{bottom:204.986667pt;}
.yebb_c00000{bottom:205.146667pt;}
.yf3c_c00000{bottom:205.306667pt;}
.yd11_c00000{bottom:205.466667pt;}
.yed1_c00000{bottom:205.480000pt;}
.y965_c00000{bottom:205.626667pt;}
.y48a_c00000{bottom:205.946667pt;}
.ye85_c00000{bottom:205.960000pt;}
.y1369_c00000{bottom:206.106667pt;}
.y4f9_c00000{bottom:206.586667pt;}
.yf3_c00000{bottom:206.746667pt;}
.y1355_c00000{bottom:206.760000pt;}
.yd88_c00000{bottom:206.906667pt;}
.y200_c00000{bottom:207.066667pt;}
.y69a_c00000{bottom:207.226667pt;}
.y5d7_c00000{bottom:207.386667pt;}
.y467_c00000{bottom:207.546667pt;}
.ydea_c00000{bottom:207.706667pt;}
.y58d_c00000{bottom:207.866667pt;}
.y53e_c00000{bottom:208.026667pt;}
.ya60_c00000{bottom:208.186667pt;}
.y9f8_c00000{bottom:208.346667pt;}
.yfb6_c00000{bottom:208.506667pt;}
.y7c0_c00000{bottom:208.666667pt;}
.ydd6_c00000{bottom:208.826667pt;}
.y126f_c00000{bottom:208.986667pt;}
.y79c_c00000{bottom:209.146667pt;}
.ya9f_c00000{bottom:209.306667pt;}
.y85e_c00000{bottom:209.466667pt;}
.y85_c00000{bottom:209.786667pt;}
.y117d_c00000{bottom:209.946667pt;}
.y1d4_c00000{bottom:210.106667pt;}
.yec3_c00000{bottom:210.266667pt;}
.yfd0_c00000{bottom:210.426667pt;}
.y15f_c00000{bottom:210.586667pt;}
.ye49_c00000{bottom:210.600000pt;}
.y3c1_c00000{bottom:210.746667pt;}
.yc0d_c00000{bottom:211.066667pt;}
.y6cf_c00000{bottom:211.226667pt;}
.y507_c00000{bottom:211.386667pt;}
.y96f_c00000{bottom:211.546667pt;}
.yd6b_c00000{bottom:211.706667pt;}
.y387_c00000{bottom:211.866667pt;}
.y115a_c00000{bottom:211.880000pt;}
.yad2_c00000{bottom:212.026667pt;}
.y952_c00000{bottom:212.040000pt;}
.y2f7_c00000{bottom:212.186667pt;}
.y216_c00000{bottom:212.506667pt;}
.y146_c00000{bottom:212.666667pt;}
.y603_c00000{bottom:212.826667pt;}
.y53_c00000{bottom:212.986667pt;}
.y105d_c00000{bottom:213.000000pt;}
.y111c_c00000{bottom:213.146667pt;}
.y1043_c00000{bottom:213.306667pt;}
.yef8_c00000{bottom:213.466667pt;}
.y1f_c00000{bottom:213.609600pt;}
.y7cf_c00000{bottom:213.626667pt;}
.y18b_c00000{bottom:213.786667pt;}
.ye65_c00000{bottom:213.946667pt;}
.ycd6_c00000{bottom:213.960000pt;}
.y30e_c00000{bottom:214.106667pt;}
.y837_c00000{bottom:214.426667pt;}
.y123b_c00000{bottom:214.586667pt;}
.y1d5_c00000{bottom:214.746667pt;}
.y4db_c00000{bottom:215.226667pt;}
.y114f_c00000{bottom:215.386667pt;}
.y62c_c00000{bottom:215.546667pt;}
.ya7_c00000{bottom:215.706667pt;}
.y140b_c00000{bottom:215.720000pt;}
.y682_c00000{bottom:215.866667pt;}
.y506_c00000{bottom:216.026667pt;}
.ybb1_c00000{bottom:216.186667pt;}
.y344_c00000{bottom:216.346667pt;}
.y1381_c00000{bottom:216.680000pt;}
.y8ef_c00000{bottom:216.826667pt;}
.y2bf_c00000{bottom:216.986667pt;}
.y4c4_c00000{bottom:217.146667pt;}
.yf63_c00000{bottom:217.306667pt;}
.y3ec_c00000{bottom:217.466667pt;}
.yc80_c00000{bottom:217.626667pt;}
.yf91_c00000{bottom:217.786667pt;}
.y116b_c00000{bottom:217.946667pt;}
.ye06_c00000{bottom:218.106667pt;}
.yb89_c00000{bottom:218.266667pt;}
.y1422_c00000{bottom:218.426667pt;}
.y3da_c00000{bottom:218.586667pt;}
.y586_c00000{bottom:218.746667pt;}
.ydbc_c00000{bottom:218.906667pt;}
.ye79_c00000{bottom:219.066667pt;}
.y8d7_c00000{bottom:219.226667pt;}
.y2a1_c00000{bottom:219.386667pt;}
.y80c_c00000{bottom:219.546667pt;}
.y106f_c00000{bottom:219.706667pt;}
.y11dd_c00000{bottom:219.720000pt;}
.y856_c00000{bottom:219.866667pt;}
.y11d_c00000{bottom:220.026667pt;}
.ya4a_c00000{bottom:220.186667pt;}
.y729_c00000{bottom:220.506667pt;}
.y11ec_c00000{bottom:220.666667pt;}
.yaeb_c00000{bottom:220.826667pt;}
.yb55_c00000{bottom:220.986667pt;}
.yfa4_c00000{bottom:221.146667pt;}
.y36a_c00000{bottom:221.306667pt;}
.yb98_c00000{bottom:221.466667pt;}
.y32a_c00000{bottom:221.626667pt;}
.y61d_c00000{bottom:221.946667pt;}
.ye99_c00000{bottom:222.106667pt;}
.y11be_c00000{bottom:222.266667pt;}
.y11f3_c00000{bottom:222.586667pt;}
.y280_c00000{bottom:222.906667pt;}
.y78a_c00000{bottom:223.066667pt;}
.y116c_c00000{bottom:223.226667pt;}
.y64f_c00000{bottom:223.386667pt;}
.y528_c00000{bottom:223.546667pt;}
.ye37_c00000{bottom:223.706667pt;}
.ya7f_c00000{bottom:223.866667pt;}
.ya2f_c00000{bottom:224.026667pt;}
.y23a_c00000{bottom:224.186667pt;}
.y9c2_c00000{bottom:224.346667pt;}
.yb5e_c00000{bottom:224.506667pt;}
.y8ae_c00000{bottom:224.666667pt;}
.yeba_c00000{bottom:224.826667pt;}
.y41d_c00000{bottom:224.986667pt;}
.yabc_c00000{bottom:225.146667pt;}
.y826_c00000{bottom:225.306667pt;}
.y1ff_c00000{bottom:225.466667pt;}
.y5d6_c00000{bottom:225.786667pt;}
.y9af_c00000{bottom:226.106667pt;}
.y4f8_c00000{bottom:226.266667pt;}
.yc6f_c00000{bottom:226.586667pt;}
.y15e_c00000{bottom:226.746667pt;}
.y32b_c00000{bottom:226.906667pt;}
.y9cd_c00000{bottom:227.066667pt;}
.y699_c00000{bottom:227.226667pt;}
.y466_c00000{bottom:227.386667pt;}
.y1212_c00000{bottom:227.400000pt;}
.yde9_c00000{bottom:227.546667pt;}
.y58c_c00000{bottom:227.706667pt;}
.y53d_c00000{bottom:227.866667pt;}
.yc5a_c00000{bottom:228.026667pt;}
.y4da_c00000{bottom:228.186667pt;}
.y537_c00000{bottom:228.346667pt;}
.y1d3_c00000{bottom:228.506667pt;}
.y56d_c00000{bottom:228.520000pt;}
.y10a5_c00000{bottom:228.666667pt;}
.ydd5_c00000{bottom:228.826667pt;}
.y1b1_c00000{bottom:228.986667pt;}
.y131c_c00000{bottom:229.000000pt;}
.ya8e_c00000{bottom:229.146667pt;}
.ya5f_c00000{bottom:229.306667pt;}
.yb9b_c00000{bottom:229.466667pt;}
.y740_c00000{bottom:229.626667pt;}
.y4c3_c00000{bottom:229.786667pt;}
.y52_c00000{bottom:229.946667pt;}
.yec2_c00000{bottom:230.106667pt;}
.y2d6_c00000{bottom:230.266667pt;}
.yfcf_c00000{bottom:230.426667pt;}
.y1e_c00000{bottom:230.567040pt;}
.y3c0_c00000{bottom:230.586667pt;}
.y215_c00000{bottom:230.906667pt;}
.y247_c00000{bottom:231.066667pt;}
.y117c_c00000{bottom:231.226667pt;}
.y15d_c00000{bottom:231.386667pt;}
.y10db_c00000{bottom:231.546667pt;}
.y5ed_c00000{bottom:231.706667pt;}
.ydad_c00000{bottom:231.866667pt;}
.y2f6_c00000{bottom:232.026667pt;}
.yfc0_c00000{bottom:232.186667pt;}
.y1060_c00000{bottom:232.200000pt;}
.y720_c00000{bottom:232.346667pt;}
.y145_c00000{bottom:232.506667pt;}
.y7ce_c00000{bottom:232.666667pt;}
.yf15_c00000{bottom:232.826667pt;}
.y536_c00000{bottom:232.986667pt;}
.y1042_c00000{bottom:233.146667pt;}
.y930_c00000{bottom:233.320000pt;}
.ye45_c00000{bottom:233.466667pt;}
.y18a_c00000{bottom:233.626667pt;}
.ye64_c00000{bottom:233.786667pt;}
.y30d_c00000{bottom:233.946667pt;}
.y9d4_c00000{bottom:234.106667pt;}
.yecf_c00000{bottom:234.266667pt;}
.y11e9_c00000{bottom:234.426667pt;}
.y10f2_c00000{bottom:234.586667pt;}
.y908_c00000{bottom:234.906667pt;}
.yac7_c00000{bottom:235.066667pt;}
.y547_c00000{bottom:235.546667pt;}
.y836_c00000{bottom:235.706667pt;}
.y681_c00000{bottom:235.866667pt;}
.y11e4_c00000{bottom:236.026667pt;}
.y126b_c00000{bottom:236.040000pt;}
.y1390_c00000{bottom:236.200000pt;}
.yb13_c00000{bottom:236.346667pt;}
.y489_c00000{bottom:236.506667pt;}
.y2be_c00000{bottom:236.826667pt;}
.ycd3_c00000{bottom:236.840000pt;}
.y92b_c00000{bottom:236.986667pt;}
.y105a_c00000{bottom:237.146667pt;}
.ybbd_c00000{bottom:237.160000pt;}
.yf2_c00000{bottom:237.306667pt;}
.y142e_c00000{bottom:237.320000pt;}
.y343_c00000{bottom:237.466667pt;}
.y721_c00000{bottom:237.626667pt;}
.y6ae_c00000{bottom:237.786667pt;}
.ydf9_c00000{bottom:237.800000pt;}
.y8e7_c00000{bottom:238.106667pt;}
.ya39_c00000{bottom:238.266667pt;}
.y57d_c00000{bottom:238.426667pt;}
.yb75_c00000{bottom:238.440000pt;}
.y3d9_c00000{bottom:238.586667pt;}
.y585_c00000{bottom:238.746667pt;}
.y2a0_c00000{bottom:239.226667pt;}
.yb88_c00000{bottom:239.386667pt;}
.y11c_c00000{bottom:239.706667pt;}
.yb66_c00000{bottom:239.866667pt;}
.y130c_c00000{bottom:240.026667pt;}
.y1012_c00000{bottom:240.186667pt;}
.y61c_c00000{bottom:240.346667pt;}
.yf4e_c00000{bottom:240.506667pt;}
.y80b_c00000{bottom:240.666667pt;}
.yfa3_c00000{bottom:240.986667pt;}
.y892_c00000{bottom:241.146667pt;}
.ya49_c00000{bottom:241.306667pt;}
.y261_c00000{bottom:241.466667pt;}
.yd1_c00000{bottom:241.626667pt;}
.ycfd_c00000{bottom:241.786667pt;}
.y747_c00000{bottom:241.946667pt;}
.yb54_c00000{bottom:242.106667pt;}
.yf5a_c00000{bottom:242.120000pt;}
.y13b0_c00000{bottom:242.266667pt;}
.ya0f_c00000{bottom:242.426667pt;}
.y238_c00000{bottom:242.586667pt;}
.y84_c00000{bottom:242.746667pt;}
.ye84_c00000{bottom:242.760000pt;}
.y3a2_c00000{bottom:242.906667pt;}
.yf58_c00000{bottom:243.080000pt;}
.y602_c00000{bottom:243.226667pt;}
.y527_c00000{bottom:243.386667pt;}
.ye36_c00000{bottom:243.546667pt;}
.yfbf_c00000{bottom:243.706667pt;}
.y1fe_c00000{bottom:243.866667pt;}
.y1317_c00000{bottom:243.880000pt;}
.yf39_c00000{bottom:244.040000pt;}
.y5d5_c00000{bottom:244.186667pt;}
.y1079_c00000{bottom:244.346667pt;}
.y44a_c00000{bottom:244.666667pt;}
.y41c_c00000{bottom:244.826667pt;}
.ya7e_c00000{bottom:244.986667pt;}
.ye22_c00000{bottom:245.146667pt;}
.y1118_c00000{bottom:245.306667pt;}
.y86e_c00000{bottom:245.466667pt;}
.y535_c00000{bottom:245.946667pt;}
.y4f7_c00000{bottom:246.106667pt;}
.y49c_c00000{bottom:246.266667pt;}
.y825_c00000{bottom:246.426667pt;}
.yf04_c00000{bottom:246.586667pt;}
.y1d2_c00000{bottom:246.746667pt;}
.y465_c00000{bottom:247.226667pt;}
.y1347_c00000{bottom:247.240000pt;}
.y1d_c00000{bottom:247.362560pt;}
.y1b0_c00000{bottom:247.386667pt;}
.y58b_c00000{bottom:247.546667pt;}
.y53c_c00000{bottom:247.706667pt;}
.y131a_c00000{bottom:247.720000pt;}
.y239_c00000{bottom:247.866667pt;}
.ycea_c00000{bottom:248.026667pt;}
.y9cc_c00000{bottom:248.186667pt;}
.yb95_c00000{bottom:248.346667pt;}
.ydd4_c00000{bottom:248.506667pt;}
.yf1b_c00000{bottom:248.520000pt;}
.y10a4_c00000{bottom:248.666667pt;}
.ycb8_c00000{bottom:248.986667pt;}
.y214_c00000{bottom:249.306667pt;}
.y227_c00000{bottom:249.466667pt;}
.y13dd_c00000{bottom:249.626667pt;}
.y2d5_c00000{bottom:249.946667pt;}
.ybf3_c00000{bottom:250.106667pt;}
.yfce_c00000{bottom:250.306667pt;}
.ya5e_c00000{bottom:250.466667pt;}
.y409_c00000{bottom:250.626667pt;}
.y37_c00000{bottom:250.786667pt;}
.y6ce_c00000{bottom:250.946667pt;}
.y728_c00000{bottom:251.266667pt;}
.y917_c00000{bottom:251.426667pt;}
.y4d9_c00000{bottom:251.586667pt;}
.y9eb_c00000{bottom:251.746667pt;}
.y2f5_c00000{bottom:251.906667pt;}
.y71f_c00000{bottom:252.066667pt;}
.y74f_c00000{bottom:252.226667pt;}
.y144_c00000{bottom:252.386667pt;}
.y7cd_c00000{bottom:252.546667pt;}
.yf14_c00000{bottom:252.706667pt;}
.y129c_c00000{bottom:252.866667pt;}
.y9d6_c00000{bottom:253.013333pt;}
.y108a_c00000{bottom:253.026667pt;}
.y1041_c00000{bottom:253.186667pt;}
.y11d3_c00000{bottom:253.333333pt;}
.ye55_c00000{bottom:253.346667pt;}
.y9df_c00000{bottom:253.506667pt;}
.y8c9_c00000{bottom:253.666667pt;}
.y30c_c00000{bottom:253.826667pt;}
.y1139_c00000{bottom:254.146667pt;}
.y855_c00000{bottom:254.306667pt;}
.y10f1_c00000{bottom:254.466667pt;}
.yf33_c00000{bottom:255.253333pt;}
.y505_c00000{bottom:255.266667pt;}
.y111b_c00000{bottom:255.426667pt;}
.y436_c00000{bottom:255.586667pt;}
.yca7_c00000{bottom:255.746667pt;}
.y680_c00000{bottom:255.906667pt;}
.y907_c00000{bottom:256.066667pt;}
.y488_c00000{bottom:256.226667pt;}
.y1273_c00000{bottom:256.693333pt;}
.y1277_c00000{bottom:256.853333pt;}
.y2bd_c00000{bottom:256.866667pt;}
.y835_c00000{bottom:257.026667pt;}
.yc7f_c00000{bottom:257.186667pt;}
.ye4a_c00000{bottom:257.346667pt;}
.y3eb_c00000{bottom:257.506667pt;}
.yf90_c00000{bottom:257.666667pt;}
.y774_c00000{bottom:257.986667pt;}
.y12fe_c00000{bottom:258.146667pt;}
.y57c_c00000{bottom:258.306667pt;}
.y3d8_c00000{bottom:258.466667pt;}
.ybd5_c00000{bottom:258.613333pt;}
.y342_c00000{bottom:258.626667pt;}
.y61b_c00000{bottom:258.786667pt;}
.yb38_c00000{bottom:258.946667pt;}
.y29f_c00000{bottom:259.106667pt;}
.y3a1_c00000{bottom:259.266667pt;}
.ya38_c00000{bottom:259.426667pt;}
.ybce_c00000{bottom:259.586667pt;}
.y11b_c00000{bottom:259.746667pt;}
.yfbe_c00000{bottom:260.066667pt;}
.yb5f_c00000{bottom:260.373333pt;}
.yf4d_c00000{bottom:260.386667pt;}
.yaf7_c00000{bottom:260.546667pt;}
.yb87_c00000{bottom:260.706667pt;}
.y1082_c00000{bottom:260.853333pt;}
.yb09_c00000{bottom:260.866667pt;}
.y237_c00000{bottom:261.026667pt;}
.y3bf_c00000{bottom:261.186667pt;}
.y1240_c00000{bottom:261.333333pt;}
.y260_c00000{bottom:261.346667pt;}
.yd0_c00000{bottom:261.506667pt;}
.ycfc_c00000{bottom:261.666667pt;}
.y80a_c00000{bottom:261.826667pt;}
.y83_c00000{bottom:261.986667pt;}
.y10c2_c00000{bottom:262.293333pt;}
.y1fd_c00000{bottom:262.306667pt;}
.y746_c00000{bottom:262.466667pt;}
.y5d4_c00000{bottom:262.626667pt;}
.y27f_c00000{bottom:262.786667pt;}
.y1117_c00000{bottom:262.946667pt;}
.yd91_c00000{bottom:263.106667pt;}
.y1399_c00000{bottom:263.253333pt;}
.y526_c00000{bottom:263.266667pt;}
.y64e_c00000{bottom:263.426667pt;}
.ya0e_c00000{bottom:263.586667pt;}
.y51_c00000{bottom:263.746667pt;}
.y9f7_c00000{bottom:263.906667pt;}
.yfe2_c00000{bottom:264.053333pt;}
.yc30_c00000{bottom:264.066667pt;}
.y1c_c00000{bottom:264.158080pt;}
.y189_c00000{bottom:264.386667pt;}
.yeb0_c00000{bottom:264.546667pt;}
.y41b_c00000{bottom:264.706667pt;}
.yd10_c00000{bottom:264.866667pt;}
.y10b8_c00000{bottom:265.026667pt;}
.y1d1_c00000{bottom:265.186667pt;}
.y789_c00000{bottom:265.346667pt;}
.y1284_c00000{bottom:265.506667pt;}
.y13f5_c00000{bottom:265.653333pt;}
.yf74_c00000{bottom:265.826667pt;}
.y4f6_c00000{bottom:265.986667pt;}
.y665_c00000{bottom:266.146667pt;}
.y56a_c00000{bottom:266.306667pt;}
.yd59_c00000{bottom:266.466667pt;}
.y86d_c00000{bottom:266.626667pt;}
.yc0c_c00000{bottom:266.786667pt;}
.y12b2_c00000{bottom:266.946667pt;}
.y8ad_c00000{bottom:267.106667pt;}
.y698_c00000{bottom:267.266667pt;}
.y534_c00000{bottom:267.426667pt;}
.y6fc_c00000{bottom:267.586667pt;}
.y213_c00000{bottom:267.746667pt;}
.yf1_c00000{bottom:267.906667pt;}
.yfb5_c00000{bottom:268.066667pt;}
.ye16_c00000{bottom:268.226667pt;}
.y137c_c00000{bottom:268.386667pt;}
.y10ae_c00000{bottom:268.533333pt;}
.y9ae_c00000{bottom:268.546667pt;}
.ycb6_c00000{bottom:268.866667pt;}
.y5b7_c00000{bottom:269.026667pt;}
.yabb_c00000{bottom:269.186667pt;}
.ye6d_c00000{bottom:269.333333pt;}
.y4c2_c00000{bottom:269.346667pt;}
.yb94_c00000{bottom:269.506667pt;}
.y2d4_c00000{bottom:269.826667pt;}
.yec1_c00000{bottom:269.986667pt;}
.ya1d_c00000{bottom:270.146667pt;}
.y12e1_c00000{bottom:270.293333pt;}
.y15c_c00000{bottom:270.306667pt;}
.y1142_c00000{bottom:270.453333pt;}
.y408_c00000{bottom:270.466667pt;}
.y6f4_c00000{bottom:270.626667pt;}
.y62b_c00000{bottom:270.786667pt;}
.y1255_c00000{bottom:271.106667pt;}
.yd6a_c00000{bottom:271.266667pt;}
.y666_c00000{bottom:271.426667pt;}
.y369_c00000{bottom:271.586667pt;}
.y2f4_c00000{bottom:271.746667pt;}
.y71e_c00000{bottom:271.906667pt;}
.y7bf_c00000{bottom:272.066667pt;}
.y143_c00000{bottom:272.226667pt;}
.y916_c00000{bottom:272.546667pt;}
.yf13_c00000{bottom:272.706667pt;}
.y4d8_c00000{bottom:272.866667pt;}
.y9ea_c00000{bottom:273.026667pt;}
.ye54_c00000{bottom:273.186667pt;}
.ye63_c00000{bottom:273.506667pt;}
.y30b_c00000{bottom:273.666667pt;}
.y601_c00000{bottom:273.826667pt;}
.ycb7_c00000{bottom:274.146667pt;}
.y10f0_c00000{bottom:274.466667pt;}
.y6ad_c00000{bottom:274.626667pt;}
.y9de_c00000{bottom:274.786667pt;}
.y8c8_c00000{bottom:274.946667pt;}
.y504_c00000{bottom:275.106667pt;}
.y435_c00000{bottom:275.266667pt;}
.y3a0_c00000{bottom:275.426667pt;}
.y854_c00000{bottom:275.586667pt;}
.y11e3_c00000{bottom:275.746667pt;}
.y67f_c00000{bottom:275.906667pt;}
.y6cd_c00000{bottom:276.066667pt;}
.y487_c00000{bottom:276.226667pt;}
.yb53_c00000{bottom:276.546667pt;}
.y386_c00000{bottom:276.706667pt;}
.y130b_c00000{bottom:276.866667pt;}
.y49a_c00000{bottom:277.026667pt;}
.ya6_c00000{bottom:277.186667pt;}
.y1353_c00000{bottom:277.346667pt;}
.yf8f_c00000{bottom:277.506667pt;}
.y584_c00000{bottom:277.666667pt;}
.y464_c00000{bottom:277.986667pt;}
.y57b_c00000{bottom:278.146667pt;}
.y3d7_c00000{bottom:278.306667pt;}
.y755_c00000{bottom:278.453333pt;}
.ydbb_c00000{bottom:278.466667pt;}
.y7e5_c00000{bottom:278.626667pt;}
.y1054_c00000{bottom:278.773333pt;}
.yb12_c00000{bottom:278.786667pt;}
.yc44_c00000{bottom:278.946667pt;}
.y773_c00000{bottom:279.106667pt;}
.y11a_c00000{bottom:279.426667pt;}
.ye83_c00000{bottom:279.573333pt;}
.ya2e_c00000{bottom:279.586667pt;}
.y341_c00000{bottom:279.746667pt;}
.y1011_c00000{bottom:279.906667pt;}
.y9c1_c00000{bottom:280.066667pt;}
.y91e_c00000{bottom:280.226667pt;}
.y8e6_c00000{bottom:280.386667pt;}
.y50_c00000{bottom:280.546667pt;}
.y1fc_c00000{bottom:280.706667pt;}
.y5a9_c00000{bottom:280.866667pt;}
.y3be_c00000{bottom:281.026667pt;}
.y25f_c00000{bottom:281.186667pt;}
.y82_c00000{bottom:281.346667pt;}
.ycfb_c00000{bottom:281.506667pt;}
.y49b_c00000{bottom:281.666667pt;}
.yb86_c00000{bottom:281.826667pt;}
.y1162_c00000{bottom:281.986667pt;}
.y101d_c00000{bottom:282.133333pt;}
.yb08_c00000{bottom:282.146667pt;}
.y5ec_c00000{bottom:282.306667pt;}
.y27e_c00000{bottom:282.466667pt;}
.yd9f_c00000{bottom:282.626667pt;}
.y8d6_c00000{bottom:282.786667pt;}
.yd90_c00000{bottom:282.946667pt;}
.y809_c00000{bottom:283.106667pt;}
.y525_c00000{bottom:283.266667pt;}
.y64d_c00000{bottom:283.426667pt;}
.yeab_c00000{bottom:283.573333pt;}
.y1d0_c00000{bottom:283.586667pt;}
.ya48_c00000{bottom:283.746667pt;}
.yc2f_c00000{bottom:283.906667pt;}
.y188_c00000{bottom:284.066667pt;}
.y1af_c00000{bottom:284.226667pt;}
.yaea_c00000{bottom:284.386667pt;}
.y41a_c00000{bottom:284.546667pt;}
.ya0d_c00000{bottom:284.706667pt;}
.yefa_c00000{bottom:284.853333pt;}
.yd0f_c00000{bottom:284.866667pt;}
.y9f6_c00000{bottom:285.026667pt;}
.y124a_c00000{bottom:285.666667pt;}
.y546_c00000{bottom:285.986667pt;}
.y226_c00000{bottom:286.146667pt;}
.y212_c00000{bottom:286.306667pt;}
.y788_c00000{bottom:286.466667pt;}
.yd4c_c00000{bottom:286.626667pt;}
.y1433_c00000{bottom:286.933333pt;}
.yf01_c00000{bottom:287.106667pt;}
.y533_c00000{bottom:287.266667pt;}
.y2bc_c00000{bottom:287.426667pt;}
.ya7d_c00000{bottom:287.586667pt;}
.y86c_c00000{bottom:287.746667pt;}
.yc0b_c00000{bottom:287.906667pt;}
.ybdd_c00000{bottom:288.066667pt;}
.y8ac_c00000{bottom:288.226667pt;}
.ya23_c00000{bottom:288.386667pt;}
.yad1_c00000{bottom:288.706667pt;}
.yd70_c00000{bottom:288.853333pt;}
.y824_c00000{bottom:288.866667pt;}
.y74e_c00000{bottom:289.026667pt;}
.y62a_c00000{bottom:289.186667pt;}
.y4c1_c00000{bottom:289.346667pt;}
.y2d3_c00000{bottom:289.666667pt;}
.yec0_c00000{bottom:289.826667pt;}
.yfcd_c00000{bottom:289.986667pt;}
.y15b_c00000{bottom:290.146667pt;}
.y407_c00000{bottom:290.306667pt;}
.y11b7_c00000{bottom:290.453333pt;}
.y6f3_c00000{bottom:290.466667pt;}
.y6cc_c00000{bottom:290.626667pt;}
.yb93_c00000{bottom:290.786667pt;}
.y1229_c00000{bottom:291.106667pt;}
.y10da_c00000{bottom:291.266667pt;}
.y368_c00000{bottom:291.426667pt;}
.y12db_c00000{bottom:291.573333pt;}
.y2f3_c00000{bottom:291.586667pt;}
.yf55_c00000{bottom:291.746667pt;}
.y71d_c00000{bottom:291.906667pt;}
.yd6c_c00000{bottom:292.053333pt;}
.y142_c00000{bottom:292.066667pt;}
.y329_c00000{bottom:292.226667pt;}
.ybf2_c00000{bottom:292.386667pt;}
.y132e_c00000{bottom:292.546667pt;}
.y1089_c00000{bottom:292.706667pt;}
.y12dd_c00000{bottom:292.853333pt;}
.ya5d_c00000{bottom:292.866667pt;}
.y5d3_c00000{bottom:293.026667pt;}
.y7be_c00000{bottom:293.346667pt;}
.y29e_c00000{bottom:293.506667pt;}
.y915_c00000{bottom:293.666667pt;}
.y1246_c00000{bottom:293.826667pt;}
.y4d7_c00000{bottom:293.986667pt;}
.y9e9_c00000{bottom:294.146667pt;}
.y10ef_c00000{bottom:294.306667pt;}
.yefc_c00000{bottom:294.453333pt;}
.y117b_c00000{bottom:294.626667pt;}
.yc9a_c00000{bottom:294.946667pt;}
.y449_c00000{bottom:295.106667pt;}
.y434_c00000{bottom:295.266667pt;}
.yca6_c00000{bottom:295.426667pt;}
.y61a_c00000{bottom:295.586667pt;}
.y1116_c00000{bottom:295.746667pt;}
.y98b_c00000{bottom:295.906667pt;}
.yf07_c00000{bottom:296.053333pt;}
.y486_c00000{bottom:296.066667pt;}
.y96e_c00000{bottom:296.226667pt;}
.ya5_c00000{bottom:296.546667pt;}
.y13ae_c00000{bottom:296.693333pt;}
.y4f5_c00000{bottom:296.706667pt;}
.yc7e_c00000{bottom:296.866667pt;}
.y3e9_c00000{bottom:297.026667pt;}
.y4f_c00000{bottom:297.346667pt;}
.y463_c00000{bottom:297.666667pt;}
.y236_c00000{bottom:297.826667pt;}
.y57a_c00000{bottom:297.986667pt;}
.y3d6_c00000{bottom:298.146667pt;}
.y745_c00000{bottom:298.306667pt;}
.yf0_c00000{bottom:298.466667pt;}
.yfc3_c00000{bottom:298.626667pt;}
.yc43_c00000{bottom:298.786667pt;}
.yd3d_c00000{bottom:298.946667pt;}
.y1fb_c00000{bottom:299.106667pt;}
.y119_c00000{bottom:299.266667pt;}
.y10aa_c00000{bottom:299.426667pt;}
.y121e_c00000{bottom:299.573333pt;}
.y5b6_c00000{bottom:299.586667pt;}
.y1010_c00000{bottom:299.746667pt;}
.y7a2_c00000{bottom:299.906667pt;}
.yf4c_c00000{bottom:300.066667pt;}
.y772_c00000{bottom:300.226667pt;}
.y139e_c00000{bottom:300.386667pt;}
.yfa2_c00000{bottom:300.546667pt;}
.y81_c00000{bottom:300.706667pt;}
.y3bd_c00000{bottom:300.866667pt;}
.y25e_c00000{bottom:301.026667pt;}
.y9c0_c00000{bottom:301.186667pt;}
.yb37_c00000{bottom:301.346667pt;}
.y8e5_c00000{bottom:301.506667pt;}
.ya37_c00000{bottom:301.666667pt;}
.y9d3_c00000{bottom:301.826667pt;}
.y1cf_c00000{bottom:301.986667pt;}
.yd21_c00000{bottom:302.146667pt;}
.ybb9_c00000{bottom:302.293333pt;}
.y3ea_c00000{bottom:302.306667pt;}
.y27d_c00000{bottom:302.466667pt;}
.yf8e_c00000{bottom:302.626667pt;}
.y9ad_c00000{bottom:302.786667pt;}
.y10ad_c00000{bottom:303.093333pt;}
.ye35_c00000{bottom:303.106667pt;}
.yea0_c00000{bottom:303.253333pt;}
.y524_c00000{bottom:303.266667pt;}
.y64c_c00000{bottom:303.426667pt;}
.y964_c00000{bottom:303.586667pt;}
.yc2e_c00000{bottom:303.746667pt;}
.y8d5_c00000{bottom:303.906667pt;}
.y808_c00000{bottom:304.226667pt;}
.y36_c00000{bottom:304.386667pt;}
.y225_c00000{bottom:304.546667pt;}
.y211_c00000{bottom:304.706667pt;}
.y187_c00000{bottom:304.866667pt;}
.ya47_c00000{bottom:305.026667pt;}
.yef7_c00000{bottom:305.186667pt;}
.yae9_c00000{bottom:305.506667pt;}
.y545_c00000{bottom:305.666667pt;}
.y1272_c00000{bottom:305.826667pt;}
.y664_c00000{bottom:305.986667pt;}
.yf61_c00000{bottom:306.146667pt;}
.yd4b_c00000{bottom:306.306667pt;}
.ycc3_c00000{bottom:306.466667pt;}
.yd62_c00000{bottom:306.773333pt;}
.y2bb_c00000{bottom:307.106667pt;}
.y697_c00000{bottom:307.266667pt;}
.y55e_c00000{bottom:307.426667pt;}
.yc59_c00000{bottom:307.586667pt;}
.y7d5_c00000{bottom:307.733333pt;}
.y39f_c00000{bottom:307.746667pt;}
.ye15_c00000{bottom:307.906667pt;}
.yd5e_c00000{bottom:308.053333pt;}
.ydd3_c00000{bottom:308.226667pt;}
.y129b_c00000{bottom:308.386667pt;}
.ya7c_c00000{bottom:308.546667pt;}
.ybb6_c00000{bottom:308.693333pt;}
.ycb5_c00000{bottom:308.706667pt;}
.y406_c00000{bottom:308.866667pt;}
.y73f_c00000{bottom:309.026667pt;}
.y4c0_c00000{bottom:309.186667pt;}
.y8ab_c00000{bottom:309.346667pt;}
.y1202_c00000{bottom:309.506667pt;}
.y1315_c00000{bottom:309.666667pt;}
.y583_c00000{bottom:309.826667pt;}
.y15a_c00000{bottom:309.986667pt;}
.yb57_c00000{bottom:310.133333pt;}
.y6e6_c00000{bottom:310.146667pt;}
.y553_c00000{bottom:310.306667pt;}
.y6cb_c00000{bottom:310.466667pt;}
.ye78_c00000{bottom:310.626667pt;}
.y10d9_c00000{bottom:310.946667pt;}
.y1228_c00000{bottom:311.106667pt;}
.y12c6_c00000{bottom:311.266667pt;}
.y12a0_c00000{bottom:311.413333pt;}
.y2f2_c00000{bottom:311.426667pt;}
.y5d2_c00000{bottom:311.586667pt;}
.y71c_c00000{bottom:311.746667pt;}
.y141_c00000{bottom:311.906667pt;}
.y55f_c00000{bottom:312.066667pt;}
.y727_c00000{bottom:312.226667pt;}
.y39e_c00000{bottom:312.386667pt;}
.ya1c_c00000{bottom:312.546667pt;}
.y1040_c00000{bottom:312.706667pt;}
.ya9e_c00000{bottom:312.866667pt;}
.ye62_c00000{bottom:313.186667pt;}
.y30a_c00000{bottom:313.346667pt;}
.ybf1_c00000{bottom:313.666667pt;}
.y11e8_c00000{bottom:313.826667pt;}
.ya5c_c00000{bottom:313.986667pt;}
.yb9a_c00000{bottom:314.146667pt;}
.y4e_c00000{bottom:314.306667pt;}
.y7bd_c00000{bottom:314.466667pt;}
.y67e_c00000{bottom:314.626667pt;}
.yc99_c00000{bottom:314.786667pt;}
.y448_c00000{bottom:314.946667pt;}
.y433_c00000{bottom:315.106667pt;}
.y9e8_c00000{bottom:315.266667pt;}
.yee8_c00000{bottom:315.426667pt;}
.y1389_c00000{bottom:315.733333pt;}
.y485_c00000{bottom:315.906667pt;}
.ya4_c00000{bottom:316.066667pt;}
.y235_c00000{bottom:316.226667pt;}
.ye82_c00000{bottom:316.373333pt;}
.y385_c00000{bottom:316.386667pt;}
.yc7d_c00000{bottom:316.706667pt;}
.ydf8_c00000{bottom:316.866667pt;}
.yf44_c00000{bottom:317.013333pt;}
.y3e8_c00000{bottom:317.026667pt;}
.y1407_c00000{bottom:317.173333pt;}
.y8c7_c00000{bottom:317.186667pt;}
.y96d_c00000{bottom:317.346667pt;}
.y1fa_c00000{bottom:317.506667pt;}
.yf00_c00000{bottom:317.666667pt;}
.y579_c00000{bottom:317.826667pt;}
.y58a_c00000{bottom:317.986667pt;}
.ydba_c00000{bottom:318.146667pt;}
.y121b_c00000{bottom:318.306667pt;}
.yfb4_c00000{bottom:318.466667pt;}
.yc42_c00000{bottom:318.786667pt;}
.y7d7_c00000{bottom:318.933333pt;}
.yb52_c00000{bottom:318.946667pt;}
.y118_c00000{bottom:319.266667pt;}
.y12da_c00000{bottom:319.426667pt;}
.y1b_c00000{bottom:319.520000pt;}
.y906_c00000{bottom:319.586667pt;}
.yac6_c00000{bottom:319.746667pt;}
.yf4b_c00000{bottom:319.906667pt;}
.y80_c00000{bottom:320.066667pt;}
.y2d2_c00000{bottom:320.226667pt;}
.y1ce_c00000{bottom:320.386667pt;}
.y5a8_c00000{bottom:320.546667pt;}
.y3bc_c00000{bottom:320.706667pt;}
.y1221_c00000{bottom:320.866667pt;}
.y1ae_c00000{bottom:321.026667pt;}
.ycfa_c00000{bottom:321.186667pt;}
.y771_c00000{bottom:321.346667pt;}
.yb85_c00000{bottom:321.506667pt;}
.y1209_c00000{bottom:321.666667pt;}
.yd20_c00000{bottom:321.826667pt;}
.ya2d_c00000{bottom:321.986667pt;}
.y340_c00000{bottom:322.146667pt;}
.y27c_c00000{bottom:322.306667pt;}
.yb36_c00000{bottom:322.466667pt;}
.y1219_c00000{bottom:322.613333pt;}
.ycf_c00000{bottom:322.626667pt;}
.y8e4_c00000{bottom:322.786667pt;}
.y210_c00000{bottom:322.946667pt;}
.y246_c00000{bottom:323.106667pt;}
.y64b_c00000{bottom:323.426667pt;}
.yc2d_c00000{bottom:323.586667pt;}
.y7cc_c00000{bottom:323.746667pt;}
.y9ac_c00000{bottom:323.906667pt;}
.y39d_c00000{bottom:324.066667pt;}
.y29d_c00000{bottom:324.226667pt;}
.yb07_c00000{bottom:324.386667pt;}
.yb65_c00000{bottom:324.546667pt;}
.y963_c00000{bottom:324.706667pt;}
.ya03_c00000{bottom:325.026667pt;}
.y1146_c00000{bottom:325.186667pt;}
.y7f6_c00000{bottom:325.346667pt;}
.y544_c00000{bottom:325.506667pt;}
.y891_c00000{bottom:325.826667pt;}
.y663_c00000{bottom:325.986667pt;}
.ycc2_c00000{bottom:326.146667pt;}
.y7e4_c00000{bottom:326.306667pt;}
.y629_c00000{bottom:326.466667pt;}
.yae8_c00000{bottom:326.626667pt;}
.yde8_c00000{bottom:326.946667pt;}
.y186_c00000{bottom:327.106667pt;}
.y1150_c00000{bottom:327.253333pt;}
.y55d_c00000{bottom:327.266667pt;}
.y367_c00000{bottom:327.426667pt;}
.yd58_c00000{bottom:327.586667pt;}
.ye14_c00000{bottom:327.746667pt;}
.ydd2_c00000{bottom:327.906667pt;}
.y10a3_c00000{bottom:328.066667pt;}
.ybcd_c00000{bottom:328.546667pt;}
.y3d5_c00000{bottom:328.706667pt;}
.y73e_c00000{bottom:328.866667pt;}
.yef_c00000{bottom:329.026667pt;}
.y1283_c00000{bottom:329.186667pt;}
.y1201_c00000{bottom:329.346667pt;}
.ya7b_c00000{bottom:329.666667pt;}
.y159_c00000{bottom:329.826667pt;}
.y5d1_c00000{bottom:329.986667pt;}
.yfc6_c00000{bottom:330.133333pt;}
.y5b5_c00000{bottom:330.146667pt;}
.y6ca_c00000{bottom:330.306667pt;}
.ybdc_c00000{bottom:330.466667pt;}
.y8aa_c00000{bottom:330.626667pt;}
.y10d8_c00000{bottom:330.786667pt;}
.yad0_c00000{bottom:330.946667pt;}
.y4d_c00000{bottom:331.106667pt;}
.y2f1_c00000{bottom:331.266667pt;}
.y71b_c00000{bottom:331.586667pt;}
.y25c_c00000{bottom:331.746667pt;}
.y135e_c00000{bottom:331.893333pt;}
.yf12_c00000{bottom:332.066667pt;}
.y133d_c00000{bottom:332.226667pt;}
.yd69_c00000{bottom:332.386667pt;}
.y12c5_c00000{bottom:332.546667pt;}
.y619_c00000{bottom:332.706667pt;}
.y98a_c00000{bottom:332.866667pt;}
.yaf6_c00000{bottom:333.026667pt;}
.y309_c00000{bottom:333.186667pt;}
.y125e_c00000{bottom:333.506667pt;}
.ya1b_c00000{bottom:333.666667pt;}
.y522_c00000{bottom:333.826667pt;}
.y1052_c00000{bottom:333.973333pt;}
.ya9d_c00000{bottom:333.986667pt;}
.y11eb_c00000{bottom:334.133333pt;}
.y7a1_c00000{bottom:334.306667pt;}
.y67d_c00000{bottom:334.466667pt;}
.yc98_c00000{bottom:334.626667pt;}
.ybf0_c00000{bottom:334.786667pt;}
.y432_c00000{bottom:334.946667pt;}
.ya8d_c00000{bottom:335.106667pt;}
.ya5b_c00000{bottom:335.266667pt;}
.ya3_c00000{bottom:335.426667pt;}
.y7bc_c00000{bottom:335.586667pt;}
.y484_c00000{bottom:335.746667pt;}
.ybad_c00000{bottom:335.906667pt;}
.y732_c00000{bottom:336.053333pt;}
.y914_c00000{bottom:336.066667pt;}
.y384_c00000{bottom:336.226667pt;}
.yc7c_c00000{bottom:336.546667pt;}
.ydf7_c00000{bottom:336.706667pt;}
.y3e7_c00000{bottom:336.866667pt;}
.y25d_c00000{bottom:337.026667pt;}
.y139d_c00000{bottom:337.186667pt;}
.y462_c00000{bottom:337.346667pt;}
.yb84_c00000{bottom:337.506667pt;}
.y578_c00000{bottom:337.666667pt;}
.yedb_c00000{bottom:337.826667pt;}
.ydb9_c00000{bottom:337.986667pt;}
.y9dd_c00000{bottom:338.146667pt;}
.y5eb_c00000{bottom:338.306667pt;}
.y523_c00000{bottom:338.466667pt;}
.yc41_c00000{bottom:338.626667pt;}
.y1cd_c00000{bottom:338.786667pt;}
.yf53_c00000{bottom:338.933333pt;}
.y853_c00000{bottom:338.946667pt;}
.y117_c00000{bottom:339.106667pt;}
.y129a_c00000{bottom:339.266667pt;}
.y1ad_c00000{bottom:339.426667pt;}
.y7f_c00000{bottom:339.586667pt;}
.y70e_c00000{bottom:339.746667pt;}
.y2d1_c00000{bottom:339.906667pt;}
.yb51_c00000{bottom:340.066667pt;}
.y39c_c00000{bottom:340.226667pt;}
.y5a7_c00000{bottom:340.386667pt;}
.y3bb_c00000{bottom:340.546667pt;}
.y905_c00000{bottom:340.706667pt;}
.y552_c00000{bottom:340.866667pt;}
.yedf_c00000{bottom:341.013333pt;}
.ye77_c00000{bottom:341.186667pt;}
.y20f_c00000{bottom:341.346667pt;}
.y245_c00000{bottom:341.506667pt;}
.y834_c00000{bottom:341.666667pt;}
.y366_c00000{bottom:341.826667pt;}
.y7e3_c00000{bottom:342.146667pt;}
.yce_c00000{bottom:342.306667pt;}
.ycd2_c00000{bottom:342.466667pt;}
.yb14_c00000{bottom:342.613333pt;}
.y140_c00000{bottom:342.626667pt;}
.y136e_c00000{bottom:342.786667pt;}
.ye34_c00000{bottom:342.946667pt;}
.y110c_c00000{bottom:343.106667pt;}
.y33f_c00000{bottom:343.266667pt;}
.y64a_c00000{bottom:343.426667pt;}
.yb5d_c00000{bottom:343.586667pt;}
.y8e3_c00000{bottom:343.906667pt;}
.y419_c00000{bottom:344.066667pt;}
.yd0e_c00000{bottom:344.226667pt;}
.y1081_c00000{bottom:344.386667pt;}
.ye74_c00000{bottom:344.546667pt;}
.y35_c00000{bottom:345.026667pt;}
.y9ab_c00000{bottom:345.186667pt;}
.y543_c00000{bottom:345.346667pt;}
.y447_c00000{bottom:345.506667pt;}
.yb64_c00000{bottom:345.666667pt;}
.yc6e_c00000{bottom:345.826667pt;}
.y662_c00000{bottom:345.986667pt;}
.yb92_c00000{bottom:346.146667pt;}
.y628_c00000{bottom:346.306667pt;}
.y1314_c00000{bottom:346.466667pt;}
.y13ad_c00000{bottom:346.626667pt;}
.yde7_c00000{bottom:346.786667pt;}
.y74c_c00000{bottom:346.933333pt;}
.y185_c00000{bottom:346.946667pt;}
.y4f4_c00000{bottom:347.106667pt;}
.y696_c00000{bottom:347.266667pt;}
.y100b_c00000{bottom:347.413333pt;}
.yce9_c00000{bottom:347.426667pt;}
.y1217_c00000{bottom:347.573333pt;}
.ydd1_c00000{bottom:347.746667pt;}
.y125a_c00000{bottom:347.893333pt;}
.y726_c00000{bottom:347.906667pt;}
.y1218_c00000{bottom:348.053333pt;}
.yeff_c00000{bottom:348.226667pt;}
.y3d4_c00000{bottom:348.386667pt;}
.y114c_c00000{bottom:348.546667pt;}
.yee_c00000{bottom:348.706667pt;}
.y4be_c00000{bottom:348.866667pt;}
.y1215_c00000{bottom:349.173333pt;}
.y1200_c00000{bottom:349.186667pt;}
.yfcc_c00000{bottom:349.506667pt;}
.y158_c00000{bottom:349.666667pt;}
.y114e_c00000{bottom:349.826667pt;}
.y6e5_c00000{bottom:349.986667pt;}
.y6c9_c00000{bottom:350.146667pt;}
.y11d1_c00000{bottom:350.306667pt;}
.y130a_c00000{bottom:350.466667pt;}
.yf19_c00000{bottom:350.613333pt;}
.y133c_c00000{bottom:350.626667pt;}
.ya7a_c00000{bottom:350.786667pt;}
.y1352_c00000{bottom:350.946667pt;}
.y618_c00000{bottom:351.106667pt;}
.y2f0_c00000{bottom:351.266667pt;}
.y25b_c00000{bottom:351.426667pt;}
.y328_c00000{bottom:351.586667pt;}
.y10de_c00000{bottom:351.733333pt;}
.y8a9_c00000{bottom:351.746667pt;}
.ycf9_c00000{bottom:351.906667pt;}
.y1279_c00000{bottom:352.066667pt;}
.yacf_c00000{bottom:352.226667pt;}
.y823_c00000{bottom:352.386667pt;}
.ye53_c00000{bottom:352.546667pt;}
.y27b_c00000{bottom:352.866667pt;}
.y1413_c00000{bottom:353.026667pt;}
.ye81_c00000{bottom:353.173333pt;}
.y308_c00000{bottom:353.186667pt;}
.y521_c00000{bottom:353.506667pt;}
.yb35_c00000{bottom:353.666667pt;}
.yaba_c00000{bottom:353.826667pt;}
.y989_c00000{bottom:353.986667pt;}
.y12d8_c00000{bottom:354.133333pt;}
.y4bf_c00000{bottom:354.146667pt;}
.y104e_c00000{bottom:354.306667pt;}
.y67c_c00000{bottom:354.466667pt;}
.y503_c00000{bottom:354.626667pt;}
.ya2_c00000{bottom:354.786667pt;}
.yeaf_c00000{bottom:354.946667pt;}
.y1a_c00000{bottom:355.044000pt;}
.y234_c00000{bottom:355.106667pt;}
.ya24_c00000{bottom:355.253333pt;}
.y139c_c00000{bottom:355.426667pt;}
.yeb2_c00000{bottom:355.573333pt;}
.y483_c00000{bottom:355.586667pt;}
.y1254_c00000{bottom:355.746667pt;}
.yf73_c00000{bottom:355.906667pt;}
.y499_c00000{bottom:356.066667pt;}
.ya5a_c00000{bottom:356.226667pt;}
.y39b_c00000{bottom:356.386667pt;}
.y1402_c00000{bottom:356.546667pt;}
.y3e6_c00000{bottom:356.706667pt;}
.yf8d_c00000{bottom:356.866667pt;}
.y1171_c00000{bottom:357.026667pt;}
.y1cc_c00000{bottom:357.186667pt;}
.y1245_c00000{bottom:357.346667pt;}
.y4d6_c00000{bottom:357.506667pt;}
.y53a_c00000{bottom:357.666667pt;}
.y1ac_c00000{bottom:357.826667pt;}
.yc9e_c00000{bottom:357.986667pt;}
.yfb3_c00000{bottom:358.146667pt;}
.yc40_c00000{bottom:358.466667pt;}
.yb83_c00000{bottom:358.626667pt;}
.y7e_c00000{bottom:358.946667pt;}
.y405_c00000{bottom:359.106667pt;}
.y744_c00000{bottom:359.266667pt;}
.y70d_c00000{bottom:359.426667pt;}
.y8c6_c00000{bottom:359.586667pt;}
.yc9f_c00000{bottom:359.733333pt;}
.y224_c00000{bottom:359.746667pt;}
.y20e_c00000{bottom:359.906667pt;}
.y852_c00000{bottom:360.066667pt;}
.ybc5_c00000{bottom:360.226667pt;}
.y551_c00000{bottom:360.546667pt;}
.y5b4_c00000{bottom:360.706667pt;}
.y6f2_c00000{bottom:360.866667pt;}
.y39a_c00000{bottom:361.026667pt;}
.yb50_c00000{bottom:361.186667pt;}
.y13e5_c00000{bottom:361.346667pt;}
.ya0c_c00000{bottom:361.506667pt;}
.y365_c00000{bottom:361.666667pt;}
.y904_c00000{bottom:361.826667pt;}
.yd9e_c00000{bottom:361.986667pt;}
.y13c4_c00000{bottom:362.146667pt;}
.y13f_c00000{bottom:362.306667pt;}
.yfbb_c00000{bottom:362.773333pt;}
.y833_c00000{bottom:362.786667pt;}
.y1007_c00000{bottom:362.933333pt;}
.y53b_c00000{bottom:362.946667pt;}
.ybcc_c00000{bottom:363.106667pt;}
.y7e2_c00000{bottom:363.266667pt;}
.y649_c00000{bottom:363.426667pt;}
.yb1d_c00000{bottom:363.573333pt;}
.y770_c00000{bottom:363.746667pt;}
.y418_c00000{bottom:363.906667pt;}
.y10b7_c00000{bottom:364.066667pt;}
.yff9_c00000{bottom:364.226667pt;}
.y33e_c00000{bottom:364.386667pt;}
.yeea_c00000{bottom:364.533333pt;}
.y86b_c00000{bottom:364.546667pt;}
.yb5c_c00000{bottom:364.706667pt;}
.y4c_c00000{bottom:364.866667pt;}
.y8e2_c00000{bottom:365.026667pt;}
.y446_c00000{bottom:365.186667pt;}
.y1016_c00000{bottom:365.333333pt;}
.y600_c00000{bottom:365.346667pt;}
.ycd0_c00000{bottom:365.506667pt;}
.yc6d_c00000{bottom:365.666667pt;}
.y661_c00000{bottom:365.986667pt;}
.y116a_c00000{bottom:366.146667pt;}
.y627_c00000{bottom:366.306667pt;}
.yf02_c00000{bottom:366.453333pt;}
.y1161_c00000{bottom:366.466667pt;}
.yde6_c00000{bottom:366.626667pt;}
.y184_c00000{bottom:366.786667pt;}
.y55c_c00000{bottom:366.946667pt;}
.y962_c00000{bottom:367.106667pt;}
.y695_c00000{bottom:367.266667pt;}
.y1297_c00000{bottom:367.426667pt;}
.y10a2_c00000{bottom:367.746667pt;}
.y890_c00000{bottom:368.066667pt;}
.ycb4_c00000{bottom:368.226667pt;}
.ya46_c00000{bottom:368.386667pt;}
.yed_c00000{bottom:368.546667pt;}
.y4bd_c00000{bottom:368.706667pt;}
.y1309_c00000{bottom:368.866667pt;}
.yae7_c00000{bottom:369.026667pt;}
.ybef_c00000{bottom:369.186667pt;}
.yfcb_c00000{bottom:369.346667pt;}
.y157_c00000{bottom:369.506667pt;}
.y116_c00000{bottom:369.666667pt;}
.y6e4_c00000{bottom:369.826667pt;}
.y6c8_c00000{bottom:370.146667pt;}
.y10e4_c00000{bottom:370.293333pt;}
.y1249_c00000{bottom:370.306667pt;}
.y135c_c00000{bottom:370.466667pt;}
.y7f4_c00000{bottom:370.626667pt;}
.y9e7_c00000{bottom:370.786667pt;}
.y5a6_c00000{bottom:370.946667pt;}
.yba8_c00000{bottom:371.093333pt;}
.y2ef_c00000{bottom:371.106667pt;}
.y25a_c00000{bottom:371.266667pt;}
.y11e7_c00000{bottom:371.426667pt;}
.y11d5_c00000{bottom:371.573333pt;}
.ycf8_c00000{bottom:371.586667pt;}
.yf11_c00000{bottom:371.906667pt;}
.ya79_c00000{bottom:372.066667pt;}
.y1088_c00000{bottom:372.226667pt;}
.ye52_c00000{bottom:372.386667pt;}
.y19_c00000{bottom:372.480000pt;}
.y27a_c00000{bottom:372.546667pt;}
.ybdb_c00000{bottom:372.706667pt;}
.y8a8_c00000{bottom:372.866667pt;}
.y307_c00000{bottom:373.026667pt;}
.yb32_c00000{bottom:373.346667pt;}
.y520_c00000{bottom:373.506667pt;}
.y10ee_c00000{bottom:373.666667pt;}
.y103f_c00000{bottom:373.826667pt;}
.y399_c00000{bottom:373.986667pt;}
.ya1_c00000{bottom:374.146667pt;}
.yc97_c00000{bottom:374.306667pt;}
.y29c_c00000{bottom:374.466667pt;}
.y142a_c00000{bottom:374.613333pt;}
.y431_c00000{bottom:374.626667pt;}
.y725_c00000{bottom:374.786667pt;}
.y3ba_c00000{bottom:374.946667pt;}
.y988_c00000{bottom:375.106667pt;}
.y5e9_c00000{bottom:375.573333pt;}
.y1cb_c00000{bottom:375.586667pt;}
.y7f5_c00000{bottom:375.906667pt;}
.yb17_c00000{bottom:376.053333pt;}
.y1ab_c00000{bottom:376.066667pt;}
.yc7b_c00000{bottom:376.226667pt;}
.y3e5_c00000{bottom:376.386667pt;}
.yee7_c00000{bottom:376.546667pt;}
.y1046_c00000{bottom:376.693333pt;}
.y794_c00000{bottom:376.706667pt;}
.y1253_c00000{bottom:376.866667pt;}
.y461_c00000{bottom:377.026667pt;}
.y11e2_c00000{bottom:377.333333pt;}
.y539_c00000{bottom:377.346667pt;}
.y2ba_c00000{bottom:377.506667pt;}
.ya2c_c00000{bottom:377.666667pt;}
.yc15_c00000{bottom:377.826667pt;}
.y9bf_c00000{bottom:377.986667pt;}
.y223_c00000{bottom:378.146667pt;}
.y20d_c00000{bottom:378.306667pt;}
.y7d_c00000{bottom:378.466667pt;}
.y4d5_c00000{bottom:378.626667pt;}
.yefe_c00000{bottom:378.786667pt;}
.y404_c00000{bottom:378.946667pt;}
.y3d3_c00000{bottom:379.106667pt;}
.y70c_c00000{bottom:379.266667pt;}
.y13dc_c00000{bottom:379.426667pt;}
.y2d0_c00000{bottom:379.586667pt;}
.yb82_c00000{bottom:379.746667pt;}
.yfa1_c00000{bottom:379.906667pt;}
.yebf_c00000{bottom:380.066667pt;}
.y13df_c00000{bottom:380.226667pt;}
.y550_c00000{bottom:380.386667pt;}
.y1156_c00000{bottom:380.546667pt;}
.y8c5_c00000{bottom:380.706667pt;}
.y96c_c00000{bottom:380.866667pt;}
.y807_c00000{bottom:381.026667pt;}
.ye98_c00000{bottom:381.186667pt;}
.y6f1_c00000{bottom:381.346667pt;}
.y364_c00000{bottom:381.506667pt;}
.y4b_c00000{bottom:381.826667pt;}
.yd9d_c00000{bottom:381.986667pt;}
.y13e_c00000{bottom:382.146667pt;}
.y327_c00000{bottom:382.306667pt;}
.y1023_c00000{bottom:382.453333pt;}
.yb4f_c00000{bottom:382.466667pt;}
.ye33_c00000{bottom:382.626667pt;}
.y591_c00000{bottom:382.786667pt;}
.y903_c00000{bottom:382.946667pt;}
.yc2c_c00000{bottom:383.106667pt;}
.yf7c_c00000{bottom:383.253333pt;}
.y1313_c00000{bottom:383.266667pt;}
.y250_c00000{bottom:383.426667pt;}
.ya22_c00000{bottom:383.586667pt;}
.y417_c00000{bottom:383.746667pt;}
.ye73_c00000{bottom:384.066667pt;}
.y113e_c00000{bottom:384.386667pt;}
.y7e1_c00000{bottom:384.546667pt;}
.yef6_c00000{bottom:384.706667pt;}
.yd13_c00000{bottom:384.853333pt;}
.y76f_c00000{bottom:384.866667pt;}
.y6ac_c00000{bottom:385.026667pt;}
.y445_c00000{bottom:385.186667pt;}
.yc6c_c00000{bottom:385.506667pt;}
.y34_c00000{bottom:385.666667pt;}
.ycc1_c00000{bottom:385.826667pt;}
.y660_c00000{bottom:385.986667pt;}
.y8e1_c00000{bottom:386.146667pt;}
.y101_c00000{bottom:386.306667pt;}
.yde5_c00000{bottom:386.466667pt;}
.y183_c00000{bottom:386.626667pt;}
.y55b_c00000{bottom:386.786667pt;}
.ybfb_c00000{bottom:386.933333pt;}
.yc58_c00000{bottom:386.946667pt;}
.yce0_c00000{bottom:387.106667pt;}
.y694_c00000{bottom:387.266667pt;}
.y9a9_c00000{bottom:387.426667pt;}
.y10a1_c00000{bottom:387.586667pt;}
.yf79_c00000{bottom:387.746667pt;}
.yb06_c00000{bottom:387.906667pt;}
.ycb3_c00000{bottom:388.066667pt;}
.y961_c00000{bottom:388.226667pt;}
.y1420_c00000{bottom:388.373333pt;}
.y73d_c00000{bottom:388.386667pt;}
.y4bc_c00000{bottom:388.546667pt;}
.yccf_c00000{bottom:388.866667pt;}
.y88f_c00000{bottom:389.186667pt;}
.y115_c00000{bottom:389.506667pt;}
.y6e3_c00000{bottom:389.666667pt;}
.y18_c00000{bottom:389.760000pt;}
.y1078_c00000{bottom:389.826667pt;}
.ye80_c00000{bottom:389.973333pt;}
.y6c7_c00000{bottom:389.986667pt;}
.yae6_c00000{bottom:390.146667pt;}
.ybee_c00000{bottom:390.466667pt;}
.y5a5_c00000{bottom:390.786667pt;}
.y2ee_c00000{bottom:390.946667pt;}
.y259_c00000{bottom:391.106667pt;}
.y7bb_c00000{bottom:391.266667pt;}
.ycf7_c00000{bottom:391.586667pt;}
.y7f3_c00000{bottom:391.746667pt;}
.y9e6_c00000{bottom:391.906667pt;}
.y139b_c00000{bottom:392.226667pt;}
.ye51_c00000{bottom:392.386667pt;}
.y279_c00000{bottom:392.546667pt;}
.y9aa_c00000{bottom:392.706667pt;}
.y1412_c00000{bottom:392.866667pt;}
.ye1d_c00000{bottom:393.333333pt;}
.y51f_c00000{bottom:393.346667pt;}
.ya0_c00000{bottom:393.506667pt;}
.yc0a_c00000{bottom:393.826667pt;}
.y13ba_c00000{bottom:393.973333pt;}
.y1ca_c00000{bottom:393.986667pt;}
.y975_c00000{bottom:394.146667pt;}
.y29a_c00000{bottom:394.306667pt;}
.y502_c00000{bottom:394.466667pt;}
.y822_c00000{bottom:394.626667pt;}
.ya0b_c00000{bottom:394.773333pt;}
.ya0a_c00000{bottom:394.786667pt;}
.y57e_c00000{bottom:394.933333pt;}
.y1091_c00000{bottom:394.946667pt;}
.y1397_c00000{bottom:395.106667pt;}
.y13a2_c00000{bottom:395.746667pt;}
.y498_c00000{bottom:395.906667pt;}
.yc7a_c00000{bottom:396.066667pt;}
.y3b9_c00000{bottom:396.226667pt;}
.y987_c00000{bottom:396.386667pt;}
.y1151_c00000{bottom:396.533333pt;}
.y20c_c00000{bottom:396.546667pt;}
.y244_c00000{bottom:396.706667pt;}
.yc16_c00000{bottom:396.853333pt;}
.y460_c00000{bottom:396.866667pt;}
.y100f_c00000{bottom:397.026667pt;}
.y538_c00000{bottom:397.186667pt;}
.y1022_c00000{bottom:397.333333pt;}
.y2b9_c00000{bottom:397.346667pt;}
.y403_c00000{bottom:397.506667pt;}
.yc9d_c00000{bottom:397.666667pt;}
.y13a3_c00000{bottom:397.813333pt;}
.y7c_c00000{bottom:397.826667pt;}
.ye2b_c00000{bottom:397.986667pt;}
.yc3f_c00000{bottom:398.146667pt;}
.yd3c_c00000{bottom:398.306667pt;}
.y4a_c00000{bottom:398.626667pt;}
.ya59_c00000{bottom:398.786667pt;}
.y3d2_c00000{bottom:398.946667pt;}
.y70b_c00000{bottom:399.106667pt;}
.y13ce_c00000{bottom:399.253333pt;}
.yec_c00000{bottom:399.266667pt;}
.y2cf_c00000{bottom:399.426667pt;}
.y29b_c00000{bottom:399.586667pt;}
.y4d4_c00000{bottom:399.746667pt;}
.yfad_c00000{bottom:399.906667pt;}
.yecb_c00000{bottom:400.213333pt;}
.y5b3_c00000{bottom:400.226667pt;}
.y54f_c00000{bottom:400.386667pt;}
.y117a_c00000{bottom:400.546667pt;}
.y103e_c00000{bottom:400.706667pt;}
.yb81_c00000{bottom:400.866667pt;}
.ye97_c00000{bottom:401.026667pt;}
.yba6_c00000{bottom:401.186667pt;}
.y363_c00000{bottom:401.346667pt;}
.y11f2_c00000{bottom:401.506667pt;}
.y1155_c00000{bottom:401.666667pt;}
.y8d4_c00000{bottom:401.826667pt;}
.y13d_c00000{bottom:401.986667pt;}
.yd8a_c00000{bottom:402.133333pt;}
.y806_c00000{bottom:402.146667pt;}
.y114d_c00000{bottom:402.453333pt;}
.ye32_c00000{bottom:402.466667pt;}
.y532_c00000{bottom:402.626667pt;}
.ybc4_c00000{bottom:402.786667pt;}
.yc2b_c00000{bottom:402.946667pt;}
.y648_c00000{bottom:403.426667pt;}
.yf76_c00000{bottom:403.573333pt;}
.ycd_c00000{bottom:403.586667pt;}
.y119b_c00000{bottom:403.733333pt;}
.y306_c00000{bottom:403.746667pt;}
.yff8_c00000{bottom:403.906667pt;}
.ye72_c00000{bottom:404.066667pt;}
.y902_c00000{bottom:404.226667pt;}
.yef5_c00000{bottom:404.386667pt;}
.y13b9_c00000{bottom:404.546667pt;}
.ye18_c00000{bottom:404.853333pt;}
.y444_c00000{bottom:405.026667pt;}
.y1103_c00000{bottom:405.186667pt;}
.y430_c00000{bottom:405.346667pt;}
.yd4a_c00000{bottom:405.506667pt;}
.y1098_c00000{bottom:405.653333pt;}
.y787_c00000{bottom:405.666667pt;}
.yefd_c00000{bottom:405.826667pt;}
.y482_c00000{bottom:405.986667pt;}
.y1351_c00000{bottom:406.146667pt;}
.y626_c00000{bottom:406.306667pt;}
.y182_c00000{bottom:406.466667pt;}
.y55a_c00000{bottom:406.626667pt;}
.y33d_c00000{bottom:406.786667pt;}
.y86a_c00000{bottom:406.946667pt;}
.yb5b_c00000{bottom:407.106667pt;}
.y693_c00000{bottom:407.266667pt;}
.y8e0_c00000{bottom:407.426667pt;}
.yfe4_c00000{bottom:407.573333pt;}
.yb3f_c00000{bottom:407.586667pt;}
.y17_c00000{bottom:407.676800pt;}
.yace_c00000{bottom:407.746667pt;}
.ycb2_c00000{bottom:407.906667pt;}
.y577_c00000{bottom:408.066667pt;}
.y73c_c00000{bottom:408.226667pt;}
.y4bb_c00000{bottom:408.386667pt;}
.y9a8_c00000{bottom:408.546667pt;}
.y11ff_c00000{bottom:408.866667pt;}
.yb05_c00000{bottom:409.026667pt;}
.yb63_c00000{bottom:409.186667pt;}
.yad6_c00000{bottom:409.333333pt;}
.y114_c00000{bottom:409.346667pt;}
.y6e2_c00000{bottom:409.506667pt;}
.y1077_c00000{bottom:409.666667pt;}
.y6c6_c00000{bottom:409.826667pt;}
.y832_c00000{bottom:410.306667pt;}
.y88e_c00000{bottom:410.466667pt;}
.y5a4_c00000{bottom:410.626667pt;}
.y2ed_c00000{bottom:410.786667pt;}
.y258_c00000{bottom:410.946667pt;}
.y845_c00000{bottom:411.106667pt;}
.yae5_c00000{bottom:411.266667pt;}
.y12b4_c00000{bottom:411.573333pt;}
.ybed_c00000{bottom:411.586667pt;}
.yf10_c00000{bottom:411.746667pt;}
.ycce_c00000{bottom:411.906667pt;}
.ya8c_c00000{bottom:412.066667pt;}
.y13b4_c00000{bottom:412.213333pt;}
.ye50_c00000{bottom:412.226667pt;}
.y1c9_c00000{bottom:412.386667pt;}
.ye61_c00000{bottom:412.546667pt;}
.y8f9_c00000{bottom:412.706667pt;}
.y1aa_c00000{bottom:412.866667pt;}
.y5e8_c00000{bottom:413.013333pt;}
.y9f_c00000{bottom:413.026667pt;}
.y51e_c00000{bottom:413.186667pt;}
.y13b6_c00000{bottom:413.333333pt;}
.y10ed_c00000{bottom:413.346667pt;}
.y1396_c00000{bottom:413.506667pt;}
.y398_c00000{bottom:413.666667pt;}
.y11b6_c00000{bottom:413.986667pt;}
.y299_c00000{bottom:414.146667pt;}
.y67b_c00000{bottom:414.466667pt;}
.yb16_c00000{bottom:414.626667pt;}
.yfe6_c00000{bottom:414.773333pt;}
.y7b_c00000{bottom:414.786667pt;}
.y20b_c00000{bottom:414.946667pt;}
.y243_c00000{bottom:415.106667pt;}
.y12c7_c00000{bottom:415.253333pt;}
.y1138_c00000{bottom:415.426667pt;}
.yd51_c00000{bottom:415.573333pt;}
.y497_c00000{bottom:415.586667pt;}
.y821_c00000{bottom:415.746667pt;}
.y3e4_c00000{bottom:416.066667pt;}
.yc86_c00000{bottom:416.226667pt;}
.yf8c_c00000{bottom:416.386667pt;}
.ycf6_c00000{bottom:416.546667pt;}
.y45f_c00000{bottom:416.706667pt;}
.y100_c00000{bottom:416.866667pt;}
.yf32_c00000{bottom:417.026667pt;}
.y4f3_c00000{bottom:417.186667pt;}
.y1211_c00000{bottom:417.333333pt;}
.y2b8_c00000{bottom:417.346667pt;}
.y99d_c00000{bottom:417.506667pt;}
.yaf5_c00000{bottom:417.666667pt;}
.yc3e_c00000{bottom:417.986667pt;}
.y106e_c00000{bottom:418.146667pt;}
.ya1a_c00000{bottom:418.306667pt;}
.y2ce_c00000{bottom:418.466667pt;}
.ybcb_c00000{bottom:418.626667pt;}
.y3d1_c00000{bottom:418.786667pt;}
.y70a_c00000{bottom:418.946667pt;}
.y13db_c00000{bottom:419.106667pt;}
.ya58_c00000{bottom:419.746667pt;}
.yb99_c00000{bottom:419.906667pt;}
.y5b2_c00000{bottom:420.066667pt;}
.y54e_c00000{bottom:420.226667pt;}
.y9be_c00000{bottom:420.386667pt;}
.y913_c00000{bottom:420.706667pt;}
.y4d3_c00000{bottom:420.866667pt;}
.y85d_c00000{bottom:421.026667pt;}
.y362_c00000{bottom:421.186667pt;}
.ye47_c00000{bottom:421.346667pt;}
.yd9c_c00000{bottom:421.666667pt;}
.y1099_c00000{bottom:421.813333pt;}
.y13c_c00000{bottom:421.826667pt;}
.y5d0_c00000{bottom:421.986667pt;}
.yb21_c00000{bottom:422.146667pt;}
.y10d7_c00000{bottom:422.466667pt;}
.y9dc_c00000{bottom:422.786667pt;}
.y8d3_c00000{bottom:422.946667pt;}
.y96b_c00000{bottom:423.106667pt;}
.y7c8_c00000{bottom:423.253333pt;}
.y805_c00000{bottom:423.266667pt;}
.y647_c00000{bottom:423.426667pt;}
.y305_c00000{bottom:423.586667pt;}
.ybc3_c00000{bottom:423.746667pt;}
.y12fd_c00000{bottom:424.066667pt;}
.y13f8_c00000{bottom:424.213333pt;}
.yef4_c00000{bottom:424.226667pt;}
.y1350_c00000{bottom:424.546667pt;}
.yb4e_c00000{bottom:424.706667pt;}
.y443_c00000{bottom:424.866667pt;}
.y383_c00000{bottom:425.026667pt;}
.yc6b_c00000{bottom:425.186667pt;}
.y901_c00000{bottom:425.346667pt;}
.yf60_c00000{bottom:425.506667pt;}
.y16_c00000{bottom:425.600000pt;}
.y135b_c00000{bottom:425.666667pt;}
.y481_c00000{bottom:425.826667pt;}
.y65f_c00000{bottom:426.146667pt;}
.y181_c00000{bottom:426.306667pt;}
.y12b8_c00000{bottom:426.453333pt;}
.y33_c00000{bottom:426.466667pt;}
.yc57_c00000{bottom:426.626667pt;}
.ye7f_c00000{bottom:426.773333pt;}
.y786_c00000{bottom:426.786667pt;}
.y10cd_c00000{bottom:426.946667pt;}
.y6ab_c00000{bottom:427.106667pt;}
.y692_c00000{bottom:427.266667pt;}
.yb3d_c00000{bottom:427.733333pt;}
.y576_c00000{bottom:427.746667pt;}
.y33c_c00000{bottom:427.906667pt;}
.y402_c00000{bottom:428.066667pt;}
.y4ba_c00000{bottom:428.226667pt;}
.y12b1_c00000{bottom:428.386667pt;}
.y8df_c00000{bottom:428.546667pt;}
.y11fe_c00000{bottom:428.706667pt;}
.yfca_c00000{bottom:428.866667pt;}
.y113_c00000{bottom:429.186667pt;}
.y6e1_c00000{bottom:429.346667pt;}
.yed5_c00000{bottom:429.653333pt;}
.yeb_c00000{bottom:429.666667pt;}
.y9a7_c00000{bottom:429.826667pt;}
.y1160_c00000{bottom:429.986667pt;}
.y11de_c00000{bottom:430.133333pt;}
.yb04_c00000{bottom:430.146667pt;}
.y501_c00000{bottom:430.306667pt;}
.ya3a_c00000{bottom:430.453333pt;}
.ydac_c00000{bottom:430.466667pt;}
.y2ec_c00000{bottom:430.626667pt;}
.y12ca_c00000{bottom:430.773333pt;}
.y257_c00000{bottom:430.786667pt;}
.y1c8_c00000{bottom:430.946667pt;}
.ycf5_c00000{bottom:431.106667pt;}
.y1a9_c00000{bottom:431.266667pt;}
.y7a_c00000{bottom:431.426667pt;}
.ya09_c00000{bottom:431.573333pt;}
.y88d_c00000{bottom:431.586667pt;}
.ya45_c00000{bottom:431.746667pt;}
.ya9c_c00000{bottom:431.906667pt;}
.y278_c00000{bottom:432.066667pt;}
.y13fa_c00000{bottom:432.213333pt;}
.y49_c00000{bottom:432.386667pt;}
.y1036_c00000{bottom:432.546667pt;}
.ybec_c00000{bottom:432.706667pt;}
.y51d_c00000{bottom:433.026667pt;}
.ya8b_c00000{bottom:433.186667pt;}
.yfb8_c00000{bottom:433.333333pt;}
.y1f9_c00000{bottom:433.346667pt;}
.yd23_c00000{bottom:433.493333pt;}
.y242_c00000{bottom:433.506667pt;}
.yfb7_c00000{bottom:433.653333pt;}
.y11a0_c00000{bottom:433.826667pt;}
.y298_c00000{bottom:433.986667pt;}
.y416_c00000{bottom:434.146667pt;}
.y9e5_c00000{bottom:434.306667pt;}
.y67a_c00000{bottom:434.466667pt;}
.yccd_c00000{bottom:434.786667pt;}
.y114b_c00000{bottom:434.946667pt;}
.y3e3_c00000{bottom:435.106667pt;}
.y496_c00000{bottom:435.586667pt;}
.yc79_c00000{bottom:435.906667pt;}
.y11a8_c00000{bottom:436.053333pt;}
.yc09_c00000{bottom:436.066667pt;}
.y986_c00000{bottom:436.226667pt;}
.y8a7_c00000{bottom:436.386667pt;}
.y974_c00000{bottom:436.546667pt;}
.y1278_c00000{bottom:436.706667pt;}
.y4f2_c00000{bottom:436.866667pt;}
.y531_c00000{bottom:437.026667pt;}
.y2b7_c00000{bottom:437.186667pt;}
.y13ef_c00000{bottom:437.333333pt;}
.yc5b_c00000{bottom:437.346667pt;}
.ya6c_c00000{bottom:437.506667pt;}
.yc3d_c00000{bottom:437.826667pt;}
.y106d_c00000{bottom:437.986667pt;}
.y3b8_c00000{bottom:438.466667pt;}
.y3d0_c00000{bottom:438.626667pt;}
.y13d5_c00000{bottom:438.773333pt;}
.y709_c00000{bottom:438.786667pt;}
.y94b_c00000{bottom:438.946667pt;}
.ydd0_c00000{bottom:439.426667pt;}
.yfa0_c00000{bottom:439.586667pt;}
.y1417_c00000{bottom:439.733333pt;}
.yf72_c00000{bottom:439.746667pt;}
.y5b1_c00000{bottom:439.906667pt;}
.y54d_c00000{bottom:440.066667pt;}
.y6aa_c00000{bottom:440.226667pt;}
.y5cf_c00000{bottom:440.386667pt;}
.ye96_c00000{bottom:440.706667pt;}
.ya57_c00000{bottom:440.866667pt;}
.ya2b_c00000{bottom:441.026667pt;}
.y361_c00000{bottom:441.186667pt;}
.y9bd_c00000{bottom:441.506667pt;}
.y13b_c00000{bottom:441.666667pt;}
.y912_c00000{bottom:441.826667pt;}
.y1027_c00000{bottom:441.973333pt;}
.y4d2_c00000{bottom:442.146667pt;}
.y15_c00000{bottom:442.398720pt;}
.y1097_c00000{bottom:442.453333pt;}
.yd1f_c00000{bottom:442.466667pt;}
.yc2a_c00000{bottom:442.626667pt;}
.yd17_c00000{bottom:442.786667pt;}
.y134f_c00000{bottom:443.106667pt;}
.y13d3_c00000{bottom:443.253333pt;}
.y617_c00000{bottom:443.266667pt;}
.y304_c00000{bottom:443.426667pt;}
.yff7_c00000{bottom:443.586667pt;}
.yf78_c00000{bottom:443.746667pt;}
.y960_c00000{bottom:443.906667pt;}
.yef3_c00000{bottom:444.066667pt;}
.y397_c00000{bottom:444.226667pt;}
.yaad_c00000{bottom:444.386667pt;}
.y804_c00000{bottom:444.546667pt;}
.y442_c00000{bottom:444.706667pt;}
.y42f_c00000{bottom:444.866667pt;}
.yc6a_c00000{bottom:445.026667pt;}
.yd49_c00000{bottom:445.186667pt;}
.ycc0_c00000{bottom:445.346667pt;}
.y480_c00000{bottom:445.666667pt;}
.yb4d_c00000{bottom:445.826667pt;}
.y180_c00000{bottom:446.146667pt;}
.y1373_c00000{bottom:446.293333pt;}
.y559_c00000{bottom:446.306667pt;}
.yc56_c00000{bottom:446.466667pt;}
.yee6_c00000{bottom:446.626667pt;}
.y10a0_c00000{bottom:447.106667pt;}
.y691_c00000{bottom:447.266667pt;}
.yff_c00000{bottom:447.426667pt;}
.y45e_c00000{bottom:447.586667pt;}
.y401_c00000{bottom:447.746667pt;}
.y785_c00000{bottom:447.906667pt;}
.y73b_c00000{bottom:448.066667pt;}
.y76e_c00000{bottom:448.386667pt;}
.y79_c00000{bottom:448.546667pt;}
.ya70_c00000{bottom:448.693333pt;}
.yfc9_c00000{bottom:448.866667pt;}
.y112_c00000{bottom:449.026667pt;}
.y1372_c00000{bottom:449.173333pt;}
.y48_c00000{bottom:449.186667pt;}
.y1c7_c00000{bottom:449.346667pt;}
.yea_c00000{bottom:449.506667pt;}
.y8de_c00000{bottom:449.666667pt;}
.y5a3_c00000{bottom:450.146667pt;}
.y5e5_c00000{bottom:450.293333pt;}
.y5e4_c00000{bottom:450.306667pt;}
.y2eb_c00000{bottom:450.466667pt;}
.y256_c00000{bottom:450.626667pt;}
.y1169_c00000{bottom:450.786667pt;}
.y9a6_c00000{bottom:450.946667pt;}
.yac3_c00000{bottom:451.093333pt;}
.ycf4_c00000{bottom:451.106667pt;}
.yf0f_c00000{bottom:451.266667pt;}
.yb03_c00000{bottom:451.426667pt;}
.y9e_c00000{bottom:451.746667pt;}
.y10cc_c00000{bottom:451.893333pt;}
.y1f7_c00000{bottom:451.906667pt;}
.y9cb_c00000{bottom:452.066667pt;}
.y985_c00000{bottom:452.226667pt;}
.y1035_c00000{bottom:452.386667pt;}
.y137b_c00000{bottom:452.546667pt;}
.y88c_c00000{bottom:452.706667pt;}
.yf40_c00000{bottom:452.853333pt;}
.y51c_c00000{bottom:452.866667pt;}
.ye2e_c00000{bottom:453.013333pt;}
.y10d6_c00000{bottom:453.186667pt;}
.y844_c00000{bottom:453.506667pt;}
.y1252_c00000{bottom:453.666667pt;}
.y297_c00000{bottom:453.826667pt;}
.y415_c00000{bottom:453.986667pt;}
.yd0d_c00000{bottom:454.146667pt;}
.ya8a_c00000{bottom:454.306667pt;}
.y679_c00000{bottom:454.466667pt;}
.y7ba_c00000{bottom:454.786667pt;}
.y7f2_c00000{bottom:455.106667pt;}
.y1244_c00000{bottom:455.266667pt;}
.y5ff_c00000{bottom:455.426667pt;}
.y381_c00000{bottom:455.586667pt;}
.yc78_c00000{bottom:455.746667pt;}
.y119a_c00000{bottom:455.906667pt;}
.y1282_c00000{bottom:456.066667pt;}
.yf8b_c00000{bottom:456.226667pt;}
.y1f8_c00000{bottom:456.546667pt;}
.y4f1_c00000{bottom:456.706667pt;}
.y530_c00000{bottom:456.866667pt;}
.y2b6_c00000{bottom:457.026667pt;}
.yc08_c00000{bottom:457.186667pt;}
.y1194_c00000{bottom:457.346667pt;}
.y8a6_c00000{bottom:457.506667pt;}
.yc51_c00000{bottom:457.653333pt;}
.ybac_c00000{bottom:457.666667pt;}
.y106c_c00000{bottom:457.826667pt;}
.yb31_c00000{bottom:457.986667pt;}
.y820_c00000{bottom:458.146667pt;}
.y3cf_c00000{bottom:458.466667pt;}
.y6a9_c00000{bottom:458.626667pt;}
.y5ce_c00000{bottom:458.786667pt;}
.y4b8_c00000{bottom:458.946667pt;}
.ydcf_c00000{bottom:459.106667pt;}
.yebe_c00000{bottom:459.266667pt;}
.yf9f_c00000{bottom:459.426667pt;}
.y3b7_c00000{bottom:459.586667pt;}
.y14_c00000{bottom:459.676800pt;}
.y5b0_c00000{bottom:459.746667pt;}
.y54c_c00000{bottom:459.906667pt;}
.y6e0_c00000{bottom:460.066667pt;}
.y1346_c00000{bottom:460.226667pt;}
.ye95_c00000{bottom:460.546667pt;}
.y382_c00000{bottom:460.866667pt;}
.y360_c00000{bottom:461.026667pt;}
.y793_c00000{bottom:461.346667pt;}
.y13a_c00000{bottom:461.506667pt;}
.y616_c00000{bottom:461.666667pt;}
.y12cd_c00000{bottom:461.986667pt;}
.ya2a_c00000{bottom:462.306667pt;}
.y135a_c00000{bottom:462.466667pt;}
.y9bc_c00000{bottom:462.626667pt;}
.y96a_c00000{bottom:462.786667pt;}
.y911_c00000{bottom:462.946667pt;}
.yd7b_c00000{bottom:463.106667pt;}
.y303_c00000{bottom:463.266667pt;}
.y646_c00000{bottom:463.426667pt;}
.y851_c00000{bottom:463.586667pt;}
.yef2_c00000{bottom:463.906667pt;}
.ye30_c00000{bottom:464.213333pt;}
.y4b9_c00000{bottom:464.226667pt;}
.yb80_c00000{bottom:464.386667pt;}
.ycc_c00000{bottom:464.546667pt;}
.y3e2_c00000{bottom:464.706667pt;}
.yca5_c00000{bottom:464.866667pt;}
.y95f_c00000{bottom:465.026667pt;}
.y9db_c00000{bottom:465.186667pt;}
.y78_c00000{bottom:465.346667pt;}
.y47f_c00000{bottom:465.506667pt;}
.y803_c00000{bottom:465.666667pt;}
.yed3_c00000{bottom:465.826667pt;}
.y17f_c00000{bottom:465.986667pt;}
.y47_c00000{bottom:466.146667pt;}
.y400_c00000{bottom:466.306667pt;}
.yac0_c00000{bottom:466.453333pt;}
.ya9b_c00000{bottom:466.466667pt;}
.y7e7_c00000{bottom:466.626667pt;}
.yb4c_c00000{bottom:467.106667pt;}
.y45d_c00000{bottom:467.266667pt;}
.y575_c00000{bottom:467.426667pt;}
.y1265_c00000{bottom:467.586667pt;}
.y1c6_c00000{bottom:467.746667pt;}
.y2cd_c00000{bottom:467.906667pt;}
.y1a8_c00000{bottom:468.066667pt;}
.ya08_c00000{bottom:468.373333pt;}
.y831_c00000{bottom:468.386667pt;}
.yd3b_c00000{bottom:468.546667pt;}
.yfc8_c00000{bottom:468.706667pt;}
.y108c_c00000{bottom:468.853333pt;}
.y111_c00000{bottom:468.866667pt;}
.y113d_c00000{bottom:469.026667pt;}
.y784_c00000{bottom:469.186667pt;}
.ye9_c00000{bottom:469.346667pt;}
.y76d_c00000{bottom:469.506667pt;}
.y13d1_c00000{bottom:469.666667pt;}
.yfe_c00000{bottom:469.986667pt;}
.y1f6_c00000{bottom:470.146667pt;}
.y241_c00000{bottom:470.306667pt;}
.y2ea_c00000{bottom:470.466667pt;}
.y255_c00000{bottom:470.626667pt;}
.y8dd_c00000{bottom:470.786667pt;}
.y127d_c00000{bottom:470.946667pt;}
.y9d_c00000{bottom:471.106667pt;}
.y13e4_c00000{bottom:471.426667pt;}
.yf62_c00000{bottom:471.586667pt;}
.y277_c00000{bottom:471.746667pt;}
.y1168_c00000{bottom:471.906667pt;}
.y9a5_c00000{bottom:472.066667pt;}
.y12a3_c00000{bottom:472.226667pt;}
.y1034_c00000{bottom:472.386667pt;}
.yb02_c00000{bottom:472.546667pt;}
.y51b_c00000{bottom:472.706667pt;}
.y10ec_c00000{bottom:472.866667pt;}
.ye8d_c00000{bottom:473.013333pt;}
.y13eb_c00000{bottom:473.026667pt;}
.y9ca_c00000{bottom:473.186667pt;}
.y984_c00000{bottom:473.346667pt;}
.y296_c00000{bottom:473.666667pt;}
.y414_c00000{bottom:473.826667pt;}
.ya19_c00000{bottom:473.986667pt;}
.yd0c_c00000{bottom:474.146667pt;}
.ye69_c00000{bottom:474.293333pt;}
.ya44_c00000{bottom:474.306667pt;}
.y678_c00000{bottom:474.466667pt;}
.y396_c00000{bottom:474.626667pt;}
.yae4_c00000{bottom:474.786667pt;}
.ybeb_c00000{bottom:475.106667pt;}
.y380_c00000{bottom:475.266667pt;}
.ya56_c00000{bottom:475.426667pt;}
.yc77_c00000{bottom:475.586667pt;}
.yc69_c00000{bottom:475.746667pt;}
.yac9_c00000{bottom:475.893333pt;}
.y7b9_c00000{bottom:475.906667pt;}
.y104c_c00000{bottom:476.053333pt;}
.yd29_c00000{bottom:476.066667pt;}
.y7f1_c00000{bottom:476.386667pt;}
.y4f0_c00000{bottom:476.546667pt;}
.y52f_c00000{bottom:476.706667pt;}
.y2b5_c00000{bottom:476.866667pt;}
.y6a8_c00000{bottom:477.026667pt;}
.y5cd_c00000{bottom:477.186667pt;}
.yc3c_c00000{bottom:477.506667pt;}
.y13_c00000{bottom:477.600000pt;}
.y106b_c00000{bottom:477.666667pt;}
.y10d5_c00000{bottom:477.986667pt;}
.y3ce_c00000{bottom:478.306667pt;}
.y708_c00000{bottom:478.466667pt;}
.y4b7_c00000{bottom:478.626667pt;}
.y5af_c00000{bottom:478.786667pt;}
.y9ee_c00000{bottom:478.933333pt;}
.y1137_c00000{bottom:478.946667pt;}
.yb70_c00000{bottom:479.093333pt;}
.yb30_c00000{bottom:479.106667pt;}
.y1096_c00000{bottom:479.253333pt;}
.y81f_c00000{bottom:479.266667pt;}
.ye7e_c00000{bottom:479.426667pt;}
.y54b_c00000{bottom:479.746667pt;}
.y1076_c00000{bottom:479.906667pt;}
.y615_c00000{bottom:480.066667pt;}
.ya65_c00000{bottom:480.213333pt;}
.ye94_c00000{bottom:480.386667pt;}
.yfed_c00000{bottom:480.693333pt;}
.ycca_c00000{bottom:480.706667pt;}
.y35f_c00000{bottom:480.866667pt;}
.y900_c00000{bottom:481.026667pt;}
.yf66_c00000{bottom:481.173333pt;}
.yd9b_c00000{bottom:481.186667pt;}
.y326_c00000{bottom:481.346667pt;}
.y139_c00000{bottom:481.506667pt;}
.ycf3_c00000{bottom:481.666667pt;}
.y1368_c00000{bottom:481.826667pt;}
.y12ed_c00000{bottom:481.986667pt;}
.y77_c00000{bottom:482.146667pt;}
.yb6d_c00000{bottom:482.453333pt;}
.y792_c00000{bottom:482.466667pt;}
.yd7a_c00000{bottom:482.786667pt;}
.y11e5_c00000{bottom:482.933333pt;}
.y302_c00000{bottom:483.106667pt;}
.yd00_c00000{bottom:483.253333pt;}
.yff6_c00000{bottom:483.266667pt;}
.y645_c00000{bottom:483.426667pt;}
.y1430_c00000{bottom:483.586667pt;}
.y9bb_c00000{bottom:483.746667pt;}
.y1170_c00000{bottom:484.066667pt;}
.y910_c00000{bottom:484.226667pt;}
.y441_c00000{bottom:484.386667pt;}
.yb6f_c00000{bottom:484.533333pt;}
.y42e_c00000{bottom:484.546667pt;}
.y850_c00000{bottom:484.706667pt;}
.yc03_c00000{bottom:484.853333pt;}
.yd48_c00000{bottom:484.866667pt;}
.ycbf_c00000{bottom:485.026667pt;}
.y1179_c00000{bottom:485.186667pt;}
.y32_c00000{bottom:485.346667pt;}
.yb7f_c00000{bottom:485.506667pt;}
.y17e_c00000{bottom:485.826667pt;}
.y558_c00000{bottom:485.986667pt;}
.y1c5_c00000{bottom:486.146667pt;}
.y9da_c00000{bottom:486.306667pt;}
.y8d2_c00000{bottom:486.466667pt;}
.yb91_c00000{bottom:486.626667pt;}
.y802_c00000{bottom:486.786667pt;}
.y109f_c00000{bottom:486.946667pt;}
.y45c_c00000{bottom:487.106667pt;}
.y6f0_c00000{bottom:487.266667pt;}
.y574_c00000{bottom:487.426667pt;}
.y5e2_c00000{bottom:487.746667pt;}
.yb4b_c00000{bottom:488.226667pt;}
.yd3a_c00000{bottom:488.386667pt;}
.y1f5_c00000{bottom:488.546667pt;}
.y110_c00000{bottom:488.706667pt;}
.y1264_c00000{bottom:488.866667pt;}
.y6c5_c00000{bottom:489.186667pt;}
.yf64_c00000{bottom:489.333333pt;}
.y830_c00000{bottom:489.666667pt;}
.y1102_c00000{bottom:489.826667pt;}
.y5a2_c00000{bottom:489.986667pt;}
.ydab_c00000{bottom:490.146667pt;}
.y11cd_c00000{bottom:490.293333pt;}
.y2e9_c00000{bottom:490.306667pt;}
.y254_c00000{bottom:490.466667pt;}
.y9c_c00000{bottom:490.626667pt;}
.yf0e_c00000{bottom:490.946667pt;}
.y11bd_c00000{bottom:491.106667pt;}
.ydb3_c00000{bottom:491.253333pt;}
.y1208_c00000{bottom:491.266667pt;}
.y33b_c00000{bottom:491.426667pt;}
.y276_c00000{bottom:491.586667pt;}
.yb5a_c00000{bottom:491.906667pt;}
.y8a5_c00000{bottom:492.066667pt;}
.yaa7_c00000{bottom:492.226667pt;}
.y51a_c00000{bottom:492.546667pt;}
.y10d4_c00000{bottom:492.706667pt;}
.y9a4_c00000{bottom:493.186667pt;}
.y295_c00000{bottom:493.506667pt;}
.yb01_c00000{bottom:493.666667pt;}
.y667_c00000{bottom:493.826667pt;}
.yd0b_c00000{bottom:493.986667pt;}
.yfea_c00000{bottom:494.146667pt;}
.y12_c00000{bottom:494.255360pt;}
.y99c_c00000{bottom:494.306667pt;}
.y677_c00000{bottom:494.466667pt;}
.y37f_c00000{bottom:495.106667pt;}
.y3e1_c00000{bottom:495.266667pt;}
.y6a7_c00000{bottom:495.426667pt;}
.y5cc_c00000{bottom:495.586667pt;}
.y843_c00000{bottom:495.746667pt;}
.y12c4_c00000{bottom:495.906667pt;}
.yc00_c00000{bottom:496.066667pt;}
.ybea_c00000{bottom:496.226667pt;}
.y52e_c00000{bottom:496.546667pt;}
.y2b4_c00000{bottom:496.706667pt;}
.y3ff_c00000{bottom:496.866667pt;}
.y7b8_c00000{bottom:497.026667pt;}
.yc07_c00000{bottom:497.346667pt;}
.y7f0_c00000{bottom:497.506667pt;}
.y1243_c00000{bottom:497.666667pt;}
.y1308_c00000{bottom:497.826667pt;}
.y134e_c00000{bottom:498.146667pt;}
.y1364_c00000{bottom:498.293333pt;}
.yf9e_c00000{bottom:498.306667pt;}
.y4b6_c00000{bottom:498.466667pt;}
.y2cc_c00000{bottom:498.626667pt;}
.ydce_c00000{bottom:498.946667pt;}
.y76_c00000{bottom:499.106667pt;}
.yb62_c00000{bottom:499.266667pt;}
.y54a_c00000{bottom:499.586667pt;}
.y8c4_c00000{bottom:499.746667pt;}
.y46_c00000{bottom:499.906667pt;}
.y1136_c00000{bottom:500.226667pt;}
.y81e_c00000{bottom:500.386667pt;}
.y35e_c00000{bottom:500.706667pt;}
.ya9a_c00000{bottom:500.866667pt;}
.yd9a_c00000{bottom:501.026667pt;}
.y325_c00000{bottom:501.186667pt;}
.y138_c00000{bottom:501.346667pt;}
.y1087_c00000{bottom:501.506667pt;}
.y3b6_c00000{bottom:502.013333pt;}
.y8ff_c00000{bottom:502.173333pt;}
.yaf4_c00000{bottom:502.333333pt;}
.y94a_c00000{bottom:502.493333pt;}
.yd79_c00000{bottom:502.653333pt;}
.yeb9_c00000{bottom:502.973333pt;}
.yff5_c00000{bottom:503.133333pt;}
.ye71_c00000{bottom:503.293333pt;}
.y644_c00000{bottom:503.453333pt;}
.y791_c00000{bottom:503.613333pt;}
.y440_c00000{bottom:504.253333pt;}
.y1c4_c00000{bottom:504.413333pt;}
.ya29_c00000{bottom:504.573333pt;}
.yd47_c00000{bottom:504.733333pt;}
.y1a7_c00000{bottom:504.893333pt;}
.y1075_c00000{bottom:505.053333pt;}
.y395_c00000{bottom:505.213333pt;}
.y90f_c00000{bottom:505.373333pt;}
.y4d1_c00000{bottom:505.533333pt;}
.y17d_c00000{bottom:505.693333pt;}
.y557_c00000{bottom:505.853333pt;}
.y65e_c00000{bottom:506.013333pt;}
.y690_c00000{bottom:506.173333pt;}
.ya55_c00000{bottom:506.333333pt;}
.yf8a_c00000{bottom:506.493333pt;}
.yb7e_c00000{bottom:506.813333pt;}
.y1f3_c00000{bottom:506.973333pt;}
.y240_c00000{bottom:507.133333pt;}
.y4ef_c00000{bottom:507.453333pt;}
.y8d1_c00000{bottom:507.613333pt;}
.yad8_c00000{bottom:507.773333pt;}
.y801_c00000{bottom:507.933333pt;}
.y11fd_c00000{bottom:508.093333pt;}
.yd39_c00000{bottom:508.253333pt;}
.ybc2_c00000{bottom:508.413333pt;}
.y10f_c00000{bottom:508.573333pt;}
.ycf2_c00000{bottom:508.733333pt;}
.y3cd_c00000{bottom:508.893333pt;}
.y11d0_c00000{bottom:509.213333pt;}
.yae3_c00000{bottom:509.373333pt;}
.y5a1_c00000{bottom:509.853333pt;}
.y9b_c00000{bottom:510.013333pt;}
.y71a_c00000{bottom:510.333333pt;}
.yab8_c00000{bottom:510.653333pt;}
.y82f_c00000{bottom:510.813333pt;}
.y1101_c00000{bottom:510.973333pt;}
.y113c_c00000{bottom:511.293333pt;}
.y275_c00000{bottom:511.453333pt;}
.y11_c00000{bottom:511.531520pt;}
.yddc_c00000{bottom:511.613333pt;}
.y13c3_c00000{bottom:511.773333pt;}
.y76c_c00000{bottom:511.933333pt;}
.y1033_c00000{bottom:512.093333pt;}
.y1f4_c00000{bottom:512.253333pt;}
.y519_c00000{bottom:512.413333pt;}
.y33a_c00000{bottom:512.573333pt;}
.y869_c00000{bottom:512.733333pt;}
.yb59_c00000{bottom:512.893333pt;}
.yc29_c00000{bottom:513.053333pt;}
.y8a4_c00000{bottom:513.213333pt;}
.yc96_c00000{bottom:513.373333pt;}
.y294_c00000{bottom:513.533333pt;}
.y301_c00000{bottom:513.693333pt;}
.y6a6_c00000{bottom:513.853333pt;}
.y5cb_c00000{bottom:514.013333pt;}
.y676_c00000{bottom:514.493333pt;}
.y9a3_c00000{bottom:514.653333pt;}
.yb00_c00000{bottom:514.813333pt;}
.y37e_c00000{bottom:514.973333pt;}
.yc68_c00000{bottom:515.293333pt;}
.y99b_c00000{bottom:515.453333pt;}
.y983_c00000{bottom:515.613333pt;}
.y75_c00000{bottom:515.773333pt;}
.yd28_c00000{bottom:515.933333pt;}
.y47e_c00000{bottom:516.093333pt;}
.y88b_c00000{bottom:516.253333pt;}
.y2b3_c00000{bottom:516.413333pt;}
.y3fe_c00000{bottom:516.573333pt;}
.yc50_c00000{bottom:516.733333pt;}
.y614_c00000{bottom:516.893333pt;}
.y842_c00000{bottom:517.053333pt;}
.y1251_c00000{bottom:517.213333pt;}
.ybe9_c00000{bottom:517.373333pt;}
.ya89_c00000{bottom:517.693333pt;}
.y1258_c00000{bottom:517.853333pt;}
.ya78_c00000{bottom:518.013333pt;}
.y7b7_c00000{bottom:518.173333pt;}
.y2cb_c00000{bottom:518.333333pt;}
.y73a_c00000{bottom:518.493333pt;}
.y549_c00000{bottom:518.653333pt;}
.ydcd_c00000{bottom:518.813333pt;}
.yebd_c00000{bottom:518.973333pt;}
.y6df_c00000{bottom:519.453333pt;}
.y1074_c00000{bottom:519.613333pt;}
.y6c3_c00000{bottom:519.933333pt;}
.ye93_c00000{bottom:520.093333pt;}
.yd87_c00000{bottom:520.573333pt;}
.y35d_c00000{bottom:520.733333pt;}
.ybda_c00000{bottom:520.893333pt;}
.y8c3_c00000{bottom:521.053333pt;}
.y137_c00000{bottom:521.213333pt;}
.y81d_c00000{bottom:521.533333pt;}
.y52d_c00000{bottom:521.693333pt;}
.ya99_c00000{bottom:522.173333pt;}
.ycad_c00000{bottom:522.493333pt;}
.y1c3_c00000{bottom:522.653333pt;}
.yeb8_c00000{bottom:522.813333pt;}
.yff4_c00000{bottom:522.973333pt;}
.y3b5_c00000{bottom:523.133333pt;}
.y8fe_c00000{bottom:523.293333pt;}
.y625_c00000{bottom:523.453333pt;}
.y949_c00000{bottom:523.613333pt;}
.y125d_c00000{bottom:523.933333pt;}
.y413_c00000{bottom:524.093333pt;}
.y42d_c00000{bottom:524.253333pt;}
.ye4e_c00000{bottom:524.413333pt;}
.ybca_c00000{bottom:524.573333pt;}
.y790_c00000{bottom:524.733333pt;}
.y394_c00000{bottom:524.893333pt;}
.y5e0_c00000{bottom:525.053333pt;}
.y6c4_c00000{bottom:525.213333pt;}
.y1f2_c00000{bottom:525.373333pt;}
.y17c_c00000{bottom:525.533333pt;}
.ycb_c00000{bottom:525.693333pt;}
.ya28_c00000{bottom:525.853333pt;}
.y65d_c00000{bottom:526.013333pt;}
.y9ba_c00000{bottom:526.173333pt;}
.y10be_c00000{bottom:526.333333pt;}
.y90e_c00000{bottom:526.493333pt;}
.y1059_c00000{bottom:526.653333pt;}
.y4d0_c00000{bottom:526.813333pt;}
.y45b_c00000{bottom:526.973333pt;}
.y4ee_c00000{bottom:527.133333pt;}
.y1178_c00000{bottom:527.453333pt;}
.y12a2_c00000{bottom:527.773333pt;}
.yb7d_c00000{bottom:527.933333pt;}
.y10e_c00000{bottom:528.413333pt;}
.y3cc_c00000{bottom:528.573333pt;}
.y1154_c00000{bottom:528.733333pt;}
.y9b5_c00000{bottom:528.893333pt;}
.yb90_c00000{bottom:529.053333pt;}
.y800_c00000{bottom:529.213333pt;}
.y9a_c00000{bottom:529.373333pt;}
.ybc1_c00000{bottom:529.533333pt;}
.y5a0_c00000{bottom:529.693333pt;}
.y2e8_c00000{bottom:529.853333pt;}
.y719_c00000{bottom:530.173333pt;}
.ye8_c00000{bottom:530.493333pt;}
.yf0d_c00000{bottom:530.813333pt;}
.y274_c00000{bottom:531.293333pt;}
.y47d_c00000{bottom:531.453333pt;}
.yddb_c00000{bottom:531.613333pt;}
.y1411_c00000{bottom:531.773333pt;}
.y82e_c00000{bottom:531.933333pt;}
.y110b_c00000{bottom:532.093333pt;}
.y518_c00000{bottom:532.253333pt;}
.y5ca_c00000{bottom:532.413333pt;}
.y783_c00000{bottom:532.573333pt;}
.y74_c00000{bottom:532.733333pt;}
.yc28_c00000{bottom:532.893333pt;}
.y76b_c00000{bottom:533.053333pt;}
.yc95_c00000{bottom:533.213333pt;}
.y293_c00000{bottom:533.373333pt;}
.y102d_c00000{bottom:533.533333pt;}
.y45_c00000{bottom:533.693333pt;}
.y868_c00000{bottom:533.853333pt;}
.y95e_c00000{bottom:534.013333pt;}
.y5ae_c00000{bottom:534.173333pt;}
.y8a3_c00000{bottom:534.333333pt;}
.y675_c00000{bottom:534.493333pt;}
.y1307_c00000{bottom:534.653333pt;}
.y37d_c00000{bottom:534.813333pt;}
.y134d_c00000{bottom:534.973333pt;}
.yaaf_c00000{bottom:535.133333pt;}
.y613_c00000{bottom:535.293333pt;}
.y9a2_c00000{bottom:535.613333pt;}
.yc10_c00000{bottom:535.773333pt;}
.yaff_c00000{bottom:536.093333pt;}
.y2b1_c00000{bottom:536.253333pt;}
.y3fd_c00000{bottom:536.413333pt;}
.y9fe_c00000{bottom:536.573333pt;}
.y982_c00000{bottom:536.733333pt;}
.y139a_c00000{bottom:536.893333pt;}
.y12a6_c00000{bottom:537.053333pt;}
.yc3b_c00000{bottom:537.213333pt;}
.y88a_c00000{bottom:537.373333pt;}
.ya43_c00000{bottom:537.533333pt;}
.y2ca_c00000{bottom:538.013333pt;}
.y4b5_c00000{bottom:538.173333pt;}
.y1250_c00000{bottom:538.333333pt;}
.yd92_c00000{bottom:538.493333pt;}
.ybe8_c00000{bottom:538.653333pt;}
.ya88_c00000{bottom:538.973333pt;}
.ya77_c00000{bottom:539.133333pt;}
.y31_c00000{bottom:539.293333pt;}
.y7b6_c00000{bottom:539.453333pt;}
.y6c2_c00000{bottom:539.613333pt;}
.y7ef_c00000{bottom:539.773333pt;}
.yc11_c00000{bottom:539.933333pt;}
.y253_c00000{bottom:540.253333pt;}
.y1056_c00000{bottom:540.413333pt;}
.y35c_c00000{bottom:540.573333pt;}
.yd99_c00000{bottom:540.733333pt;}
.y1c2_c00000{bottom:541.053333pt;}
.y136_c00000{bottom:541.213333pt;}
.yec7_c00000{bottom:541.373333pt;}
.y2b2_c00000{bottom:541.533333pt;}
.y1a6_c00000{bottom:541.693333pt;}
.y11b4_c00000{bottom:541.853333pt;}
.ya07_c00000{bottom:542.013333pt;}
.y8c2_c00000{bottom:542.173333pt;}
.ybab_c00000{bottom:542.333333pt;}
.y105b_c00000{bottom:542.493333pt;}
.yeb7_c00000{bottom:542.653333pt;}
.y81c_c00000{bottom:542.813333pt;}
.ye70_c00000{bottom:542.973333pt;}
.ya20_c00000{bottom:543.133333pt;}
.y624_c00000{bottom:543.293333pt;}
.y643_c00000{bottom:543.453333pt;}
.y1f1_c00000{bottom:543.773333pt;}
.y209_c00000{bottom:543.933333pt;}
.y42c_c00000{bottom:544.093333pt;}
.y3b4_c00000{bottom:544.253333pt;}
.y8fd_c00000{bottom:544.413333pt;}
.y951_c00000{bottom:544.573333pt;}
.y948_c00000{bottom:544.733333pt;}
.y125c_c00000{bottom:545.213333pt;}
.ycdc_c00000{bottom:545.373333pt;}
.y17b_c00000{bottom:545.533333pt;}
.y556_c00000{bottom:545.693333pt;}
.yc85_c00000{bottom:545.853333pt;}
.y65c_c00000{bottom:546.013333pt;}
.y569_c00000{bottom:546.173333pt;}
.yf89_c00000{bottom:546.333333pt;}
.y109e_c00000{bottom:546.493333pt;}
.y6ef_c00000{bottom:546.813333pt;}
.y4ed_c00000{bottom:546.973333pt;}
.y11b5_c00000{bottom:547.133333pt;}
.y9b9_c00000{bottom:547.293333pt;}
.yb97_c00000{bottom:547.453333pt;}
.y90d_c00000{bottom:547.613333pt;}
.y11fc_c00000{bottom:547.773333pt;}
.y4cf_c00000{bottom:547.933333pt;}
.y10d_c00000{bottom:548.253333pt;}
.y3cb_c00000{bottom:548.413333pt;}
.y20a_c00000{bottom:548.573333pt;}
.y99_c00000{bottom:548.733333pt;}
.y11cf_c00000{bottom:548.893333pt;}
.yb7c_c00000{bottom:549.053333pt;}
.ybdf_c00000{bottom:549.213333pt;}
.y73_c00000{bottom:549.533333pt;}
.ydaa_c00000{bottom:549.693333pt;}
.y2e7_c00000{bottom:549.853333pt;}
.y718_c00000{bottom:550.013333pt;}
.ye7_c00000{bottom:550.173333pt;}
.y7ff_c00000{bottom:550.333333pt;}
.yf0c_c00000{bottom:550.493333pt;}
.y6a5_c00000{bottom:550.653333pt;}
.y548_c00000{bottom:550.813333pt;}
.yf9d_c00000{bottom:550.973333pt;}
.y273_c00000{bottom:551.293333pt;}
.ydda_c00000{bottom:551.453333pt;}
.y324_c00000{bottom:551.613333pt;}
.y9e2_c00000{bottom:551.773333pt;}
.y517_c00000{bottom:552.093333pt;}
.y9e1_c00000{bottom:552.253333pt;}
.y938_c00000{bottom:552.573333pt;}
.y1186_c00000{bottom:552.586667pt;}
.yc27_c00000{bottom:552.733333pt;}
.y1095_c00000{bottom:552.893333pt;}
.y82d_c00000{bottom:553.053333pt;}
.y300_c00000{bottom:553.213333pt;}
.yeae_c00000{bottom:553.373333pt;}
.yd0a_c00000{bottom:553.533333pt;}
.y612_c00000{bottom:553.693333pt;}
.y782_c00000{bottom:553.853333pt;}
.yb8_c00000{bottom:554.173333pt;}
.y674_c00000{bottom:554.493333pt;}
.y495_c00000{bottom:554.653333pt;}
.y37c_c00000{bottom:554.813333pt;}
.y339_c00000{bottom:554.973333pt;}
.ye05_c00000{bottom:555.133333pt;}
.y95d_c00000{bottom:555.293333pt;}
.y8a2_c00000{bottom:555.453333pt;}
.y393_c00000{bottom:555.613333pt;}
.y12ec_c00000{bottom:555.773333pt;}
.yb2f_c00000{bottom:555.933333pt;}
.y2b0_c00000{bottom:556.093333pt;}
.y3fc_c00000{bottom:556.253333pt;}
.yc4f_c00000{bottom:556.413333pt;}
.ycde_c00000{bottom:556.573333pt;}
.y9a1_c00000{bottom:556.733333pt;}
.yc3a_c00000{bottom:557.053333pt;}
.yafe_c00000{bottom:557.213333pt;}
.y45a_c00000{bottom:557.373333pt;}
.y2c9_c00000{bottom:557.853333pt;}
.y4b4_c00000{bottom:558.013333pt;}
.y889_c00000{bottom:558.493333pt;}
.y10_c00000{bottom:558.727680pt;}
.ya42_c00000{bottom:558.813333pt;}
.y35b_c00000{bottom:558.973333pt;}
.y6de_c00000{bottom:559.133333pt;}
.y79b_c00000{bottom:559.293333pt;}
.y6c1_c00000{bottom:559.453333pt;}
.ydfe_c00000{bottom:559.613333pt;}
.ye92_c00000{bottom:559.773333pt;}
.ybe7_c00000{bottom:559.933333pt;}
.ya76_c00000{bottom:560.093333pt;}
.ya27_c00000{bottom:560.253333pt;}
.y7b5_c00000{bottom:560.573333pt;}
.y9d2_c00000{bottom:560.733333pt;}
.y7ee_c00000{bottom:560.893333pt;}
.y135_c00000{bottom:561.053333pt;}
.y1242_c00000{bottom:561.213333pt;}
.ye3f_c00000{bottom:561.373333pt;}
.y11b3_c00000{bottom:561.533333pt;}
.y1281_c00000{bottom:561.693333pt;}
.ycdf_c00000{bottom:561.853333pt;}
.y1177_c00000{bottom:562.013333pt;}
.y1f0_c00000{bottom:562.173333pt;}
.y23f_c00000{bottom:562.333333pt;}
.yeb6_c00000{bottom:562.493333pt;}
.yff3_c00000{bottom:562.653333pt;}
.y5c9_c00000{bottom:562.813333pt;}
.y252_c00000{bottom:563.133333pt;}
.y623_c00000{bottom:563.293333pt;}
.y642_c00000{bottom:563.453333pt;}
.ye60_c00000{bottom:563.613333pt;}
.y412_c00000{bottom:563.773333pt;}
.y81b_c00000{bottom:563.933333pt;}
.y292_c00000{bottom:564.093333pt;}
.yd46_c00000{bottom:564.253333pt;}
.ya98_c00000{bottom:564.413333pt;}
.y68f_c00000{bottom:564.893333pt;}
.y111a_c00000{bottom:565.053333pt;}
.yde4_c00000{bottom:565.213333pt;}
.y17a_c00000{bottom:565.373333pt;}
.y3b3_c00000{bottom:565.533333pt;}
.y9f5_c00000{bottom:565.693333pt;}
.y568_c00000{bottom:565.853333pt;}
.y947_c00000{bottom:566.013333pt;}
.yf88_c00000{bottom:566.173333pt;}
.y72_c00000{bottom:566.333333pt;}
.y109d_c00000{bottom:566.493333pt;}
.y6ee_c00000{bottom:566.653333pt;}
.y4ec_c00000{bottom:566.813333pt;}
.y78f_c00000{bottom:567.133333pt;}
.y1312_c00000{bottom:567.293333pt;}
.y44_c00000{bottom:567.453333pt;}
.yd38_c00000{bottom:567.773333pt;}
.y12cc_c00000{bottom:567.933333pt;}
.y98_c00000{bottom:568.093333pt;}
.y3c9_c00000{bottom:568.253333pt;}
.y9b8_c00000{bottom:568.413333pt;}
.y116f_c00000{bottom:568.573333pt;}
.y2e6_c00000{bottom:568.733333pt;}
.y47c_c00000{bottom:568.893333pt;}
.y4ce_c00000{bottom:569.053333pt;}
.y59f_c00000{bottom:569.373333pt;}
.yda9_c00000{bottom:569.533333pt;}
.y717_c00000{bottom:569.853333pt;}
.ye6_c00000{bottom:570.013333pt;}
.yadb_c00000{bottom:570.173333pt;}
.yf0b_c00000{bottom:570.493333pt;}
.y1345_c00000{bottom:570.653333pt;}
.y110a_c00000{bottom:570.813333pt;}
.y1153_c00000{bottom:570.973333pt;}
.y272_c00000{bottom:571.133333pt;}
.y323_c00000{bottom:571.293333pt;}
.y7fe_c00000{bottom:571.453333pt;}
.yd8f_c00000{bottom:571.773333pt;}
.y516_c00000{bottom:571.933333pt;}
.y611_c00000{bottom:572.093333pt;}
.y9b0_c00000{bottom:572.253333pt;}
.yc26_c00000{bottom:572.573333pt;}
.y119f_c00000{bottom:572.733333pt;}
.yae2_c00000{bottom:572.893333pt;}
.y2ff_c00000{bottom:573.053333pt;}
.yead_c00000{bottom:573.213333pt;}
.yd09_c00000{bottom:573.373333pt;}
.y3ca_c00000{bottom:573.533333pt;}
.y123a_c00000{bottom:573.693333pt;}
.y937_c00000{bottom:573.853333pt;}
.y8dc_c00000{bottom:574.173333pt;}
.y82c_c00000{bottom:574.333333pt;}
.y37b_c00000{bottom:574.493333pt;}
.y42b_c00000{bottom:574.653333pt;}
.y500_c00000{bottom:574.813333pt;}
.y781_c00000{bottom:574.973333pt;}
.yfa7_c00000{bottom:575.293333pt;}
.yd27_c00000{bottom:575.453333pt;}
.y2af_c00000{bottom:575.933333pt;}
.y338_c00000{bottom:576.093333pt;}
.y867_c00000{bottom:576.253333pt;}
.y95c_c00000{bottom:576.413333pt;}
.y8a1_c00000{bottom:576.573333pt;}
.ya6b_c00000{bottom:576.733333pt;}
.y2c8_c00000{bottom:576.893333pt;}
.y459_c00000{bottom:577.053333pt;}
.yb2e_c00000{bottom:577.213333pt;}
.y128f_c00000{bottom:577.373333pt;}
.y123d_c00000{bottom:577.533333pt;}
.y1167_c00000{bottom:577.693333pt;}
.y707_c00000{bottom:577.853333pt;}
.y4b3_c00000{bottom:578.013333pt;}
.y115f_c00000{bottom:578.173333pt;}
.y1a4_c00000{bottom:578.333333pt;}
.y11fb_c00000{bottom:578.493333pt;}
.y35a_c00000{bottom:578.653333pt;}
.y6dd_c00000{bottom:578.973333pt;}
.y1073_c00000{bottom:579.133333pt;}
.y6c0_c00000{bottom:579.293333pt;}
.yfd_c00000{bottom:579.453333pt;}
.ye91_c00000{bottom:579.613333pt;}
.y494_c00000{bottom:579.773333pt;}
.ya41_c00000{bottom:579.933333pt;}
.y132d_c00000{bottom:580.093333pt;}
.y79a_c00000{bottom:580.413333pt;}
.y1ef_c00000{bottom:580.573333pt;}
.y221_c00000{bottom:580.733333pt;}
.ybe6_c00000{bottom:580.893333pt;}
.ya87_c00000{bottom:581.213333pt;}
.yf9c_c00000{bottom:581.533333pt;}
.y7b4_c00000{bottom:581.693333pt;}
.ye6f_c00000{bottom:581.853333pt;}
.y7ed_c00000{bottom:582.173333pt;}
.y5c8_c00000{bottom:582.493333pt;}
.y1080_c00000{bottom:582.653333pt;}
.y10eb_c00000{bottom:582.973333pt;}
.yef1_c00000{bottom:583.133333pt;}
.y71_c00000{bottom:583.293333pt;}
.y641_c00000{bottom:583.453333pt;}
.y1a5_c00000{bottom:583.613333pt;}
.y411_c00000{bottom:583.773333pt;}
.y291_c00000{bottom:583.933333pt;}
.ya18_c00000{bottom:584.093333pt;}
.yd57_c00000{bottom:584.253333pt;}
.y8c1_c00000{bottom:584.413333pt;}
.yb0c_c00000{bottom:584.573333pt;}
.y68e_c00000{bottom:584.733333pt;}
.y65a_c00000{bottom:585.053333pt;}
.y3e0_c00000{bottom:585.213333pt;}
.y24f_c00000{bottom:585.373333pt;}
.ya97_c00000{bottom:585.533333pt;}
.y567_c00000{bottom:585.693333pt;}
.y10b6_c00000{bottom:585.853333pt;}
.y222_c00000{bottom:586.013333pt;}
.y392_c00000{bottom:586.173333pt;}
.ybd9_c00000{bottom:586.333333pt;}
.y6ed_c00000{bottom:586.493333pt;}
.yca_c00000{bottom:586.653333pt;}
.y588_c00000{bottom:586.813333pt;}
.y946_c00000{bottom:587.133333pt;}
.y2e5_c00000{bottom:587.453333pt;}
.y97_c00000{bottom:587.613333pt;}
.yd37_c00000{bottom:587.773333pt;}
.y156_c00000{bottom:587.933333pt;}
.ybc9_c00000{bottom:588.093333pt;}
.y78e_c00000{bottom:588.253333pt;}
.y11bc_c00000{bottom:588.413333pt;}
.y13da_c00000{bottom:588.573333pt;}
.y76a_c00000{bottom:588.733333pt;}
.y1344_c00000{bottom:589.053333pt;}
.y59e_c00000{bottom:589.213333pt;}
.yb7_c00000{bottom:589.373333pt;}
.y1094_c00000{bottom:589.533333pt;}
.y65b_c00000{bottom:589.693333pt;}
.y716_c00000{bottom:589.853333pt;}
.y8db_c00000{bottom:590.013333pt;}
.y271_c00000{bottom:590.173333pt;}
.yf0a_c00000{bottom:590.333333pt;}
.y610_c00000{bottom:590.493333pt;}
.y84f_c00000{bottom:590.813333pt;}
.y13c2_c00000{bottom:591.133333pt;}
.ya26_c00000{bottom:591.293333pt;}
.y1359_c00000{bottom:591.453333pt;}
.y134_c00000{bottom:591.613333pt;}
.ye31_c00000{bottom:591.773333pt;}
.y515_c00000{bottom:591.933333pt;}
.y589_c00000{bottom:592.093333pt;}
.y981_c00000{bottom:592.253333pt;}
.yc25_c00000{bottom:592.413333pt;}
.y7fd_c00000{bottom:592.573333pt;}
.y1141_c00000{bottom:592.733333pt;}
.yd78_c00000{bottom:592.893333pt;}
.ybc0_c00000{bottom:593.053333pt;}
.yd08_c00000{bottom:593.213333pt;}
.yeca_c00000{bottom:593.373333pt;}
.yae1_c00000{bottom:593.853333pt;}
.yb4a_c00000{bottom:594.013333pt;}
.y101a_c00000{bottom:594.173333pt;}
.y42a_c00000{bottom:594.333333pt;}
.y43f_c00000{bottom:594.493333pt;}
.ya75_c00000{bottom:594.653333pt;}
.ye04_c00000{bottom:594.813333pt;}
.y936_c00000{bottom:594.973333pt;}
.ycbe_c00000{bottom:595.133333pt;}
.yaa6_c00000{bottom:595.293333pt;}
.y82b_c00000{bottom:595.453333pt;}
.y1100_c00000{bottom:595.613333pt;}
.y2ae_c00000{bottom:595.773333pt;}
.y179_c00000{bottom:595.933333pt;}
.y9d9_c00000{bottom:596.253333pt;}
.ydb8_c00000{bottom:596.413333pt;}
.y1c1_c00000{bottom:596.733333pt;}
.y1a3_c00000{bottom:596.893333pt;}
.y458_c00000{bottom:597.053333pt;}
.y337_c00000{bottom:597.213333pt;}
.y866_c00000{bottom:597.373333pt;}
.y95b_c00000{bottom:597.533333pt;}
.y739_c00000{bottom:597.693333pt;}
.y4b2_c00000{bottom:597.853333pt;}
.yaf1_c00000{bottom:598.013333pt;}
.ydcc_c00000{bottom:598.173333pt;}
.yb2d_c00000{bottom:598.333333pt;}
.y85c_c00000{bottom:598.493333pt;}
.yd8e_c00000{bottom:598.653333pt;}
.y10c_c00000{bottom:598.813333pt;}
.y1ee_c00000{bottom:598.973333pt;}
.y220_c00000{bottom:599.133333pt;}
.y11dc_c00000{bottom:599.293333pt;}
.yafd_c00000{bottom:599.453333pt;}
.y124f_c00000{bottom:599.773333pt;}
.y70_c00000{bottom:600.093333pt;}
.yd98_c00000{bottom:600.413333pt;}
.ye5_c00000{bottom:600.733333pt;}
.y888_c00000{bottom:600.893333pt;}
.ya40_c00000{bottom:601.053333pt;}
.y43_c00000{bottom:601.213333pt;}
.y11b2_c00000{bottom:601.373333pt;}
.y799_c00000{bottom:601.533333pt;}
.ye6e_c00000{bottom:601.693333pt;}
.y5ad_c00000{bottom:601.853333pt;}
.ybe5_c00000{bottom:602.013333pt;}
.y322_c00000{bottom:602.173333pt;}
.y5c7_c00000{bottom:602.333333pt;}
.ya86_c00000{bottom:602.493333pt;}
.yb8f_c00000{bottom:602.653333pt;}
.y7b3_c00000{bottom:602.813333pt;}
.y9b7_c00000{bottom:602.973333pt;}
.y622_c00000{bottom:603.293333pt;}
.y640_c00000{bottom:603.453333pt;}
.y410_c00000{bottom:603.613333pt;}
.y290_c00000{bottom:603.773333pt;}
.ye28_c00000{bottom:603.933333pt;}
.yd45_c00000{bottom:604.093333pt;}
.y233_c00000{bottom:604.253333pt;}
.yf_c00000{bottom:604.487680pt;}
.y68d_c00000{bottom:604.733333pt;}
.y659_c00000{bottom:604.893333pt;}
.y3df_c00000{bottom:605.053333pt;}
.y379_c00000{bottom:605.213333pt;}
.yc84_c00000{bottom:605.373333pt;}
.y566_c00000{bottom:605.533333pt;}
.y8c0_c00000{bottom:605.693333pt;}
.y6a4_c00000{bottom:605.853333pt;}
.y109c_c00000{bottom:606.013333pt;}
.y81a_c00000{bottom:606.173333pt;}
.yc9_c00000{bottom:606.333333pt;}
.y4eb_c00000{bottom:606.493333pt;}
.y6fb_c00000{bottom:606.653333pt;}
.y3fb_c00000{bottom:606.813333pt;}
.y96_c00000{bottom:606.973333pt;}
.y3b2_c00000{bottom:607.773333pt;}
.y155_c00000{bottom:607.933333pt;}
.y138a_c00000{bottom:608.093333pt;}
.y945_c00000{bottom:608.253333pt;}
.yf9b_c00000{bottom:608.413333pt;}
.y706_c00000{bottom:608.573333pt;}
.y60f_c00000{bottom:608.893333pt;}
.y2c7_c00000{bottom:609.053333pt;}
.yda8_c00000{bottom:609.213333pt;}
.y359_c00000{bottom:609.373333pt;}
.y715_c00000{bottom:609.533333pt;}
.y769_c00000{bottom:609.853333pt;}
.y13e3_c00000{bottom:610.173333pt;}
.ye90_c00000{bottom:610.333333pt;}
.y37a_c00000{bottom:610.493333pt;}
.y13f1_c00000{bottom:610.653333pt;}
.y1108_c00000{bottom:610.973333pt;}
.y8da_c00000{bottom:611.133333pt;}
.y133_c00000{bottom:611.293333pt;}
.y4cd_c00000{bottom:611.453333pt;}
.y5dc_c00000{bottom:611.613333pt;}
.y514_c00000{bottom:611.773333pt;}
.y84e_c00000{bottom:611.933333pt;}
.yc24_c00000{bottom:612.253333pt;}
.yb7b_c00000{bottom:612.573333pt;}
.yeac_c00000{bottom:612.733333pt;}
.yd07_c00000{bottom:613.053333pt;}
.y1109_c00000{bottom:613.213333pt;}
.y980_c00000{bottom:613.533333pt;}
.yaf8_c00000{bottom:613.693333pt;}
.y7fc_c00000{bottom:613.853333pt;}
.y429_c00000{bottom:614.173333pt;}
.y43e_c00000{bottom:614.333333pt;}
.y673_c00000{bottom:614.493333pt;}
.ye03_c00000{bottom:614.653333pt;}
.ycbd_c00000{bottom:614.813333pt;}
.y1a2_c00000{bottom:615.133333pt;}
.y178_c00000{bottom:615.773333pt;}
.y1395_c00000{bottom:615.933333pt;}
.y935_c00000{bottom:616.093333pt;}
.ye3e_c00000{bottom:616.253333pt;}
.y9a0_c00000{bottom:616.413333pt;}
.yc39_c00000{bottom:616.573333pt;}
.y391_c00000{bottom:616.733333pt;}
.y3c8_c00000{bottom:616.893333pt;}
.y6f_c00000{bottom:617.053333pt;}
.y1ed_c00000{bottom:617.373333pt;}
.y21f_c00000{bottom:617.533333pt;}
.y4b1_c00000{bottom:617.693333pt;}
.y12e4_c00000{bottom:617.853333pt;}
.ydcb_c00000{bottom:618.013333pt;}
.yd36_c00000{bottom:618.173333pt;}
.y336_c00000{bottom:618.333333pt;}
.y10b_c00000{bottom:618.493333pt;}
.y95a_c00000{bottom:618.653333pt;}
.y6dc_c00000{bottom:618.813333pt;}
.yb6_c00000{bottom:618.973333pt;}
.y99f_c00000{bottom:619.133333pt;}
.y1135_c00000{bottom:619.293333pt;}
.yb2c_c00000{bottom:619.453333pt;}
.y270_c00000{bottom:619.613333pt;}
.ye4d_c00000{bottom:619.933333pt;}
.yd97_c00000{bottom:620.253333pt;}
.yf09_c00000{bottom:620.893333pt;}
.y1090_c00000{bottom:621.053333pt;}
.y8fc_c00000{bottom:621.213333pt;}
.ydb7_c00000{bottom:621.373333pt;}
.yd16_c00000{bottom:621.533333pt;}
.y10ea_c00000{bottom:621.693333pt;}
.ye_c00000{bottom:621.763840pt;}
.y321_c00000{bottom:621.853333pt;}
.y887_c00000{bottom:622.013333pt;}
.y5c6_c00000{bottom:622.173333pt;}
.yff2_c00000{bottom:622.333333pt;}
.y10d3_c00000{bottom:622.493333pt;}
.y798_c00000{bottom:622.813333pt;}
.ybe4_c00000{bottom:623.133333pt;}
.ye5f_c00000{bottom:623.293333pt;}
.y2fe_c00000{bottom:623.453333pt;}
.y28f_c00000{bottom:623.613333pt;}
.ye27_c00000{bottom:623.773333pt;}
.yd44_c00000{bottom:623.933333pt;}
.y7b2_c00000{bottom:624.093333pt;}
.y6a3_c00000{bottom:624.253333pt;}
.y7ec_c00000{bottom:624.413333pt;}
.y2e4_c00000{bottom:624.733333pt;}
.y378_c00000{bottom:624.893333pt;}
.yc83_c00000{bottom:625.213333pt;}
.y565_c00000{bottom:625.373333pt;}
.yf87_c00000{bottom:625.693333pt;}
.y109b_c00000{bottom:625.853333pt;}
.y6ec_c00000{bottom:626.173333pt;}
.y95_c00000{bottom:626.333333pt;}
.y3fa_c00000{bottom:626.493333pt;}
.y12fc_c00000{bottom:626.653333pt;}
.y8bf_c00000{bottom:626.813333pt;}
.y1172_c00000{bottom:626.973333pt;}
.yfc7_c00000{bottom:627.133333pt;}
.y60e_c00000{bottom:627.293333pt;}
.y819_c00000{bottom:627.453333pt;}
.y154_c00000{bottom:627.773333pt;}
.ya96_c00000{bottom:628.093333pt;}
.y705_c00000{bottom:628.253333pt;}
.y13d9_c00000{bottom:628.413333pt;}
.y1358_c00000{bottom:628.573333pt;}
.y3b1_c00000{bottom:628.893333pt;}
.ya74_c00000{bottom:629.053333pt;}
.y714_c00000{bottom:629.373333pt;}
.y82a_c00000{bottom:629.853333pt;}
.yf7d_c00000{bottom:630.173333pt;}
.y119e_c00000{bottom:630.333333pt;}
.y1195_c00000{bottom:630.493333pt;}
.y780_c00000{bottom:630.653333pt;}
.y13c1_c00000{bottom:630.813333pt;}
.y768_c00000{bottom:630.973333pt;}
.y132_c00000{bottom:631.133333pt;}
.ye4_c00000{bottom:631.293333pt;}
.y12cb_c00000{bottom:631.453333pt;}
.y513_c00000{bottom:631.613333pt;}
.yc23_c00000{bottom:632.093333pt;}
.y8d9_c00000{bottom:632.253333pt;}
.yd77_c00000{bottom:632.413333pt;}
.y1032_c00000{bottom:632.733333pt;}
.y85b_c00000{bottom:632.893333pt;}
.y84d_c00000{bottom:633.053333pt;}
.y10e2_c00000{bottom:633.213333pt;}
.y1a1_c00000{bottom:633.693333pt;}
.y6e_c00000{bottom:633.853333pt;}
.y428_c00000{bottom:634.013333pt;}
.y4ff_c00000{bottom:634.173333pt;}
.y5ab_c00000{bottom:634.333333pt;}
.y672_c00000{bottom:634.493333pt;}
.y97f_c00000{bottom:634.653333pt;}
.y9c9_c00000{bottom:634.813333pt;}
.y42_c00000{bottom:634.973333pt;}
.ybbf_c00000{bottom:635.293333pt;}
.y177_c00000{bottom:635.613333pt;}
.y1ec_c00000{bottom:635.773333pt;}
.y21e_c00000{bottom:635.933333pt;}
.ye3d_c00000{bottom:636.093333pt;}
.yae0_c00000{bottom:636.253333pt;}
.yb49_c00000{bottom:636.413333pt;}
.y11c9_c00000{bottom:636.573333pt;}
.y1257_c00000{bottom:636.893333pt;}
.y934_c00000{bottom:637.213333pt;}
.y738_c00000{bottom:637.373333pt;}
.y4b0_c00000{bottom:637.533333pt;}
.y124e_c00000{bottom:637.693333pt;}
.yd35_c00000{bottom:637.853333pt;}
.y10ff_c00000{bottom:638.013333pt;}
.y10a_c00000{bottom:638.333333pt;}
.y1280_c00000{bottom:638.493333pt;}
.y6db_c00000{bottom:638.653333pt;}
.y6bf_c00000{bottom:638.813333pt;}
.y5ac_c00000{bottom:638.973333pt;}
.yd_c00000{bottom:639.040000pt;}
.y26f_c00000{bottom:639.293333pt;}
.y335_c00000{bottom:639.453333pt;}
.yafc_c00000{bottom:639.613333pt;}
.y959_c00000{bottom:639.773333pt;}
.y358_c00000{bottom:639.933333pt;}
.y8ec_c00000{bottom:640.093333pt;}
.ya02_c00000{bottom:640.253333pt;}
.yfc_c00000{bottom:640.413333pt;}
.yb2b_c00000{bottom:640.573333pt;}
.y5db_c00000{bottom:640.733333pt;}
.y11b1_c00000{bottom:640.893333pt;}
.y22b_c00000{bottom:641.053333pt;}
.y5c5_c00000{bottom:641.213333pt;}
.y1166_c00000{bottom:641.373333pt;}
.y1224_c00000{bottom:641.533333pt;}
.y320_c00000{bottom:641.693333pt;}
.y4cc_c00000{bottom:641.853333pt;}
.y1145_c00000{bottom:642.013333pt;}
.y107f_c00000{bottom:642.173333pt;}
.y8fb_c00000{bottom:642.493333pt;}
.y6a2_c00000{bottom:642.653333pt;}
.y944_c00000{bottom:642.813333pt;}
.y886_c00000{bottom:643.133333pt;}
.y2fd_c00000{bottom:643.293333pt;}
.y28e_c00000{bottom:643.453333pt;}
.ybc8_c00000{bottom:643.613333pt;}
.yd43_c00000{bottom:643.773333pt;}
.y47b_c00000{bottom:643.933333pt;}
.y1163_c00000{bottom:644.253333pt;}
.ybe3_c00000{bottom:644.413333pt;}
.ya85_c00000{bottom:644.573333pt;}
.y377_c00000{bottom:644.733333pt;}
.y2c6_c00000{bottom:644.893333pt;}
.yba3_c00000{bottom:645.053333pt;}
.y564_c00000{bottom:645.213333pt;}
.y9d1_c00000{bottom:645.373333pt;}
.y7eb_c00000{bottom:645.533333pt;}
.y94_c00000{bottom:645.693333pt;}
.y126a_c00000{bottom:645.853333pt;}
.y4ea_c00000{bottom:646.173333pt;}
.y3f9_c00000{bottom:646.333333pt;}
.y1039_c00000{bottom:646.493333pt;}
.y1176_c00000{bottom:646.653333pt;}
.y390_c00000{bottom:647.133333pt;}
.y457_c00000{bottom:647.453333pt;}
.y12eb_c00000{bottom:647.773333pt;}
.yb5_c00000{bottom:647.933333pt;}
.y704_c00000{bottom:648.093333pt;}
.y1318_c00000{bottom:648.253333pt;}
.y59d_c00000{bottom:648.733333pt;}
.y757_c00000{bottom:648.893333pt;}
.y713_c00000{bottom:649.213333pt;}
.y128a_c00000{bottom:649.386667pt;}
.y10d2_c00000{bottom:649.533333pt;}
.y3b0_c00000{bottom:650.013333pt;}
.y104d_c00000{bottom:650.173333pt;}
.y132c_c00000{bottom:650.333333pt;}
.y6d_c00000{bottom:650.653333pt;}
.y1220_c00000{bottom:650.813333pt;}
.ye3_c00000{bottom:650.973333pt;}
.y512_c00000{bottom:651.453333pt;}
.ye75_c00000{bottom:651.613333pt;}
.y77f_c00000{bottom:651.773333pt;}
.y1a0_c00000{bottom:651.933333pt;}
.y767_c00000{bottom:652.093333pt;}
.yd76_c00000{bottom:652.253333pt;}
.yde2_c00000{bottom:652.413333pt;}
.yb7a_c00000{bottom:652.733333pt;}
.yec9_c00000{bottom:652.893333pt;}
.y865_c00000{bottom:653.053333pt;}
.y1183_c00000{bottom:653.213333pt;}
.ycb1_c00000{bottom:653.373333pt;}
.y8a0_c00000{bottom:653.533333pt;}
.yaa5_c00000{bottom:653.693333pt;}
.y493_c00000{bottom:653.853333pt;}
.y4fe_c00000{bottom:654.013333pt;}
.y1eb_c00000{bottom:654.173333pt;}
.y21d_c00000{bottom:654.333333pt;}
.y671_c00000{bottom:654.493333pt;}
.y10e9_c00000{bottom:654.653333pt;}
.y176_c00000{bottom:655.453333pt;}
.y2ad_c00000{bottom:655.613333pt;}
.y97e_c00000{bottom:655.773333pt;}
.y9c8_c00000{bottom:655.933333pt;}
.yc38_c00000{bottom:656.253333pt;}
.ybbe_c00000{bottom:656.573333pt;}
.y8b0_c00000{bottom:656.893333pt;}
.yc_c00000{bottom:657.178880pt;}
.y737_c00000{bottom:657.213333pt;}
.y1287_c00000{bottom:657.226667pt;}
.y4af_c00000{bottom:657.373333pt;}
.yd34_c00000{bottom:657.693333pt;}
.y109_c00000{bottom:658.173333pt;}
.y153_c00000{bottom:658.333333pt;}
.y6da_c00000{bottom:658.493333pt;}
.yf4a_c00000{bottom:658.653333pt;}
.y6be_c00000{bottom:658.813333pt;}
.y10fe_c00000{bottom:659.133333pt;}
.ybd0_c00000{bottom:659.293333pt;}
.y135d_c00000{bottom:659.306667pt;}
.y26e_c00000{bottom:659.453333pt;}
.y357_c00000{bottom:659.613333pt;}
.yfb_c00000{bottom:660.093333pt;}
.y10e1_c00000{bottom:660.253333pt;}
.y334_c00000{bottom:660.733333pt;}
.y6a1_c00000{bottom:661.053333pt;}
.y8eb_c00000{bottom:661.213333pt;}
.y99e_c00000{bottom:661.373333pt;}
.y31f_c00000{bottom:661.533333pt;}
.y1134_c00000{bottom:661.693333pt;}
.y131_c00000{bottom:661.853333pt;}
.y107e_c00000{bottom:662.173333pt;}
.ya95_c00000{bottom:662.333333pt;}
.yef0_c00000{bottom:662.493333pt;}
.ydd9_c00000{bottom:662.813333pt;}
.ye5e_c00000{bottom:662.973333pt;}
.y2fc_c00000{bottom:663.133333pt;}
.y2e3_c00000{bottom:663.293333pt;}
.y63f_c00000{bottom:663.453333pt;}
.y658_c00000{bottom:663.613333pt;}
.y134c_c00000{bottom:663.773333pt;}
.yea1_c00000{bottom:663.933333pt;}
.y60d_c00000{bottom:664.093333pt;}
.yf36_c00000{bottom:664.253333pt;}
.y829_c00000{bottom:664.413333pt;}
.y376_c00000{bottom:664.573333pt;}
.y68c_c00000{bottom:664.733333pt;}
.y427_c00000{bottom:664.893333pt;}
.y563_c00000{bottom:665.053333pt;}
.y841_c00000{bottom:665.213333pt;}
.yf86_c00000{bottom:665.373333pt;}
.ybe2_c00000{bottom:665.533333pt;}
.ya84_c00000{bottom:665.693333pt;}
.y573_c00000{bottom:666.013333pt;}
.y3f8_c00000{bottom:666.173333pt;}
.y7b1_c00000{bottom:666.333333pt;}
.yee5_c00000{bottom:666.653333pt;}
.y7ea_c00000{bottom:666.813333pt;}
.y456_c00000{bottom:667.293333pt;}
.y85a_c00000{bottom:667.453333pt;}
.yc8_c00000{bottom:667.613333pt;}
.yffc_c00000{bottom:667.626667pt;}
.y6c_c00000{bottom:667.773333pt;}
.y703_c00000{bottom:667.933333pt;}
.y13d8_c00000{bottom:668.093333pt;}
.y41_c00000{bottom:668.573333pt;}
.y59c_c00000{bottom:668.893333pt;}
.y712_c00000{bottom:669.053333pt;}
.y7fb_c00000{bottom:669.373333pt;}
.y1261_c00000{bottom:670.013333pt;}
.y1152_c00000{bottom:670.333333pt;}
.y19f_c00000{bottom:670.493333pt;}
.y839_c00000{bottom:670.653333pt;}
.ye2_c00000{bottom:670.813333pt;}
.y5c4_c00000{bottom:670.973333pt;}
.y766_c00000{bottom:671.133333pt;}
.y3af_c00000{bottom:671.293333pt;}
.yd30_c00000{bottom:671.453333pt;}
.y933_c00000{bottom:671.773333pt;}
.yd75_c00000{bottom:672.253333pt;}
.y1ea_c00000{bottom:672.573333pt;}
.y23e_c00000{bottom:672.733333pt;}
.y77e_c00000{bottom:672.893333pt;}
.y127f_c00000{bottom:673.053333pt;}
.y1263_c00000{bottom:673.373333pt;}
.yc94_c00000{bottom:673.693333pt;}
.y492_c00000{bottom:673.853333pt;}
.y28d_c00000{bottom:674.013333pt;}
.y864_c00000{bottom:674.173333pt;}
.y93d_c00000{bottom:674.186667pt;}
.y92a_c00000{bottom:674.333333pt;}
.y670_c00000{bottom:674.493333pt;}
.y89f_c00000{bottom:674.653333pt;}
.yaa4_c00000{bottom:674.813333pt;}
.yb_c00000{bottom:675.093120pt;}
.y175_c00000{bottom:675.293333pt;}
.y2c4_c00000{bottom:675.453333pt;}
.yc4e_c00000{bottom:675.613333pt;}
.yc81_c00000{bottom:675.773333pt;}
.y1329_c00000{bottom:675.933333pt;}
.y109a_c00000{bottom:676.413333pt;}
.yb4_c00000{bottom:676.733333pt;}
.y97d_c00000{bottom:676.893333pt;}
.y9c7_c00000{bottom:677.053333pt;}
.y4ae_c00000{bottom:677.213333pt;}
.y112c_c00000{bottom:677.373333pt;}
.y112a_c00000{bottom:677.386667pt;}
.y38f_c00000{bottom:677.693333pt;}
.y125b_c00000{bottom:677.853333pt;}
.y13ed_c00000{bottom:678.013333pt;}
.y13ee_c00000{bottom:678.026667pt;}
.y108_c00000{bottom:678.173333pt;}
.y6d9_c00000{bottom:678.333333pt;}
.yadf_c00000{bottom:678.493333pt;}
.y6bd_c00000{bottom:678.653333pt;}
.y110f_c00000{bottom:678.813333pt;}
.yb1a_c00000{bottom:679.293333pt;}
.y356_c00000{bottom:679.453333pt;}
.yd96_c00000{bottom:679.773333pt;}
.y1248_c00000{bottom:679.933333pt;}
.yfa_c00000{bottom:680.093333pt;}
.y6a0_c00000{bottom:680.253333pt;}
.yfdc_c00000{bottom:680.413333pt;}
.y5fc_c00000{bottom:680.573333pt;}
.y2c5_c00000{bottom:680.733333pt;}
.y10a8_c00000{bottom:680.893333pt;}
.yc82_c00000{bottom:681.053333pt;}
.ycc4_c00000{bottom:681.213333pt;}
.y4cb_c00000{bottom:681.373333pt;}
.y478_c00000{bottom:681.386667pt;}
.y31e_c00000{bottom:681.533333pt;}
.y10a6_c00000{bottom:681.546667pt;}
.y11d2_c00000{bottom:681.693333pt;}
.y333_c00000{bottom:681.853333pt;}
.y107d_c00000{bottom:682.013333pt;}
.y958_c00000{bottom:682.173333pt;}
.y134b_c00000{bottom:682.333333pt;}
.y60c_c00000{bottom:682.493333pt;}
.ya01_c00000{bottom:682.653333pt;}
.ycb0_c00000{bottom:682.813333pt;}
.y2e2_c00000{bottom:682.973333pt;}
.yd56_c00000{bottom:683.293333pt;}
.y63e_c00000{bottom:683.453333pt;}
.y1015_c00000{bottom:683.613333pt;}
.y12d9_c00000{bottom:684.093333pt;}
.y375_c00000{bottom:684.413333pt;}
.y6b_c00000{bottom:684.573333pt;}
.y93_c00000{bottom:684.733333pt;}
.y562_c00000{bottom:684.893333pt;}
.ycbc_c00000{bottom:685.213333pt;}
.y13a6_c00000{bottom:685.373333pt;}
.ya3f_c00000{bottom:685.693333pt;}
.y572_c00000{bottom:685.853333pt;}
.y756_c00000{bottom:686.013333pt;}
.y797_c00000{bottom:686.173333pt;}
.y840_c00000{bottom:686.333333pt;}
.y1175_c00000{bottom:686.813333pt;}
.y121d_c00000{bottom:686.973333pt;}
.y10f5_c00000{bottom:687.133333pt;}
.yc7_c00000{bottom:687.293333pt;}
.y7b0_c00000{bottom:687.453333pt;}
.y702_c00000{bottom:687.773333pt;}
.y736_c00000{bottom:687.933333pt;}
.y12df_c00000{bottom:688.093333pt;}
.y11ca_c00000{bottom:688.413333pt;}
.y3c7_c00000{bottom:688.573333pt;}
.y19e_c00000{bottom:688.733333pt;}
.y711_c00000{bottom:688.893333pt;}
.y100e_c00000{bottom:689.213333pt;}
.y542_c00000{bottom:689.373333pt;}
.ydd8_c00000{bottom:689.853333pt;}
.y730_c00000{bottom:689.866667pt;}
.yf54_c00000{bottom:690.173333pt;}
.y8be_c00000{bottom:690.333333pt;}
.y5c3_c00000{bottom:690.653333pt;}
.y724_c00000{bottom:690.813333pt;}
.y208_c00000{bottom:690.973333pt;}
.y24e_c00000{bottom:691.133333pt;}
.y11b0_c00000{bottom:691.453333pt;}
.yc22_c00000{bottom:691.613333pt;}
.y11c7_c00000{bottom:691.773333pt;}
.y130_c00000{bottom:692.253333pt;}
.y3ae_c00000{bottom:692.413333pt;}
.yd06_c00000{bottom:692.573333pt;}
.yfe9_c00000{bottom:692.733333pt;}
.yded_c00000{bottom:692.893333pt;}
.y9b6_c00000{bottom:693.053333pt;}
.y93b_c00000{bottom:693.066667pt;}
.ye09_c00000{bottom:693.213333pt;}
.ya94_c00000{bottom:693.373333pt;}
.yc93_c00000{bottom:693.533333pt;}
.y491_c00000{bottom:693.693333pt;}
.y28c_c00000{bottom:693.853333pt;}
.y77d_c00000{bottom:694.013333pt;}
.yd86_c00000{bottom:694.173333pt;}
.ybc6_c00000{bottom:694.186667pt;}
.ye7b_c00000{bottom:694.346667pt;}
.y66f_c00000{bottom:694.493333pt;}
.yb48_c00000{bottom:694.973333pt;}
.y174_c00000{bottom:695.133333pt;}
.y26d_c00000{bottom:695.293333pt;}
.y929_c00000{bottom:695.453333pt;}
.yb11_c00000{bottom:695.613333pt;}
.y89e_c00000{bottom:695.773333pt;}
.yaa3_c00000{bottom:695.933333pt;}
.y1112_c00000{bottom:696.093333pt;}
.y818_c00000{bottom:696.413333pt;}
.y4e9_c00000{bottom:696.573333pt;}
.y1343_c00000{bottom:696.733333pt;}
.y3f7_c00000{bottom:696.893333pt;}
.y4ad_c00000{bottom:697.053333pt;}
.yee4_c00000{bottom:697.213333pt;}
.y13b2_c00000{bottom:697.533333pt;}
.ye4f_c00000{bottom:697.853333pt;}
.y107_c00000{bottom:698.013333pt;}
.y6d8_c00000{bottom:698.173333pt;}
.yf49_c00000{bottom:698.333333pt;}
.y6bc_c00000{bottom:698.493333pt;}
.y110d_c00000{bottom:698.813333pt;}
.ybb0_c00000{bottom:699.133333pt;}
.ye4c_c00000{bottom:699.293333pt;}
.y355_c00000{bottom:699.453333pt;}
.yd95_c00000{bottom:699.613333pt;}
.ybe1_c00000{bottom:699.933333pt;}
.y1093_c00000{bottom:699.946667pt;}
.y10ce_c00000{bottom:700.253333pt;}
.yda3_c00000{bottom:700.413333pt;}
.y134a_c00000{bottom:700.573333pt;}
.y1241_c00000{bottom:700.733333pt;}
.y60b_c00000{bottom:700.893333pt;}
.y8ea_c00000{bottom:701.053333pt;}
.y7e9_c00000{bottom:701.213333pt;}
.y6a_c00000{bottom:701.373333pt;}
.ye1_c00000{bottom:701.533333pt;}
.ybb5_c00000{bottom:701.546667pt;}
.y5fb_c00000{bottom:701.693333pt;}
.y859_c00000{bottom:701.853333pt;}
.y40_c00000{bottom:702.333333pt;}
.y511_c00000{bottom:702.493333pt;}
.ye5d_c00000{bottom:702.653333pt;}
.y2e0_c00000{bottom:702.813333pt;}
.y332_c00000{bottom:702.973333pt;}
.ye21_c00000{bottom:703.133333pt;}
.y957_c00000{bottom:703.293333pt;}
.y63d_c00000{bottom:703.453333pt;}
.y8ee_c00000{bottom:703.613333pt;}
.yb8e_c00000{bottom:703.773333pt;}
.y1133_c00000{bottom:703.933333pt;}
.y127e_c00000{bottom:704.093333pt;}
.y374_c00000{bottom:704.253333pt;}
.y426_c00000{bottom:704.413333pt;}
.yca4_c00000{bottom:704.573333pt;}
.y68b_c00000{bottom:704.733333pt;}
.yd42_c00000{bottom:704.893333pt;}
.y6eb_c00000{bottom:705.693333pt;}
.y571_c00000{bottom:705.853333pt;}
.y743_c00000{bottom:706.013333pt;}
.ya3e_c00000{bottom:706.813333pt;}
.yc6_c00000{bottom:707.133333pt;}
.y19d_c00000{bottom:707.293333pt;}
.y796_c00000{bottom:707.453333pt;}
.y701_c00000{bottom:707.613333pt;}
.y1c0_c00000{bottom:707.933333pt;}
.y2e1_c00000{bottom:708.093333pt;}
.y1270_c00000{bottom:708.106667pt;}
.y38e_c00000{bottom:708.253333pt;}
.y59b_c00000{bottom:708.413333pt;}
.y7af_c00000{bottom:708.573333pt;}
.ya_c00000{bottom:708.846080pt;}
.y30_c00000{bottom:709.053333pt;}
.y56b_c00000{bottom:709.213333pt;}
.y1e9_c00000{bottom:709.373333pt;}
.yb3_c00000{bottom:709.533333pt;}
.yfc2_c00000{bottom:710.013333pt;}
.y5c2_c00000{bottom:710.493333pt;}
.y1410_c00000{bottom:710.653333pt;}
.y10ca_c00000{bottom:710.813333pt;}
.y13cb_c00000{bottom:710.973333pt;}
.y1341_c00000{bottom:711.293333pt;}
.y8bd_c00000{bottom:711.453333pt;}
.y31d_c00000{bottom:711.933333pt;}
.y12f_c00000{bottom:712.093333pt;}
.ycbb_c00000{bottom:712.253333pt;}
.y7f7_c00000{bottom:712.413333pt;}
.yb0a_c00000{bottom:712.573333pt;}
.yade_c00000{bottom:713.053333pt;}
.yd15_c00000{bottom:713.213333pt;}
.yc92_c00000{bottom:713.373333pt;}
.y3ad_c00000{bottom:713.533333pt;}
.y28b_c00000{bottom:713.693333pt;}
.yc67_c00000{bottom:713.853333pt;}
.yf23_c00000{bottom:714.013333pt;}
.y121a_c00000{bottom:714.173333pt;}
.y66e_c00000{bottom:714.493333pt;}
.y23d_c00000{bottom:714.653333pt;}
.y13ec_c00000{bottom:714.813333pt;}
.y173_c00000{bottom:714.973333pt;}
.yb15_c00000{bottom:715.133333pt;}
.y77c_c00000{bottom:715.293333pt;}
.ye3c_c00000{bottom:715.453333pt;}
.y561_c00000{bottom:715.613333pt;}
.y12ce_c00000{bottom:715.933333pt;}
.y4e8_c00000{bottom:716.253333pt;}
.y863_c00000{bottom:716.413333pt;}
.y3f6_c00000{bottom:716.573333pt;}
.y722_c00000{bottom:716.733333pt;}
.y4ac_c00000{bottom:716.893333pt;}
.ya21_c00000{bottom:717.053333pt;}
.yf71_c00000{bottom:717.213333pt;}
.y84c_c00000{bottom:717.533333pt;}
.y106_c00000{bottom:717.853333pt;}
.y6d7_c00000{bottom:718.013333pt;}
.y69_c00000{bottom:718.173333pt;}
.y6bb_c00000{bottom:718.333333pt;}
.y11d7_c00000{bottom:718.506667pt;}
.y12fb_c00000{bottom:718.653333pt;}
.y477_c00000{bottom:718.813333pt;}
.y1349_c00000{bottom:718.973333pt;}
.y12de_c00000{bottom:719.133333pt;}
.y354_c00000{bottom:719.293333pt;}
.y9c6_c00000{bottom:719.453333pt;}
.y710_c00000{bottom:719.613333pt;}
.y52c_c00000{bottom:720.253333pt;}
.y1127_c00000{bottom:720.266667pt;}
.y10fd_c00000{bottom:720.413333pt;}
.yf93_c00000{bottom:720.426667pt;}
.y107c_c00000{bottom:720.893333pt;}
.y932_c00000{bottom:721.053333pt;}
.ye02_c00000{bottom:721.213333pt;}
.y4ca_c00000{bottom:721.373333pt;}
.yf77_c00000{bottom:721.693333pt;}
.yfe0_c00000{bottom:721.853333pt;}
.y69f_c00000{bottom:722.013333pt;}
.yde3_c00000{bottom:722.173333pt;}
.y12d0_c00000{bottom:722.186667pt;}
.y12ea_c00000{bottom:722.333333pt;}
.ye5c_c00000{bottom:722.493333pt;}
.y2df_c00000{bottom:722.653333pt;}
.y5f9_c00000{bottom:722.813333pt;}
.y1432_c00000{bottom:722.973333pt;}
.yb2a_c00000{bottom:723.133333pt;}
.y63c_c00000{bottom:723.453333pt;}
.y1174_c00000{bottom:723.613333pt;}
.y1394_c00000{bottom:723.773333pt;}
.y331_c00000{bottom:724.093333pt;}
.y425_c00000{bottom:724.253333pt;}
.y956_c00000{bottom:724.413333pt;}
.yca3_c00000{bottom:724.573333pt;}
.y68a_c00000{bottom:724.733333pt;}
.ya00_c00000{bottom:724.893333pt;}
.y7fa_c00000{bottom:725.053333pt;}
.y6ea_c00000{bottom:725.533333pt;}
.y19c_c00000{bottom:725.693333pt;}
.y26c_c00000{bottom:725.853333pt;}
.y103d_c00000{bottom:726.493333pt;}
.y455_c00000{bottom:726.973333pt;}
.y9f4_c00000{bottom:727.133333pt;}
.y700_c00000{bottom:727.453333pt;}
.y1e8_c00000{bottom:727.773333pt;}
.y24d_c00000{bottom:727.933333pt;}
.y59a_c00000{bottom:728.253333pt;}
.yda7_c00000{bottom:728.413333pt;}
.y78d_c00000{bottom:728.573333pt;}
.y83f_c00000{bottom:728.733333pt;}
.y765_c00000{bottom:728.893333pt;}
.yb2_c00000{bottom:729.053333pt;}
.y1045_c00000{bottom:729.213333pt;}
.y373_c00000{bottom:729.373333pt;}
.y490_c00000{bottom:729.533333pt;}
.y90a_c00000{bottom:729.693333pt;}
.y7ae_c00000{bottom:729.853333pt;}
.ybaf_c00000{bottom:730.013333pt;}
.y5c1_c00000{bottom:730.333333pt;}
.yc21_c00000{bottom:730.493333pt;}
.y817_c00000{bottom:730.813333pt;}
.y570_c00000{bottom:730.973333pt;}
.ye76_c00000{bottom:731.453333pt;}
.y31c_c00000{bottom:731.613333pt;}
.ye0_c00000{bottom:732.093333pt;}
.y7e8_c00000{bottom:732.253333pt;}
.ye8f_c00000{bottom:732.413333pt;}
.y8bc_c00000{bottom:732.573333pt;}
.y106a_c00000{bottom:732.586667pt;}
.y97c_c00000{bottom:732.733333pt;}
.yc91_c00000{bottom:733.213333pt;}
.y28a_c00000{bottom:733.373333pt;}
.y40f_c00000{bottom:733.533333pt;}
.y2fb_c00000{bottom:733.693333pt;}
.yd55_c00000{bottom:733.853333pt;}
.y1416_c00000{bottom:734.173333pt;}
.y66d_c00000{bottom:734.493333pt;}
.y3ac_c00000{bottom:734.653333pt;}
.y172_c00000{bottom:734.813333pt;}
.y68_c00000{bottom:734.973333pt;}
.yc4d_c00000{bottom:735.133333pt;}
.ye12_c00000{bottom:735.293333pt;}
.yd41_c00000{bottom:735.453333pt;}
.y3f_c00000{bottom:736.093333pt;}
.y3f5_c00000{bottom:736.413333pt;}
.y1311_c00000{bottom:736.573333pt;}
.y4ab_c00000{bottom:736.733333pt;}
.y12fa_c00000{bottom:737.053333pt;}
.y1386_c00000{bottom:737.213333pt;}
.y1306_c00000{bottom:737.373333pt;}
.y12e6_c00000{bottom:737.533333pt;}
.y105_c00000{bottom:737.693333pt;}
.yc5_c00000{bottom:737.853333pt;}
.y89d_c00000{bottom:738.013333pt;}
.y6ba_c00000{bottom:738.173333pt;}
.yedd_c00000{bottom:738.186667pt;}
.y1132_c00000{bottom:738.333333pt;}
.y80f_c00000{bottom:738.506667pt;}
.y84b_c00000{bottom:738.653333pt;}
.y882_c00000{bottom:738.666667pt;}
.y38d_c00000{bottom:738.813333pt;}
.y353_c00000{bottom:739.133333pt;}
.y13d7_c00000{bottom:739.773333pt;}
.y126e_c00000{bottom:740.093333pt;}
.y582_c00000{bottom:740.253333pt;}
.y8fa_c00000{bottom:740.413333pt;}
.ye13_c00000{bottom:740.573333pt;}
.yf9_c00000{bottom:741.213333pt;}
.yd5a_c00000{bottom:741.386667pt;}
.y13b8_c00000{bottom:741.533333pt;}
.y13ca_c00000{bottom:741.693333pt;}
.y69e_c00000{bottom:742.013333pt;}
.y12e_c00000{bottom:742.653333pt;}
.y9_c00000{bottom:742.760960pt;}
.y13ff_c00000{bottom:742.813333pt;}
.yec8_c00000{bottom:742.973333pt;}
.y63b_c00000{bottom:743.453333pt;}
.y5f6_c00000{bottom:743.933333pt;}
.y19b_c00000{bottom:744.093333pt;}
.y424_c00000{bottom:744.253333pt;}
.yca2_c00000{bottom:744.413333pt;}
.yc76_c00000{bottom:744.573333pt;}
.y1bf_c00000{bottom:744.893333pt;}
.y6e9_c00000{bottom:745.373333pt;}
.y26b_c00000{bottom:745.533333pt;}
.y955_c00000{bottom:745.693333pt;}
.y8d0_c00000{bottom:745.853333pt;}
.y999_c00000{bottom:746.013333pt;}
.yf51_c00000{bottom:746.026667pt;}
.y92_c00000{bottom:746.173333pt;}
.y762_c00000{bottom:746.186667pt;}
.y2f_c00000{bottom:746.333333pt;}
.y141e_c00000{bottom:746.506667pt;}
.y70f_c00000{bottom:746.653333pt;}
.y11c6_c00000{bottom:746.973333pt;}
.yeda_c00000{bottom:747.133333pt;}
.y6ff_c00000{bottom:747.453333pt;}
.y11af_c00000{bottom:747.613333pt;}
.y599_c00000{bottom:748.093333pt;}
.y9f3_c00000{bottom:748.253333pt;}
.yb1_c00000{bottom:748.413333pt;}
.yb79_c00000{bottom:748.733333pt;}
.yb8a_c00000{bottom:748.893333pt;}
.y78c_c00000{bottom:749.693333pt;}
.y83e_c00000{bottom:749.853333pt;}
.y5c0_c00000{bottom:750.173333pt;}
.y99a_c00000{bottom:750.653333pt;}
.y7ad_c00000{bottom:750.973333pt;}
.ya04_c00000{bottom:751.133333pt;}
.y119d_c00000{bottom:751.293333pt;}
.y232_c00000{bottom:751.453333pt;}
.ydf_c00000{bottom:751.773333pt;}
.y67_c00000{bottom:751.933333pt;}
.y816_c00000{bottom:752.093333pt;}
.yd05_c00000{bottom:752.253333pt;}
.y1328_c00000{bottom:752.413333pt;}
.yc90_c00000{bottom:753.053333pt;}
.ye5b_c00000{bottom:753.253333pt;}
.y2fa_c00000{bottom:753.413333pt;}
.y2de_c00000{bottom:753.573333pt;}
.y875_c00000{bottom:753.733333pt;}
.y973_c00000{bottom:753.893333pt;}
.yfdb_c00000{bottom:754.040000pt;}
.yfda_c00000{bottom:754.053333pt;}
.y66c_c00000{bottom:754.533333pt;}
.ya4f_c00000{bottom:754.680000pt;}
.y171_c00000{bottom:754.693333pt;}
.y330_c00000{bottom:754.853333pt;}
.y4fd_c00000{bottom:755.013333pt;}
.ye3b_c00000{bottom:755.173333pt;}
.y12f9_c00000{bottom:755.493333pt;}
.y1385_c00000{bottom:755.653333pt;}
.y1305_c00000{bottom:755.813333pt;}
.y1374_c00000{bottom:755.960000pt;}
.y3ab_c00000{bottom:755.973333pt;}
.ye7d_c00000{bottom:756.133333pt;}
.y476_c00000{bottom:756.280000pt;}
.y3f4_c00000{bottom:756.293333pt;}
.y4aa_c00000{bottom:756.613333pt;}
.yf3e_c00000{bottom:756.760000pt;}
.y38c_c00000{bottom:756.933333pt;}
.yc4_c00000{bottom:757.573333pt;}
.y151_c00000{bottom:757.733333pt;}
.y1072_c00000{bottom:757.893333pt;}
.ye67_c00000{bottom:758.040000pt;}
.y1173_c00000{bottom:758.213333pt;}
.y352_c00000{bottom:758.853333pt;}
.y928_c00000{bottom:759.013333pt;}
.y89c_c00000{bottom:759.333333pt;}
.yaa2_c00000{bottom:759.493333pt;}
.y7f9_c00000{bottom:759.653333pt;}
.y138e_c00000{bottom:759.800000pt;}
.y2c3_c00000{bottom:759.973333pt;}
.y3c6_c00000{bottom:760.133333pt;}
.yd26_c00000{bottom:760.293333pt;}
.y13c0_c00000{bottom:760.440000pt;}
.y13bf_c00000{bottom:760.453333pt;}
.yf8_c00000{bottom:760.933333pt;}
.y9fd_c00000{bottom:761.573333pt;}
.y1363_c00000{bottom:762.040000pt;}
.y69d_c00000{bottom:762.053333pt;}
.y12d_c00000{bottom:762.373333pt;}
.yba0_c00000{bottom:762.533333pt;}
.ya3d_c00000{bottom:762.693333pt;}
.y13fe_c00000{bottom:762.853333pt;}
.y152_c00000{bottom:763.013333pt;}
.y1126_c00000{bottom:763.320000pt;}
.y1125_c00000{bottom:763.333333pt;}
.y63a_c00000{bottom:763.493333pt;}
.yfeb_c00000{bottom:763.800000pt;}
.y372_c00000{bottom:763.973333pt;}
.y423_c00000{bottom:764.133333pt;}
.y289_c00000{bottom:764.293333pt;}
.yd54_c00000{bottom:764.453333pt;}
.y1e7_c00000{bottom:764.613333pt;}
.y21b_c00000{bottom:764.773333pt;}
.y6e8_c00000{bottom:765.253333pt;}
.y26a_c00000{bottom:765.413333pt;}
.y554_c00000{bottom:765.573333pt;}
.yd40_c00000{bottom:766.053333pt;}
.y4e7_c00000{bottom:766.853333pt;}
.y6fe_c00000{bottom:767.173333pt;}
.y998_c00000{bottom:767.333333pt;}
.y598_c00000{bottom:768.133333pt;}
.y140f_c00000{bottom:768.293333pt;}
.y66_c00000{bottom:768.773333pt;}
.y6b9_c00000{bottom:768.933333pt;}
.y1131_c00000{bottom:769.413333pt;}
.y13c7_c00000{bottom:769.733333pt;}
.y3e_c00000{bottom:769.893333pt;}
.y21c_c00000{bottom:770.053333pt;}
.ye8e_c00000{bottom:770.200000pt;}
.y555_c00000{bottom:770.853333pt;}
.yd94_c00000{bottom:771.333333pt;}
.y31b_c00000{bottom:771.493333pt;}
.yde_c00000{bottom:771.653333pt;}
.y12aa_c00000{bottom:771.800000pt;}
.yd04_c00000{bottom:771.973333pt;}
.y7ac_c00000{bottom:772.133333pt;}
.y13c9_c00000{bottom:772.293333pt;}
.ya06_c00000{bottom:772.453333pt;}
.yc8f_c00000{bottom:773.093333pt;}
.y2dd_c00000{bottom:773.253333pt;}
.yc66_c00000{bottom:773.413333pt;}
.yd85_c00000{bottom:773.573333pt;}
.y11ad_c00000{bottom:773.733333pt;}
.y12f8_c00000{bottom:773.893333pt;}
.y510_c00000{bottom:774.053333pt;}
.yed9_c00000{bottom:774.213333pt;}
.y60a_c00000{bottom:774.373333pt;}
.y170_c00000{bottom:774.533333pt;}
.y4fc_c00000{bottom:774.693333pt;}
.y138f_c00000{bottom:774.840000pt;}
.yb47_c00000{bottom:774.853333pt;}
.y8bb_c00000{bottom:775.013333pt;}
.y97b_c00000{bottom:775.173333pt;}
.y10fc_c00000{bottom:775.800000pt;}
.y10fb_c00000{bottom:775.813333pt;}
.yf48_c00000{bottom:775.973333pt;}
.y3f3_c00000{bottom:776.133333pt;}
.y8_c00000{bottom:776.675840pt;}
.y3aa_c00000{bottom:777.093333pt;}
.yb0_c00000{bottom:777.253333pt;}
.yc3_c00000{bottom:777.413333pt;}
.yc1f_c00000{bottom:777.560000pt;}
.y14f_c00000{bottom:777.573333pt;}
.y1071_c00000{bottom:777.733333pt;}
.y118d_c00000{bottom:778.373333pt;}
.yb29_c00000{bottom:778.520000pt;}
.yb28_c00000{bottom:778.533333pt;}
.y351_c00000{bottom:778.693333pt;}
.y11ae_c00000{bottom:779.013333pt;}
.yf85_c00000{bottom:779.640000pt;}
.yf84_c00000{bottom:779.653333pt;}
.yb78_c00000{bottom:779.813333pt;}
.y927_c00000{bottom:780.133333pt;}
.yce8_c00000{bottom:780.293333pt;}
.yf25_c00000{bottom:780.440000pt;}
.y89b_c00000{bottom:780.453333pt;}
.yaa1_c00000{bottom:780.613333pt;}
.y19a_c00000{bottom:780.773333pt;}
.y1065_c00000{bottom:780.933333pt;}
.y5f5_c00000{bottom:781.253333pt;}
.ycdb_c00000{bottom:781.560000pt;}
.y12e9_c00000{bottom:781.573333pt;}
.y1be_c00000{bottom:782.053333pt;}
.y150_c00000{bottom:782.213333pt;}
.y1354_c00000{bottom:782.360000pt;}
.y13fd_c00000{bottom:782.693333pt;}
.y13e9_c00000{bottom:782.840000pt;}
.y9f2_c00000{bottom:782.853333pt;}
.y1e6_c00000{bottom:783.013333pt;}
.y206_c00000{bottom:783.173333pt;}
.y689_c00000{bottom:783.333333pt;}
.y639_c00000{bottom:783.493333pt;}
.y1181_c00000{bottom:783.800000pt;}
.y371_c00000{bottom:783.813333pt;}
.y137f_c00000{bottom:783.960000pt;}
.y288_c00000{bottom:783.973333pt;}
.yc75_c00000{bottom:784.133333pt;}
.yf03_c00000{bottom:784.280000pt;}
.yd68_c00000{bottom:784.293333pt;}
.yea6_c00000{bottom:784.453333pt;}
.y1182_c00000{bottom:784.920000pt;}
.y91_c00000{bottom:785.093333pt;}
.y269_c00000{bottom:785.253333pt;}
.y38b_c00000{bottom:785.413333pt;}
.y65_c00000{bottom:785.893333pt;}
.y4e6_c00000{bottom:786.533333pt;}
.yd1e_c00000{bottom:787.173333pt;}
.y4a9_c00000{bottom:787.333333pt;}
.y207_c00000{bottom:787.813333pt;}
.y954_c00000{bottom:787.973333pt;}
.y122c_c00000{bottom:788.120000pt;}
.y8cf_c00000{bottom:788.293333pt;}
.y997_c00000{bottom:788.453333pt;}
.y50f_c00000{bottom:788.613333pt;}
.y13de_c00000{bottom:789.093333pt;}
.y1327_c00000{bottom:789.253333pt;}
.y5bf_c00000{bottom:789.893333pt;}
.y122f_c00000{bottom:790.200000pt;}
.y1191_c00000{bottom:790.213333pt;}
.y13e8_c00000{bottom:790.520000pt;}
.y7f8_c00000{bottom:790.533333pt;}
.y2e_c00000{bottom:790.693333pt;}
.yfd9_c00000{bottom:790.840000pt;}
.yfd8_c00000{bottom:790.853333pt;}
.y13ea_c00000{bottom:791.013333pt;}
.y108f_c00000{bottom:791.173333pt;}
.ydd_c00000{bottom:791.493333pt;}
.y1239_c00000{bottom:791.973333pt;}
.y78b_c00000{bottom:792.133333pt;}
.y12f7_c00000{bottom:792.293333pt;}
.y1384_c00000{bottom:792.453333pt;}
.y1304_c00000{bottom:792.613333pt;}
.y1024_c00000{bottom:792.760000pt;}
.y609_c00000{bottom:792.773333pt;}
.yd22_c00000{bottom:792.920000pt;}
.yc8e_c00000{bottom:792.933333pt;}
.y12c_c00000{bottom:793.093333pt;}
.y7ab_c00000{bottom:793.253333pt;}
.ydf6_c00000{bottom:793.413333pt;}
.ya05_c00000{bottom:793.573333pt;}
.y475_c00000{bottom:793.733333pt;}
.y16f_c00000{bottom:794.373333pt;}
.y2ac_c00000{bottom:794.533333pt;}
.y758_c00000{bottom:794.693333pt;}
.yb46_c00000{bottom:794.853333pt;}
.yd52_c00000{bottom:795.013333pt;}
.ydaf_c00000{bottom:795.320000pt;}
.y3f2_c00000{bottom:795.973333pt;}
.y8ba_c00000{bottom:796.133333pt;}
.y97a_c00000{bottom:796.293333pt;}
.y454_c00000{bottom:797.093333pt;}
.yc2_c00000{bottom:797.253333pt;}
.y10bf_c00000{bottom:797.400000pt;}
.y6d6_c00000{bottom:797.413333pt;}
.y6fd_c00000{bottom:797.893333pt;}
.y122b_c00000{bottom:798.040000pt;}
.y3a9_c00000{bottom:798.213333pt;}
.y120e_c00000{bottom:798.680000pt;}
.y597_c00000{bottom:798.693333pt;}
.y199_c00000{bottom:799.173333pt;}
.y107a_c00000{bottom:799.640000pt;}
.y4c9_c00000{bottom:799.813333pt;}
.y77b_c00000{bottom:799.973333pt;}
.y120a_c00000{bottom:800.120000pt;}
.yd53_c00000{bottom:800.293333pt;}
.y1bd_c00000{bottom:800.453333pt;}
.y9fc_c00000{bottom:800.933333pt;}
.y926_c00000{bottom:801.253333pt;}
.y1e5_c00000{bottom:801.413333pt;}
.y205_c00000{bottom:801.573333pt;}
.y129f_c00000{bottom:801.720000pt;}
.yaa0_c00000{bottom:801.733333pt;}
.y69c_c00000{bottom:802.053333pt;}
.y13fc_c00000{bottom:802.533333pt;}
.y64_c00000{bottom:802.693333pt;}
.y6f7_c00000{bottom:802.840000pt;}
.y1083_c00000{bottom:803.000000pt;}
.y638_c00000{bottom:803.493333pt;}
.y3de_c00000{bottom:803.653333pt;}
.y287_c00000{bottom:803.813333pt;}
.y9f1_c00000{bottom:803.973333pt;}
.ye4b_c00000{bottom:804.133333pt;}
.y268_c00000{bottom:805.093333pt;}
.y734_c00000{bottom:805.253333pt;}
.y1124_c00000{bottom:806.200000pt;}
.yaf_c00000{bottom:806.213333pt;}
.y4e5_c00000{bottom:806.373333pt;}
.y8e9_c00000{bottom:806.853333pt;}
.y4a8_c00000{bottom:807.013333pt;}
.y84a_c00000{bottom:807.653333pt;}
.y3d_c00000{bottom:808.293333pt;}
.y50e_c00000{bottom:808.453333pt;}
.y13be_c00000{bottom:808.773333pt;}
.y8ce_c00000{bottom:809.413333pt;}
.y996_c00000{bottom:809.573333pt;}
.y5be_c00000{bottom:809.733333pt;}
.y11a6_c00000{bottom:810.360000pt;}
.y1310_c00000{bottom:810.373333pt;}
.y735_c00000{bottom:810.533333pt;}
.y7_c00000{bottom:810.590720pt;}
.y12f6_c00000{bottom:810.693333pt;}
.y108e_c00000{bottom:810.853333pt;}
.y1303_c00000{bottom:811.013333pt;}
.y1268_c00000{bottom:811.160000pt;}
.y31a_c00000{bottom:811.173333pt;}
.y1238_c00000{bottom:811.813333pt;}
.y12b_c00000{bottom:812.773333pt;}
.y2dc_c00000{bottom:812.933333pt;}
.ydf5_c00000{bottom:813.093333pt;}
.y350_c00000{bottom:813.253333pt;}
.y16e_c00000{bottom:814.213333pt;}
.y2ab_c00000{bottom:814.373333pt;}
.y66b_c00000{bottom:814.533333pt;}
.ya16_c00000{bottom:814.680000pt;}
.yc4c_c00000{bottom:814.693333pt;}
.yb45_c00000{bottom:814.853333pt;}
.y815_c00000{bottom:815.493333pt;}
.y3f1_c00000{bottom:815.973333pt;}
.yc1_c00000{bottom:817.093333pt;}
.y104_c00000{bottom:817.253333pt;}
.y979_c00000{bottom:817.413333pt;}
.y13e2_c00000{bottom:817.573333pt;}
.y1337_c00000{bottom:817.720000pt;}
.y198_c00000{bottom:817.733333pt;}
.y596_c00000{bottom:818.373333pt;}
.y5f4_c00000{bottom:818.693333pt;}
.y3a8_c00000{bottom:819.333333pt;}
.y63_c00000{bottom:819.493333pt;}
.y1e4_c00000{bottom:819.813333pt;}
.y204_c00000{bottom:819.973333pt;}
.ycf1_c00000{bottom:820.133333pt;}
.y11c5_c00000{bottom:820.600000pt;}
.yb9f_c00000{bottom:820.613333pt;}
.y1334_c00000{bottom:820.773333pt;}
.y77a_c00000{bottom:821.093333pt;}
.y858_c00000{bottom:821.253333pt;}
.y69b_c00000{bottom:822.053333pt;}
.ydc_c00000{bottom:822.213333pt;}
.y13fb_c00000{bottom:822.373333pt;}
.y14e_c00000{bottom:822.533333pt;}
.y89a_c00000{bottom:822.693333pt;}
.yb3e_c00000{bottom:822.853333pt;}
.y2f9_c00000{bottom:823.493333pt;}
.y286_c00000{bottom:823.653333pt;}
.yc74_c00000{bottom:823.813333pt;}
.yc65_c00000{bottom:823.973333pt;}
.yd84_c00000{bottom:824.133333pt;}
.y267_c00000{bottom:824.933333pt;}
.y4fb_c00000{bottom:825.093333pt;}
.y1404_c00000{bottom:825.400000pt;}
.yc1e_c00000{bottom:826.053333pt;}
.y4e4_c00000{bottom:826.213333pt;}
.y4a7_c00000{bottom:826.853333pt;}
.y688_c00000{bottom:827.493333pt;}
.yfd7_c00000{bottom:827.640000pt;}
.y453_c00000{bottom:827.653333pt;}
.yf82_c00000{bottom:827.973333pt;}
.y2d_c00000{bottom:828.293333pt;}
.y12f5_c00000{bottom:829.093333pt;}
.y1302_c00000{bottom:829.413333pt;}
.y5bd_c00000{bottom:829.573333pt;}
.y608_c00000{bottom:829.893333pt;}
.y12e3_c00000{bottom:830.053333pt;}
.y8b9_c00000{bottom:830.533333pt;}
.y6e7_c00000{bottom:830.693333pt;}
.y319_c00000{bottom:831.013333pt;}
.y474_c00000{bottom:831.160000pt;}
.y473_c00000{bottom:831.173333pt;}
.y1237_c00000{bottom:831.653333pt;}
.y4c8_c00000{bottom:831.973333pt;}
.yc8d_c00000{bottom:832.613333pt;}
.ydf4_c00000{bottom:832.933333pt;}
.yd03_c00000{bottom:833.093333pt;}
.y13c8_c00000{bottom:833.253333pt;}
.y6b8_c00000{bottom:833.573333pt;}
.y16d_c00000{bottom:834.213333pt;}
.y32f_c00000{bottom:834.373333pt;}
.y422_c00000{bottom:834.533333pt;}
.y669_c00000{bottom:834.693333pt;}
.yae_c00000{bottom:834.853333pt;}
.ycd9_c00000{bottom:835.000000pt;}
.y1070_c00000{bottom:835.493333pt;}
.y7aa_c00000{bottom:835.653333pt;}
.y3f0_c00000{bottom:835.813333pt;}
.y197_c00000{bottom:835.973333pt;}
.y62_c00000{bottom:836.293333pt;}
.y814_c00000{bottom:836.773333pt;}
.yc0_c00000{bottom:836.933333pt;}
.y103_c00000{bottom:837.093333pt;}
.y6d5_c00000{bottom:837.253333pt;}
.y1bc_c00000{bottom:837.573333pt;}
.y22a_c00000{bottom:838.213333pt;}
.y203_c00000{bottom:838.373333pt;}
.y9c5_c00000{bottom:838.533333pt;}
.y541_c00000{bottom:839.493333pt;}
.y3dd_c00000{bottom:839.653333pt;}
.yc55_c00000{bottom:839.813333pt;}
.y66a_c00000{bottom:839.973333pt;}
.y3a7_c00000{bottom:840.613333pt;}
.y687_c00000{bottom:842.053333pt;}
.y7cb_c00000{bottom:842.213333pt;}
.y40e_c00000{bottom:843.333333pt;}
.y12a_c00000{bottom:843.493333pt;}
.y925_c00000{bottom:843.653333pt;}
.yd83_c00000{bottom:843.813333pt;}
.y899_c00000{bottom:843.973333pt;}
.ya36_c00000{bottom:844.133333pt;}
.y1326_c00000{bottom:844.453333pt;}
.y6_c00000{bottom:844.505600pt;}
.y266_c00000{bottom:844.773333pt;}
.y2c2_c00000{bottom:844.933333pt;}
.y4e3_c00000{bottom:846.213333pt;}
.y90_c00000{bottom:846.533333pt;}
.y4a6_c00000{bottom:846.693333pt;}
.y1190_c00000{bottom:847.160000pt;}
.y118f_c00000{bottom:847.173333pt;}
.yb9d_c00000{bottom:847.333333pt;}
.y452_c00000{bottom:847.493333pt;}
.y1301_c00000{bottom:847.813333pt;}
.y1392_c00000{bottom:847.973333pt;}
.y50d_c00000{bottom:848.133333pt;}
.y607_c00000{bottom:848.293333pt;}
.y137a_c00000{bottom:848.453333pt;}
.yd67_c00000{bottom:848.933333pt;}
.y1123_c00000{bottom:849.080000pt;}
.y1122_c00000{bottom:849.093333pt;}
.y114a_c00000{bottom:849.413333pt;}
.y5bc_c00000{bottom:849.573333pt;}
.y6fa_c00000{bottom:850.053333pt;}
.y1207_c00000{bottom:850.213333pt;}
.y318_c00000{bottom:850.853333pt;}
.y1236_c00000{bottom:851.493333pt;}
.y8b8_c00000{bottom:851.813333pt;}
.y995_c00000{bottom:851.973333pt;}
.yc8c_c00000{bottom:852.453333pt;}
.ydb_c00000{bottom:852.613333pt;}
.ydf3_c00000{bottom:852.933333pt;}
.y61_c00000{bottom:853.093333pt;}
.yad_c00000{bottom:853.253333pt;}
.y16c_c00000{bottom:854.053333pt;}
.y2aa_c00000{bottom:854.213333pt;}
.y196_c00000{bottom:854.373333pt;}
.yd8d_c00000{bottom:854.533333pt;}
.y668_c00000{bottom:854.853333pt;}
.y34f_c00000{bottom:855.493333pt;}
.y3ef_c00000{bottom:855.653333pt;}
.y5f2_c00000{bottom:855.960000pt;}
.y1bb_c00000{bottom:855.973333pt;}
.y1e3_c00000{bottom:856.613333pt;}
.ybf_c00000{bottom:856.773333pt;}
.y6d4_c00000{bottom:857.093333pt;}
.y11c4_c00000{bottom:857.400000pt;}
.y11c3_c00000{bottom:857.413333pt;}
.y1067_c00000{bottom:857.880000pt;}
.y813_c00000{bottom:857.893333pt;}
.y595_c00000{bottom:858.053333pt;}
.y12c3_c00000{bottom:858.840000pt;}
.y5fe_c00000{bottom:859.333333pt;}
.yb10_c00000{bottom:859.493333pt;}
.y4c7_c00000{bottom:859.653333pt;}
.y2c_c00000{bottom:861.413333pt;}
.y3a6_c00000{bottom:861.733333pt;}
.ydbd_c00000{bottom:862.040000pt;}
.y14d_c00000{bottom:862.053333pt;}
.y657_c00000{bottom:862.213333pt;}
.y1333_c00000{bottom:862.533333pt;}
.y1325_c00000{bottom:862.853333pt;}
.y129_c00000{bottom:863.173333pt;}
.y285_c00000{bottom:863.333333pt;}
.y637_c00000{bottom:863.493333pt;}
.yd02_c00000{bottom:863.653333pt;}
.y87d_c00000{bottom:863.960000pt;}
.y87b_c00000{bottom:863.973333pt;}
.yfd6_c00000{bottom:864.440000pt;}
.yfd5_c00000{bottom:864.453333pt;}
.y265_c00000{bottom:864.613333pt;}
.y32e_c00000{bottom:864.773333pt;}
.y898_c00000{bottom:865.093333pt;}
.y8d8_c00000{bottom:865.253333pt;}
.y75e_c00000{bottom:865.400000pt;}
.y75d_c00000{bottom:865.413333pt;}
.y13bd_c00000{bottom:865.720000pt;}
.y13bc_c00000{bottom:865.733333pt;}
.y8f_c00000{bottom:865.893333pt;}
.y4e1_c00000{bottom:866.053333pt;}
.y1300_c00000{bottom:866.213333pt;}
.y1361_c00000{bottom:866.373333pt;}
.y4a5_c00000{bottom:866.693333pt;}
.y451_c00000{bottom:867.333333pt;}
.y50c_c00000{bottom:867.973333pt;}
.y472_c00000{bottom:868.613333pt;}
.y5bb_c00000{bottom:869.413333pt;}
.y38a_c00000{bottom:869.893333pt;}
.y60_c00000{bottom:870.053333pt;}
.y124b_c00000{bottom:870.373333pt;}
.y317_c00000{bottom:870.693333pt;}
.y4e2_c00000{bottom:871.333333pt;}
.yc8b_c00000{bottom:872.293333pt;}
.y195_c00000{bottom:872.773333pt;}
.y8b7_c00000{bottom:872.933333pt;}
.y994_c00000{bottom:873.093333pt;}
.y2a9_c00000{bottom:873.893333pt;}
.y421_c00000{bottom:874.053333pt;}
.y2db_c00000{bottom:874.213333pt;}
.yd74_c00000{bottom:874.373333pt;}
.yb44_c00000{bottom:874.853333pt;}
.y1e2_c00000{bottom:875.013333pt;}
.y21a_c00000{bottom:875.173333pt;}
.y3ee_c00000{bottom:875.493333pt;}
.ybe_c00000{bottom:876.613333pt;}
.y34e_c00000{bottom:876.773333pt;}
.y594_c00000{bottom:877.893333pt;}
.y5_c00000{bottom:878.420480pt;}
.yfb2_c00000{bottom:879.493333pt;}
.yb0f_c00000{bottom:880.773333pt;}
.y10fa_c00000{bottom:881.080000pt;}
.y10f9_c00000{bottom:881.093333pt;}
.y1323_c00000{bottom:881.413333pt;}
.yac_c00000{bottom:881.893333pt;}
.y656_c00000{bottom:882.053333pt;}
.yc1d_c00000{bottom:883.000000pt;}
.yc1c_c00000{bottom:883.013333pt;}
.yda_c00000{bottom:883.173333pt;}
.yc64_c00000{bottom:883.333333pt;}
.y636_c00000{bottom:883.493333pt;}
.yb27_c00000{bottom:883.800000pt;}
.yb26_c00000{bottom:883.813333pt;}
.y1267_c00000{bottom:883.973333pt;}
.y12f4_c00000{bottom:884.293333pt;}
.y263_c00000{bottom:884.453333pt;}
.y16b_c00000{bottom:884.613333pt;}
.y508_c00000{bottom:884.773333pt;}
.yf81_c00000{bottom:885.080000pt;}
.y606_c00000{bottom:885.093333pt;}
.y4e0_c00000{bottom:885.893333pt;}
.y1324_c00000{bottom:886.053333pt;}
.y897_c00000{bottom:886.213333pt;}
.yb96_c00000{bottom:886.373333pt;}
.y4a4_c00000{bottom:886.533333pt;}
.y12e8_c00000{bottom:886.840000pt;}
.y5f_c00000{bottom:886.853333pt;}
.y450_c00000{bottom:887.173333pt;}
.y6d3_c00000{bottom:887.653333pt;}
.y6b7_c00000{bottom:887.813333pt;}
.y9f0_c00000{bottom:888.613333pt;}
.y264_c00000{bottom:889.733333pt;}
.y316_c00000{bottom:890.533333pt;}
.y1235_c00000{bottom:891.173333pt;}
.y1121_c00000{bottom:892.120000pt;}
.yc8a_c00000{bottom:892.133333pt;}
.y812_c00000{bottom:892.293333pt;}
.y3a5_c00000{bottom:892.453333pt;}
.yf5f_c00000{bottom:892.773333pt;}
.y1ba_c00000{bottom:892.933333pt;}
.y1e1_c00000{bottom:893.413333pt;}
.y230_c00000{bottom:893.573333pt;}
.y370_c00000{bottom:893.733333pt;}
.y128_c00000{bottom:893.893333pt;}
.y40d_c00000{bottom:894.053333pt;}
.y11c2_c00000{bottom:894.200000pt;}
.y993_c00000{bottom:894.213333pt;}
.y2b_c00000{bottom:894.533333pt;}
.yb43_c00000{bottom:894.853333pt;}
.y4c6_c00000{bottom:895.333333pt;}
.y118e_c00000{bottom:895.653333pt;}
.ybd_c00000{bottom:896.613333pt;}
.y593_c00000{bottom:897.733333pt;}
.y34d_c00000{bottom:897.893333pt;}
.y231_c00000{bottom:898.213333pt;}
.y7a9_c00000{bottom:899.173333pt;}
.y9d8_c00000{bottom:899.333333pt;}
.y1322_c00000{bottom:899.653333pt;}
.y5ba_c00000{bottom:899.813333pt;}
.yab_c00000{bottom:900.293333pt;}
.yfd4_c00000{bottom:901.240000pt;}
.yfd3_c00000{bottom:901.253333pt;}
.ybaa_c00000{bottom:901.893333pt;}
.y655_c00000{bottom:902.053333pt;}
.y12f3_c00000{bottom:902.693333pt;}
.yd9_c00000{bottom:902.853333pt;}
.y2f8_c00000{bottom:903.013333pt;}
.y7e6_c00000{bottom:903.173333pt;}
.yd66_c00000{bottom:903.333333pt;}
.y605_c00000{bottom:903.493333pt;}
.y5e_c00000{bottom:903.813333pt;}
.y192_c00000{bottom:904.293333pt;}
.y16a_c00000{bottom:904.453333pt;}
.y2a8_c00000{bottom:904.613333pt;}
.y43d_c00000{bottom:904.773333pt;}
.y8e_c00000{bottom:904.933333pt;}
.y4df_c00000{bottom:905.733333pt;}
.y857_c00000{bottom:905.893333pt;}
.y471_c00000{bottom:906.200000pt;}
.y470_c00000{bottom:906.213333pt;}
.y4a3_c00000{bottom:906.373333pt;}
.y44f_c00000{bottom:907.013333pt;}
.y924_c00000{bottom:907.173333pt;}
.y896_c00000{bottom:907.333333pt;}
.y9b4_c00000{bottom:907.493333pt;}
.y3c_c00000{bottom:907.653333pt;}
.y6d2_c00000{bottom:908.133333pt;}
.y389_c00000{bottom:909.733333pt;}
.y194_c00000{bottom:910.053333pt;}
.y1234_c00000{bottom:910.213333pt;}
.y315_c00000{bottom:910.373333pt;}
.y1e0_c00000{bottom:911.813333pt;}
.y22f_c00000{bottom:911.973333pt;}
.y877_c00000{bottom:912.293333pt;}
.y4_c00000{bottom:912.335360pt;}
.y8ed_c00000{bottom:912.613333pt;}
.y11ac_c00000{bottom:912.773333pt;}
.y127_c00000{bottom:913.573333pt;}
.y284_c00000{bottom:913.733333pt;}
.yc4b_c00000{bottom:913.893333pt;}
.yce7_c00000{bottom:914.053333pt;}
.y13bb_c00000{bottom:914.213333pt;}
.yb42_c00000{bottom:914.853333pt;}
.y8b6_c00000{bottom:915.173333pt;}
.y992_c00000{bottom:915.333333pt;}
.y509_c00000{bottom:916.293333pt;}
.ybc_c00000{bottom:916.453333pt;}
.y24c_c00000{bottom:917.093333pt;}
.y592_c00000{bottom:917.573333pt;}
.y50b_c00000{bottom:917.893333pt;}
.y1321_c00000{bottom:918.053333pt;}
.y1266_c00000{bottom:918.373333pt;}
.y34c_c00000{bottom:919.013333pt;}
.y75a_c00000{bottom:919.173333pt;}
.ydf2_c00000{bottom:919.333333pt;}
.y5b9_c00000{bottom:919.493333pt;}
.y7a8_c00000{bottom:920.293333pt;}
.y5d_c00000{bottom:920.613333pt;}
.y130f_c00000{bottom:921.093333pt;}
.y1383_c00000{bottom:921.253333pt;}
.y12ff_c00000{bottom:921.413333pt;}
.y136d_c00000{bottom:921.573333pt;}
.y604_c00000{bottom:921.893333pt;}
.y654_c00000{bottom:922.053333pt;}
.y634_c00000{bottom:922.213333pt;}
.y3a4_c00000{bottom:922.853333pt;}
.y9ef_c00000{bottom:923.013333pt;}
.yc63_c00000{bottom:923.173333pt;}
.ye20_c00000{bottom:923.333333pt;}
.y169_c00000{bottom:924.293333pt;}
.y3ed_c00000{bottom:924.453333pt;}
.y4a2_c00000{bottom:926.213333pt;}
.y44e_c00000{bottom:926.853333pt;}
.y635_c00000{bottom:927.493333pt;}
.y2a_c00000{bottom:927.653333pt;}
.y1332_c00000{bottom:927.813333pt;}
.y923_c00000{bottom:928.293333pt;}
.y895_c00000{bottom:928.613333pt;}
.y9b3_c00000{bottom:928.773333pt;}
.y1120_c00000{bottom:928.920000pt;}
.yaa_c00000{bottom:928.933333pt;}
.y10f8_c00000{bottom:929.573333pt;}
.y4c5_c00000{bottom:929.733333pt;}
.y1b8_c00000{bottom:929.893333pt;}
.yc89_c00000{bottom:930.053333pt;}
.y1df_c00000{bottom:930.213333pt;}
.y22e_c00000{bottom:930.373333pt;}
.y11c1_c00000{bottom:931.000000pt;}
.y11c0_c00000{bottom:931.013333pt;}
.yc1b_c00000{bottom:931.320000pt;}
.yc1a_c00000{bottom:931.333333pt;}
.y6d1_c00000{bottom:931.653333pt;}
.yb23_c00000{bottom:932.133333pt;}
.yf5e_c00000{bottom:932.453333pt;}
.y540_c00000{bottom:933.413333pt;}
.yd8_c00000{bottom:933.573333pt;}
.yc4a_c00000{bottom:933.733333pt;}
.yb8d_c00000{bottom:933.893333pt;}
.yb41_c00000{bottom:934.853333pt;}
.y5da_c00000{bottom:935.013333pt;}
.y1b9_c00000{bottom:935.173333pt;}
.y12e7_c00000{bottom:935.333333pt;}
.y191_c00000{bottom:935.813333pt;}
.ybb_c00000{bottom:936.293333pt;}
.y8b5_c00000{bottom:936.453333pt;}
.y991_c00000{bottom:936.613333pt;}
.y5c_c00000{bottom:937.573333pt;}
.yfd2_c00000{bottom:938.040000pt;}
.yfd1_c00000{bottom:938.053333pt;}
.y5b8_c00000{bottom:938.533333pt;}
.yfac_c00000{bottom:939.013333pt;}
.yfc1_c00000{bottom:939.173333pt;}
.y130e_c00000{bottom:939.493333pt;}
.y12f2_c00000{bottom:939.813333pt;}
.y1360_c00000{bottom:939.973333pt;}
.y34b_c00000{bottom:940.133333pt;}
.y4de_c00000{bottom:940.293333pt;}
.y50a_c00000{bottom:940.773333pt;}
.y7a7_c00000{bottom:941.413333pt;}
.y633_c00000{bottom:942.053333pt;}
.yc62_c00000{bottom:943.013333pt;}
.yd82_c00000{bottom:943.173333pt;}
.y46e_c00000{bottom:943.640000pt;}
.y46d_c00000{bottom:943.653333pt;}
.y168_c00000{bottom:944.133333pt;}
.y43c_c00000{bottom:944.293333pt;}
.y125_c00000{bottom:944.453333pt;}
.y4a1_c00000{bottom:946.053333pt;}
.y3_c00000{bottom:946.250240pt;}
.ya9_c00000{bottom:947.333333pt;}
.y7ca_c00000{bottom:947.973333pt;}
.y1b7_c00000{bottom:948.293333pt;}
.y3b_c00000{bottom:948.453333pt;}
.y1de_c00000{bottom:948.613333pt;}
.y22d_c00000{bottom:948.773333pt;}
.y922_c00000{bottom:949.413333pt;}
.y126_c00000{bottom:949.733333pt;}
.y9b2_c00000{bottom:949.893333pt;}
.y314_c00000{bottom:950.213333pt;}
.y1331_c00000{bottom:951.173333pt;}
.y6d0_c00000{bottom:951.653333pt;}
.yf5d_c00000{bottom:952.293333pt;}
.y36f_c00000{bottom:953.253333pt;}
.y283_c00000{bottom:953.413333pt;}
.yc49_c00000{bottom:953.573333pt;}
.yc37_c00000{bottom:953.733333pt;}
.y23c_c00000{bottom:953.893333pt;}
.y5b_c00000{bottom:954.533333pt;}
.y131f_c00000{bottom:954.853333pt;}
.y9e4_c00000{bottom:955.013333pt;}
.y8d_c00000{bottom:955.333333pt;}
.yba_c00000{bottom:956.133333pt;}
.y8b4_c00000{bottom:957.573333pt;}
.y990_c00000{bottom:957.733333pt;}
.y133b_c00000{bottom:957.893333pt;}
.y12f1_c00000{bottom:958.213333pt;}
.y135f_c00000{bottom:958.373333pt;}
.yd25_c00000{bottom:958.853333pt;}
.y1431_c00000{bottom:959.013333pt;}
.y1320_c00000{bottom:960.133333pt;}
.y29_c00000{bottom:960.773333pt;}
.y34a_c00000{bottom:961.413333pt;}
.y4dd_c00000{bottom:961.573333pt;}
.y632_c00000{bottom:962.053333pt;}
.y653_c00000{bottom:962.213333pt;}
.y7a6_c00000{bottom:962.533333pt;}
.yc73_c00000{bottom:962.853333pt;}
.yc88_c00000{bottom:963.013333pt;}
.y13ac_c00000{bottom:963.493333pt;}
.y167_c00000{bottom:963.973333pt;}
.yd7_c00000{bottom:964.133333pt;}
.y40c_c00000{bottom:964.293333pt;}
.y4a0_c00000{bottom:965.893333pt;}
.y1dd_c00000{bottom:967.013333pt;}
.y22c_c00000{bottom:967.173333pt;}
.y686_c00000{bottom:967.333333pt;}
.y53f_c00000{bottom:968.933333pt;}
.y849_c00000{bottom:969.093333pt;}
.y6f9_c00000{bottom:969.253333pt;}
.y193_c00000{bottom:969.413333pt;}
.y921_c00000{bottom:970.533333pt;}
.y313_c00000{bottom:970.853333pt;}
.y9b1_c00000{bottom:971.013333pt;}
.y5a_c00000{bottom:971.333333pt;}
.y8c_c00000{bottom:972.133333pt;}
.y3a3_c00000{bottom:973.093333pt;}
.y131e_c00000{bottom:973.253333pt;}
.yc36_c00000{bottom:973.413333pt;}
.yc61_c00000{bottom:973.573333pt;}
.y113b_c00000{bottom:975.653333pt;}
.y1107_c00000{bottom:976.133333pt;}
.ya8_c00000{bottom:976.293333pt;}
.y12ef_c00000{bottom:976.613333pt;}
.y136c_c00000{bottom:976.773333pt;}
.y759_c00000{bottom:977.093333pt;}
.y6b6_c00000{bottom:978.053333pt;}
.ya54_c00000{bottom:978.693333pt;}
.y98f_c00000{bottom:978.853333pt;}
.y2_c00000{bottom:980.165120pt;}
.y1066_c00000{bottom:980.293333pt;}
.y46a_c00000{bottom:981.093333pt;}
.y7a5_c00000{bottom:981.573333pt;}
.y12f0_c00000{bottom:981.893333pt;}
.y685_c00000{bottom:982.053333pt;}
.y631_c00000{bottom:982.213333pt;}
.y349_c00000{bottom:982.533333pt;}
.y4dc_c00000{bottom:982.693333pt;}
.yd6_c00000{bottom:983.813333pt;}
.y124_c00000{bottom:983.973333pt;}
.y36e_c00000{bottom:984.133333pt;}
.y49f_c00000{bottom:984.933333pt;}
.y1dc_c00000{bottom:985.413333pt;}
.y1b6_c00000{bottom:985.573333pt;}
.y59_c00000{bottom:988.293333pt;}
.y5aa_c00000{bottom:988.773333pt;}
.y3a_c00000{bottom:989.093333pt;}
.y920_c00000{bottom:989.573333pt;}
.ycc6_c00000{bottom:991.173333pt;}
.y894_c00000{bottom:991.973333pt;}
.y971_c00000{bottom:992.133333pt;}
.yc35_c00000{bottom:993.253333pt;}
.yc72_c00000{bottom:993.413333pt;}
.y28_c00000{bottom:993.573333pt;}
.y12ee_c00000{bottom:995.013333pt;}
.y1357_c00000{bottom:995.173333pt;}
.y978_c00000{bottom:996.773333pt;}
.yb9_c00000{bottom:996.933333pt;}
.y969_c00000{bottom:997.253333pt;}
.y972_c00000{bottom:997.413333pt;}
.y312_c00000{bottom:998.533333pt;}
.yc87_c00000{bottom:998.693333pt;}
.y7a4_c00000{bottom:1001.413333pt;}
.y684_c00000{bottom:1002.053333pt;}
.y652_c00000{bottom:1002.213333pt;}
.y630_c00000{bottom:1002.373333pt;}
.yd5_c00000{bottom:1003.653333pt;}
.y1db_c00000{bottom:1003.813333pt;}
.y1b5_c00000{bottom:1003.973333pt;}
.y58_c00000{bottom:1005.120000pt;}
.yc19_c00000{bottom:1005.440000pt;}
.y876_c00000{bottom:1008.160000pt;}
.y388_c00000{bottom:1008.960000pt;}
.y91f_c00000{bottom:1010.880000pt;}
.ycc5_c00000{bottom:1011.040000pt;}
.y893_c00000{bottom:1013.280000pt;}
.y970_c00000{bottom:1013.440000pt;}
.y1356_c00000{bottom:1013.600000pt;}
.y1_c00000{bottom:1014.080000pt;}
.yf70_c00000{bottom:1014.400000pt;}
.yb8c_c00000{bottom:1018.560000pt;}
.y219_c00000{bottom:1043.840000pt;}
.y8b3_c00000{bottom:1044.160000pt;}
.y1064_c00000{bottom:1061.553333pt;}
.y102_c00000{bottom:1061.920000pt;}
.h133_c00000{height:10.400000pt;}
.haa_c00000{height:10.560000pt;}
.h60_c00000{height:12.800000pt;}
.h189_c00000{height:14.080000pt;}
.h100_c00000{height:14.560000pt;}
.h17f_c00000{height:14.580000pt;}
.h16d_c00000{height:14.720000pt;}
.hf7_c00000{height:14.880000pt;}
.h5a_c00000{height:16.000000pt;}
.h42_c00000{height:16.160000pt;}
.h117_c00000{height:16.480000pt;}
.h12f_c00000{height:16.800000pt;}
.h101_c00000{height:17.120000pt;}
.hc0_c00000{height:17.280000pt;}
.h91_c00000{height:17.440000pt;}
.h7d_c00000{height:17.760000pt;}
.h18e_c00000{height:17.780000pt;}
.h111_c00000{height:17.920000pt;}
.h12c_c00000{height:18.240000pt;}
.h7a_c00000{height:18.386667pt;}
.h57_c00000{height:18.400000pt;}
.h5e_c00000{height:18.560000pt;}
.hbf_c00000{height:18.720000pt;}
.h11b_c00000{height:18.880000pt;}
.h7f_c00000{height:19.040000pt;}
.h9c_c00000{height:19.200000pt;}
.hd0_c00000{height:19.360000pt;}
.h97_c00000{height:19.520000pt;}
.h17d_c00000{height:19.680000pt;}
.hef_c00000{height:19.840000pt;}
.h6c_c00000{height:20.000000pt;}
.hf4_c00000{height:20.020000pt;}
.h86_c00000{height:20.160000pt;}
.h1a1_c00000{height:20.480000pt;}
.h11c_c00000{height:20.640000pt;}
.h134_c00000{height:20.800000pt;}
.h106_c00000{height:20.960000pt;}
.h5c_c00000{height:21.120000pt;}
.h56_c00000{height:21.280000pt;}
.h99_c00000{height:21.440000pt;}
.h75_c00000{height:21.600000pt;}
.h12a_c00000{height:21.760000pt;}
.h9e_c00000{height:21.920000pt;}
.h18a_c00000{height:21.960000pt;}
.ha0_c00000{height:22.080000pt;}
.h180_c00000{height:22.100000pt;}
.hb8_c00000{height:22.240000pt;}
.he2_c00000{height:22.400000pt;}
.hce_c00000{height:22.560000pt;}
.h132_c00000{height:22.720000pt;}
.hc7_c00000{height:22.866667pt;}
.hc4_c00000{height:22.880000pt;}
.hc5_c00000{height:22.906667pt;}
.hc6_c00000{height:23.026667pt;}
.h72_c00000{height:23.040000pt;}
.h10a_c00000{height:23.080000pt;}
.h71_c00000{height:23.200000pt;}
.hc8_c00000{height:23.346667pt;}
.h120_c00000{height:23.360000pt;}
.h183_c00000{height:23.506667pt;}
.h182_c00000{height:23.520000pt;}
.h15c_c00000{height:23.680000pt;}
.h82_c00000{height:24.000000pt;}
.h46_c00000{height:24.320000pt;}
.h44_c00000{height:24.480000pt;}
.ha4_c00000{height:24.500000pt;}
.h47_c00000{height:24.640000pt;}
.hcd_c00000{height:24.680000pt;}
.h190_c00000{height:24.800000pt;}
.h149_c00000{height:24.960000pt;}
.h70_c00000{height:25.120000pt;}
.h165_c00000{height:25.480000pt;}
.h18f_c00000{height:25.760000pt;}
.h187_c00000{height:26.080000pt;}
.h22_c00000{height:26.206875pt;}
.hab_c00000{height:26.240000pt;}
.hb1_c00000{height:26.400000pt;}
.h94_c00000{height:26.560000pt;}
.ha7_c00000{height:26.706667pt;}
.h121_c00000{height:26.720000pt;}
.h12d_c00000{height:26.880000pt;}
.h12e_c00000{height:26.900000pt;}
.h7b_c00000{height:27.520000pt;}
.h108_c00000{height:27.540000pt;}
.ha5_c00000{height:27.666667pt;}
.h92_c00000{height:27.840000pt;}
.hbe_c00000{height:28.000000pt;}
.ha6_c00000{height:28.146667pt;}
.h2f_c00000{height:28.148125pt;}
.h107_c00000{height:28.160000pt;}
.h9b_c00000{height:28.320000pt;}
.h155_c00000{height:28.480000pt;}
.h32_c00000{height:28.640000pt;}
.h6f_c00000{height:28.660000pt;}
.hbd_c00000{height:28.800000pt;}
.h15b_c00000{height:28.840000pt;}
.h19b_c00000{height:28.960000pt;}
.h197_c00000{height:29.440000pt;}
.hc1_c00000{height:29.600000pt;}
.h160_c00000{height:29.620000pt;}
.hc3_c00000{height:29.760000pt;}
.h19f_c00000{height:29.920000pt;}
.hc2_c00000{height:30.080000pt;}
.hec_c00000{height:30.240000pt;}
.h13d_c00000{height:30.400000pt;}
.h53_c00000{height:30.560000pt;}
.h124_c00000{height:30.720000pt;}
.h10b_c00000{height:30.760000pt;}
.h128_c00000{height:30.880000pt;}
.h140_c00000{height:30.898125pt;}
.h6d_c00000{height:30.900000pt;}
.hac_c00000{height:31.040000pt;}
.h14c_c00000{height:31.060000pt;}
.h10e_c00000{height:31.200000pt;}
.hb9_c00000{height:31.360000pt;}
.h11e_c00000{height:31.380000pt;}
.h196_c00000{height:31.540000pt;}
.h10d_c00000{height:31.680000pt;}
.h10c_c00000{height:31.880000pt;}
.h8b_c00000{height:32.000000pt;}
.h15e_c00000{height:32.040000pt;}
.h13e_c00000{height:32.160000pt;}
.h3e_c00000{height:32.306667pt;}
.h3c_c00000{height:32.316000pt;}
.h3d_c00000{height:32.320000pt;}
.h3a_c00000{height:32.346667pt;}
.h3b_c00000{height:32.466667pt;}
.h40_c00000{height:32.472000pt;}
.h39_c00000{height:32.476000pt;}
.h37_c00000{height:32.480000pt;}
.h41_c00000{height:32.500000pt;}
.h7c_c00000{height:32.640000pt;}
.hd1_c00000{height:32.800000pt;}
.hf8_c00000{height:32.820000pt;}
.hf0_c00000{height:32.840000pt;}
.h98_c00000{height:33.120000pt;}
.h9a_c00000{height:33.280000pt;}
.h115_c00000{height:33.440000pt;}
.h5f_c00000{height:33.600000pt;}
.h10f_c00000{height:33.760000pt;}
.hd9_c00000{height:33.920000pt;}
.hb2_c00000{height:34.080000pt;}
.h113_c00000{height:34.100000pt;}
.h169_c00000{height:34.240000pt;}
.h1a2_c00000{height:34.260000pt;}
.h16b_c00000{height:34.386667pt;}
.h16a_c00000{height:34.546667pt;}
.h7e_c00000{height:34.560000pt;}
.h199_c00000{height:34.720000pt;}
.h19e_c00000{height:34.740000pt;}
.he4_c00000{height:34.880000pt;}
.h5d_c00000{height:35.040000pt;}
.h34_c00000{height:35.060000pt;}
.h76_c00000{height:35.080000pt;}
.h5b_c00000{height:35.380000pt;}
.haf_c00000{height:35.520000pt;}
.hb3_c00000{height:35.540000pt;}
.h48_c00000{height:35.680000pt;}
.h49_c00000{height:35.840000pt;}
.h176_c00000{height:36.000000pt;}
.h129_c00000{height:36.160000pt;}
.h80_c00000{height:36.320000pt;}
.h110_c00000{height:36.398438pt;}
.hf1_c00000{height:36.626667pt;}
.hf2_c00000{height:36.632000pt;}
.h131_c00000{height:36.636000pt;}
.hf3_c00000{height:36.640000pt;}
.h2b_c00000{height:36.786667pt;}
.h2c_c00000{height:36.792000pt;}
.h77_c00000{height:36.796000pt;}
.h2d_c00000{height:36.800000pt;}
.hc9_c00000{height:36.818667pt;}
.h2e_c00000{height:36.820000pt;}
.h2a_c00000{height:36.826667pt;}
.h78_c00000{height:36.832000pt;}
.h79_c00000{height:36.840000pt;}
.h1b_c00000{height:36.875520pt;}
.h156_c00000{height:36.960000pt;}
.h84_c00000{height:37.120000pt;}
.h8e_c00000{height:37.160000pt;}
.hb5_c00000{height:37.280000pt;}
.hb7_c00000{height:37.960000pt;}
.he1_c00000{height:38.080000pt;}
.h1d_c00000{height:38.336562pt;}
.h14e_c00000{height:38.420000pt;}
.h1a_c00000{height:38.441250pt;}
.had_c00000{height:38.560000pt;}
.h6e_c00000{height:38.720000pt;}
.h154_c00000{height:39.040000pt;}
.h29_c00000{height:39.132500pt;}
.h2_c00000{height:39.243750pt;}
.h8c_c00000{height:39.840000pt;}
.h161_c00000{height:40.000000pt;}
.h122_c00000{height:40.160000pt;}
.h11f_c00000{height:40.320000pt;}
.h30_c00000{height:40.911250pt;}
.h73_c00000{height:40.960000pt;}
.h85_c00000{height:41.120000pt;}
.h93_c00000{height:41.440000pt;}
.h114_c00000{height:41.600000pt;}
.h184_c00000{height:41.746667pt;}
.h191_c00000{height:41.760000pt;}
.h181_c00000{height:41.780000pt;}
.h14b_c00000{height:42.080000pt;}
.ha9_c00000{height:42.240000pt;}
.he0_c00000{height:42.400000pt;}
.h18_c00000{height:42.722500pt;}
.h143_c00000{height:42.866667pt;}
.h141_c00000{height:42.872000pt;}
.h148_c00000{height:42.876000pt;}
.h142_c00000{height:42.880000pt;}
.hd4_c00000{height:42.900000pt;}
.h145_c00000{height:43.026667pt;}
.h144_c00000{height:43.032000pt;}
.h58_c00000{height:43.040000pt;}
.h147_c00000{height:43.058667pt;}
.h146_c00000{height:43.060000pt;}
.h18b_c00000{height:43.360000pt;}
.ha2_c00000{height:43.400000pt;}
.h119_c00000{height:43.840000pt;}
.h6b_c00000{height:44.000000pt;}
.h195_c00000{height:44.020000pt;}
.hd6_c00000{height:44.160000pt;}
.h14_c00000{height:44.468750pt;}
.hae_c00000{height:44.480000pt;}
.h95_c00000{height:44.640000pt;}
.h8_c00000{height:44.648750pt;}
.hfe_c00000{height:44.660000pt;}
.h8d_c00000{height:45.120000pt;}
.h90_c00000{height:45.440000pt;}
.hd5_c00000{height:45.460000pt;}
.hee_c00000{height:45.600000pt;}
.hdf_c00000{height:45.920000pt;}
.h74_c00000{height:45.940000pt;}
.h173_c00000{height:46.080000pt;}
.h16e_c00000{height:46.240000pt;}
.h18d_c00000{height:46.260000pt;}
.hfc_c00000{height:46.400000pt;}
.h130_c00000{height:46.560000pt;}
.h64_c00000{height:46.562500pt;}
.h151_c00000{height:46.593750pt;}
.hca_c00000{height:46.720000pt;}
.hb6_c00000{height:46.880000pt;}
.h15d_c00000{height:46.900000pt;}
.h126_c00000{height:47.040000pt;}
.h16c_c00000{height:47.060000pt;}
.h7_c00000{height:47.109375pt;}
.h166_c00000{height:47.200000pt;}
.h81_c00000{height:47.360000pt;}
.hff_c00000{height:47.380000pt;}
.h26_c00000{height:47.465625pt;}
.h33_c00000{height:47.491563pt;}
.h55_c00000{height:47.621250pt;}
.h88_c00000{height:47.680000pt;}
.h105_c00000{height:47.700000pt;}
.h45_c00000{height:47.958438pt;}
.h137_c00000{height:48.000000pt;}
.h83_c00000{height:48.020000pt;}
.ha3_c00000{height:48.040000pt;}
.h28_c00000{height:48.062188pt;}
.h135_c00000{height:48.160000pt;}
.h65_c00000{height:48.306667pt;}
.h66_c00000{height:48.312000pt;}
.h67_c00000{height:48.320000pt;}
.h9d_c00000{height:48.466667pt;}
.hba_c00000{height:48.472000pt;}
.hbb_c00000{height:48.480000pt;}
.h3f_c00000{height:48.484480pt;}
.h153_c00000{height:48.640000pt;}
.h13f_c00000{height:48.800000pt;}
.h17c_c00000{height:48.820000pt;}
.hf9_c00000{height:48.960000pt;}
.h116_c00000{height:49.120000pt;}
.h125_c00000{height:49.280000pt;}
.hfa_c00000{height:49.440000pt;}
.h1a3_c00000{height:49.460000pt;}
.h138_c00000{height:49.760000pt;}
.h127_c00000{height:50.080000pt;}
.hcc_c00000{height:50.400000pt;}
.h9f_c00000{height:50.490000pt;}
.h192_c00000{height:50.560000pt;}
.h11d_c00000{height:50.720000pt;}
.hdd_c00000{height:50.740000pt;}
.hdb_c00000{height:50.880000pt;}
.h35_c00000{height:51.040000pt;}
.h172_c00000{height:51.200000pt;}
.hcf_c00000{height:51.360000pt;}
.h168_c00000{height:51.520000pt;}
.h174_c00000{height:51.680000pt;}
.h43_c00000{height:51.771250pt;}
.h118_c00000{height:52.000000pt;}
.h89_c00000{height:52.160000pt;}
.h8f_c00000{height:52.520000pt;}
.h13_c00000{height:52.785000pt;}
.h109_c00000{height:52.800000pt;}
.h16f_c00000{height:53.120000pt;}
.h24_c00000{height:53.145938pt;}
.h12_c00000{height:53.158750pt;}
.h4e_c00000{height:53.273750pt;}
.h87_c00000{height:53.600000pt;}
.h50_c00000{height:53.618667pt;}
.h51_c00000{height:53.620000pt;}
.h4a_c00000{height:53.746667pt;}
.h4c_c00000{height:53.752000pt;}
.h4d_c00000{height:53.760000pt;}
.h38_c00000{height:53.846250pt;}
.h1a0_c00000{height:53.940000pt;}
.hd2_c00000{height:54.080000pt;}
.h17b_c00000{height:54.100000pt;}
.hde_c00000{height:54.120000pt;}
.h19c_c00000{height:54.900000pt;}
.he5_c00000{height:55.040000pt;}
.h15a_c00000{height:55.196000pt;}
.h159_c00000{height:55.200000pt;}
.h11a_c00000{height:55.240000pt;}
.h3_c00000{height:55.275000pt;}
.h136_c00000{height:55.360000pt;}
.h19a_c00000{height:55.520000pt;}
.h139_c00000{height:55.840000pt;}
.h4_c00000{height:55.867500pt;}
.hda_c00000{height:56.480000pt;}
.h63_c00000{height:56.489062pt;}
.h1c_c00000{height:56.679040pt;}
.h68_c00000{height:56.946667pt;}
.h112_c00000{height:57.106667pt;}
.h1e_c00000{height:57.218750pt;}
.h16_c00000{height:57.375000pt;}
.h15_c00000{height:57.605625pt;}
.h17_c00000{height:57.781250pt;}
.h6_c00000{height:57.787500pt;}
.h5_c00000{height:57.800300pt;}
.h17e_c00000{height:57.906250pt;}
.h170_c00000{height:57.920000pt;}
.ha8_c00000{height:58.066667pt;}
.h103_c00000{height:58.080000pt;}
.h188_c00000{height:58.560000pt;}
.h102_c00000{height:59.040000pt;}
.hed_c00000{height:59.200000pt;}
.hbc_c00000{height:59.360000pt;}
.h19d_c00000{height:59.520000pt;}
.h54_c00000{height:59.561250pt;}
.h175_c00000{height:59.680000pt;}
.h104_c00000{height:59.840000pt;}
.h167_c00000{height:60.000000pt;}
.h171_c00000{height:60.160000pt;}
.he8_c00000{height:60.480000pt;}
.h185_c00000{height:60.498667pt;}
.h186_c00000{height:60.500000pt;}
.hfb_c00000{height:60.800000pt;}
.heb_c00000{height:60.960000pt;}
.he7_c00000{height:61.120000pt;}
.hcb_c00000{height:61.410000pt;}
.h61_c00000{height:61.845000pt;}
.h158_c00000{height:61.920000pt;}
.h13b_c00000{height:61.940000pt;}
.h13a_c00000{height:62.580000pt;}
.h13c_c00000{height:62.720000pt;}
.hd7_c00000{height:62.880000pt;}
.h164_c00000{height:63.040000pt;}
.hd3_c00000{height:63.220000pt;}
.h162_c00000{height:63.680000pt;}
.hb0_c00000{height:63.840000pt;}
.ha1_c00000{height:64.160000pt;}
.hf6_c00000{height:64.320000pt;}
.h23_c00000{height:64.496250pt;}
.hb4_c00000{height:64.500000pt;}
.hfd_c00000{height:64.660000pt;}
.h163_c00000{height:64.800000pt;}
.h4f_c00000{height:65.586667pt;}
.h12b_c00000{height:65.600000pt;}
.h15f_c00000{height:65.760000pt;}
.hd8_c00000{height:66.080000pt;}
.h8a_c00000{height:66.720000pt;}
.h21_c00000{height:66.750000pt;}
.h4b_c00000{height:66.945937pt;}
.h20_c00000{height:67.128750pt;}
.h1f_c00000{height:67.604062pt;}
.h96_c00000{height:67.680000pt;}
.hdc_c00000{height:67.700000pt;}
.hf5_c00000{height:67.840000pt;}
.h194_c00000{height:68.146667pt;}
.h152_c00000{height:68.180000pt;}
.h62_c00000{height:68.306667pt;}
.h198_c00000{height:68.320000pt;}
.h69_c00000{height:68.338667pt;}
.h6a_c00000{height:68.340000pt;}
.h18c_c00000{height:68.800000pt;}
.h36_c00000{height:68.906250pt;}
.h178_c00000{height:71.040000pt;}
.hc_c00000{height:73.480000pt;}
.h59_c00000{height:73.760000pt;}
.h27_c00000{height:76.059375pt;}
.h150_c00000{height:76.308750pt;}
.h25_c00000{height:76.849063pt;}
.h179_c00000{height:76.960000pt;}
.h17a_c00000{height:77.440000pt;}
.he9_c00000{height:77.760000pt;}
.h14d_c00000{height:77.920000pt;}
.h52_c00000{height:78.097500pt;}
.h123_c00000{height:79.520000pt;}
.h193_c00000{height:79.860000pt;}
.h177_c00000{height:80.640000pt;}
.he6_c00000{height:81.780000pt;}
.h11_c00000{height:82.687500pt;}
.h31_c00000{height:86.062500pt;}
.h14a_c00000{height:88.777500pt;}
.hea_c00000{height:89.920000pt;}
.h10_c00000{height:91.520000pt;}
.h157_c00000{height:94.400000pt;}
.he3_c00000{height:94.720000pt;}
.h9_c00000{height:95.503125pt;}
.hd_c00000{height:95.555312pt;}
.ha_c00000{height:96.703437pt;}
.he_c00000{height:99.389062pt;}
.hf_c00000{height:106.640625pt;}
.hb_c00000{height:114.375000pt;}
.h14f_c00000{height:133.440000pt;}
.h19_c00000{height:1122.546667pt;}
.h0_c00000{height:1122.560000pt;}
.h1_c00000{height:1122.666667pt;}
.w83_c00000{width:19.200000pt;}
.wa5_c00000{width:19.220000pt;}
.w48_c00000{width:22.400000pt;}
.w3f_c00000{width:24.952000pt;}
.w200_c00000{width:27.986667pt;}
.we4_c00000{width:27.992000pt;}
.w157_c00000{width:27.996000pt;}
.w158_c00000{width:28.000000pt;}
.w128_c00000{width:28.320000pt;}
.we6_c00000{width:28.480000pt;}
.w41_c00000{width:28.992000pt;}
.w44_c00000{width:29.120000pt;}
.w80_c00000{width:35.520000pt;}
.w22c_c00000{width:37.436000pt;}
.w1a0_c00000{width:37.440000pt;}
.w17b_c00000{width:44.956000pt;}
.w17c_c00000{width:44.960000pt;}
.w1d4_c00000{width:46.880000pt;}
.w4_c00000{width:49.920000pt;}
.wa3_c00000{width:55.192000pt;}
.w6_c00000{width:56.146667pt;}
.w7_c00000{width:56.152000pt;}
.w8_c00000{width:56.160000pt;}
.w11b_c00000{width:58.400000pt;}
.w145_c00000{width:72.640000pt;}
.w1eb_c00000{width:73.620000pt;}
.w10d_c00000{width:75.040000pt;}
.w117_c00000{width:75.840000pt;}
.w1c3_c00000{width:83.040000pt;}
.wd3_c00000{width:86.240000pt;}
.w16a_c00000{width:86.420000pt;}
.wcb_c00000{width:90.880000pt;}
.w1e5_c00000{width:90.900000pt;}
.w13_c00000{width:91.506667pt;}
.w1c2_c00000{width:91.700000pt;}
.wc6_c00000{width:93.920000pt;}
.w1ba_c00000{width:95.060000pt;}
.w93_c00000{width:96.640000pt;}
.w1c1_c00000{width:97.120000pt;}
.wcf_c00000{width:100.340000pt;}
.w1ea_c00000{width:100.480000pt;}
.w217_c00000{width:101.920000pt;}
.w1c4_c00000{width:102.440000pt;}
.wf8_c00000{width:104.160000pt;}
.w91_c00000{width:104.640000pt;}
.w1bc_c00000{width:105.640000pt;}
.w101_c00000{width:107.520000pt;}
.w169_c00000{width:108.160000pt;}
.w213_c00000{width:109.140000pt;}
.wd0_c00000{width:109.920000pt;}
.wf_c00000{width:109.938667pt;}
.we_c00000{width:110.546667pt;}
.w244_c00000{width:112.320000pt;}
.w245_c00000{width:112.340000pt;}
.w1bb_c00000{width:114.560000pt;}
.w1bd_c00000{width:115.220000pt;}
.wf9_c00000{width:116.000000pt;}
.wd6_c00000{width:119.540000pt;}
.w1b3_c00000{width:119.720000pt;}
.w137_c00000{width:120.000000pt;}
.w220_c00000{width:120.480000pt;}
.w1b4_c00000{width:121.120000pt;}
.wc5_c00000{width:122.100000pt;}
.w102_c00000{width:122.260000pt;}
.w1c9_c00000{width:122.560000pt;}
.w1e6_c00000{width:122.880000pt;}
.wb6_c00000{width:124.640000pt;}
.w109_c00000{width:125.620000pt;}
.w16f_c00000{width:126.420000pt;}
.w165_c00000{width:126.560000pt;}
.w1b8_c00000{width:128.480000pt;}
.w100_c00000{width:128.660000pt;}
.w90_c00000{width:129.160000pt;}
.wa7_c00000{width:129.280000pt;}
.wba_c00000{width:129.600000pt;}
.w50_c00000{width:129.620000pt;}
.w1d6_c00000{width:130.080000pt;}
.wee_c00000{width:130.560000pt;}
.w1fa_c00000{width:132.480000pt;}
.w1a8_c00000{width:133.453333pt;}
.w1d2_c00000{width:134.573333pt;}
.w197_c00000{width:136.160000pt;}
.w19e_c00000{width:136.800000pt;}
.w142_c00000{width:138.266667pt;}
.w92_c00000{width:139.066667pt;}
.w226_c00000{width:139.226667pt;}
.wb7_c00000{width:140.493333pt;}
.w240_c00000{width:140.640000pt;}
.w16d_c00000{width:141.280000pt;}
.w12f_c00000{width:141.306667pt;}
.w1b5_c00000{width:142.413333pt;}
.w14c_c00000{width:144.000000pt;}
.wac_c00000{width:144.026667pt;}
.w189_c00000{width:144.346667pt;}
.w227_c00000{width:144.480000pt;}
.w1f1_c00000{width:147.226667pt;}
.w6b_c00000{width:147.706667pt;}
.wc7_c00000{width:148.026667pt;}
.w13a_c00000{width:149.133333pt;}
.w118_c00000{width:150.560000pt;}
.w1f0_c00000{width:152.040000pt;}
.w1c5_c00000{width:152.186667pt;}
.w1de_c00000{width:153.453333pt;}
.w7b_c00000{width:153.786667pt;}
.w7c_c00000{width:153.800000pt;}
.w212_c00000{width:153.933333pt;}
.w233_c00000{width:154.106667pt;}
.w1ef_c00000{width:154.586667pt;}
.w14b_c00000{width:155.066667pt;}
.w12c_c00000{width:155.533333pt;}
.w20f_c00000{width:155.546667pt;}
.w1c8_c00000{width:155.880000pt;}
.w241_c00000{width:156.813333pt;}
.w13c_c00000{width:157.773333pt;}
.w1e7_c00000{width:158.106667pt;}
.wbc_c00000{width:158.426667pt;}
.w10a_c00000{width:158.586667pt;}
.w238_c00000{width:160.026667pt;}
.w62_c00000{width:160.186667pt;}
.w126_c00000{width:160.346667pt;}
.w105_c00000{width:160.666667pt;}
.w228_c00000{width:161.320000pt;}
.w1fc_c00000{width:161.480000pt;}
.w12e_c00000{width:161.933333pt;}
.wb4_c00000{width:162.266667pt;}
.w115_c00000{width:162.280000pt;}
.wf2_c00000{width:162.413333pt;}
.w191_c00000{width:164.013333pt;}
.w4a_c00000{width:164.026667pt;}
.w1b9_c00000{width:164.813333pt;}
.w193_c00000{width:164.973333pt;}
.wd2_c00000{width:165.306667pt;}
.w1e1_c00000{width:165.453333pt;}
.w204_c00000{width:166.413333pt;}
.w70_c00000{width:166.600000pt;}
.wfa_c00000{width:166.893333pt;}
.w215_c00000{width:167.386667pt;}
.w19f_c00000{width:167.546667pt;}
.w1fd_c00000{width:167.866667pt;}
.w10e_c00000{width:168.493333pt;}
.w23e_c00000{width:170.733333pt;}
.w11f_c00000{width:171.226667pt;}
.w242_c00000{width:171.706667pt;}
.w6d_c00000{width:171.853333pt;}
.w149_c00000{width:172.026667pt;}
.w33_c00000{width:172.186667pt;}
.w18f_c00000{width:173.626667pt;}
.w219_c00000{width:174.106667pt;}
.wdf_c00000{width:174.266667pt;}
.wc1_c00000{width:174.426667pt;}
.w89_c00000{width:174.746667pt;}
.w57_c00000{width:176.026667pt;}
.w103_c00000{width:176.826667pt;}
.w71_c00000{width:176.973333pt;}
.w7a_c00000{width:176.986667pt;}
.w107_c00000{width:177.146667pt;}
.w154_c00000{width:177.946667pt;}
.w23c_c00000{width:178.266667pt;}
.w1b2_c00000{width:178.746667pt;}
.wa8_c00000{width:179.546667pt;}
.w23d_c00000{width:180.186667pt;}
.wb8_c00000{width:180.360000pt;}
.w13b_c00000{width:180.666667pt;}
.w111_c00000{width:180.826667pt;}
.wb1_c00000{width:181.626667pt;}
.w66_c00000{width:182.106667pt;}
.wa6_c00000{width:182.906667pt;}
.w15d_c00000{width:183.080000pt;}
.w23b_c00000{width:183.226667pt;}
.w1aa_c00000{width:183.386667pt;}
.w106_c00000{width:183.400000pt;}
.w82_c00000{width:183.546667pt;}
.w190_c00000{width:183.560000pt;}
.w1e0_c00000{width:183.586667pt;}
.wc9_c00000{width:183.866667pt;}
.wf7_c00000{width:184.346667pt;}
.wbe_c00000{width:184.986667pt;}
.w104_c00000{width:185.146667pt;}
.w120_c00000{width:185.466667pt;}
.wd4_c00000{width:185.480000pt;}
.w231_c00000{width:185.626667pt;}
.w69_c00000{width:185.786667pt;}
.w1ac_c00000{width:186.266667pt;}
.w68_c00000{width:186.746667pt;}
.w1da_c00000{width:186.760000pt;}
.wef_c00000{width:187.853333pt;}
.w65_c00000{width:187.866667pt;}
.w234_c00000{width:189.626667pt;}
.w15b_c00000{width:189.946667pt;}
.w16b_c00000{width:190.120000pt;}
.w8a_c00000{width:191.066667pt;}
.w122_c00000{width:191.213333pt;}
.w21d_c00000{width:191.226667pt;}
.w56_c00000{width:192.026667pt;}
.w155_c00000{width:192.666667pt;}
.w114_c00000{width:192.986667pt;}
.wfe_c00000{width:193.466667pt;}
.w1d0_c00000{width:193.626667pt;}
.w54_c00000{width:193.786667pt;}
.w7d_c00000{width:194.106667pt;}
.we9_c00000{width:194.426667pt;}
.w1a5_c00000{width:194.586667pt;}
.w14e_c00000{width:194.906667pt;}
.w1d9_c00000{width:195.066667pt;}
.w179_c00000{width:196.040000pt;}
.w119_c00000{width:197.186667pt;}
.w116_c00000{width:197.306667pt;}
.w22_c00000{width:197.986667pt;}
.w37_c00000{width:198.106667pt;}
.w1d5_c00000{width:198.626667pt;}
.w201_c00000{width:198.893333pt;}
.w13f_c00000{width:198.906667pt;}
.w168_c00000{width:199.066667pt;}
.w178_c00000{width:200.026667pt;}
.w18e_c00000{width:200.066667pt;}
.w1ed_c00000{width:200.346667pt;}
.w161_c00000{width:201.000000pt;}
.w29_c00000{width:201.306667pt;}
.w113_c00000{width:201.466667pt;}
.w18d_c00000{width:201.933333pt;}
.wbf_c00000{width:202.586667pt;}
.w180_c00000{width:202.600000pt;}
.wd7_c00000{width:204.026667pt;}
.w1c_c00000{width:204.813333pt;}
.w1d_c00000{width:204.826667pt;}
.w1e9_c00000{width:204.866667pt;}
.wae_c00000{width:204.986667pt;}
.w19b_c00000{width:205.133333pt;}
.w15e_c00000{width:205.146667pt;}
.w6e_c00000{width:205.466667pt;}
.w1f7_c00000{width:205.640000pt;}
.w5c_c00000{width:205.786667pt;}
.w97_c00000{width:206.106667pt;}
.w98_c00000{width:206.146667pt;}
.w1dd_c00000{width:206.760000pt;}
.wde_c00000{width:207.066667pt;}
.w5d_c00000{width:207.546667pt;}
.w1db_c00000{width:207.586667pt;}
.w8f_c00000{width:207.706667pt;}
.w3c_c00000{width:208.506667pt;}
.w162_c00000{width:208.666667pt;}
.w138_c00000{width:208.826667pt;}
.w139_c00000{width:208.866667pt;}
.w13d_c00000{width:208.986667pt;}
.w209_c00000{width:209.000000pt;}
.w99_c00000{width:209.146667pt;}
.w1af_c00000{width:209.626667pt;}
.w185_c00000{width:209.800000pt;}
.w1ee_c00000{width:209.960000pt;}
.w95_c00000{width:210.266667pt;}
.w96_c00000{width:210.293333pt;}
.w86_c00000{width:210.586667pt;}
.w8e_c00000{width:210.786667pt;}
.w181_c00000{width:210.906667pt;}
.w1fe_c00000{width:211.266667pt;}
.w12d_c00000{width:211.720000pt;}
.w94_c00000{width:211.866667pt;}
.w4c_c00000{width:212.506667pt;}
.w18a_c00000{width:213.160000pt;}
.wa9_c00000{width:213.786667pt;}
.wdc_c00000{width:214.106667pt;}
.w6f_c00000{width:214.280000pt;}
.w8d_c00000{width:214.426667pt;}
.w79_c00000{width:214.746667pt;}
.w18c_c00000{width:214.906667pt;}
.w7f_c00000{width:215.546667pt;}
.w9b_c00000{width:216.026667pt;}
.w17f_c00000{width:216.186667pt;}
.w133_c00000{width:216.506667pt;}
.w5_c00000{width:216.706667pt;}
.w184_c00000{width:216.826667pt;}
.wc_c00000{width:217.146667pt;}
.w73_c00000{width:217.773333pt;}
.w74_c00000{width:217.786667pt;}
.w22b_c00000{width:218.586667pt;}
.w229_c00000{width:218.600000pt;}
.w176_c00000{width:218.746667pt;}
.w1fb_c00000{width:218.906667pt;}
.w160_c00000{width:219.066667pt;}
.w76_c00000{width:219.226667pt;}
.w1f2_c00000{width:219.546667pt;}
.w1ec_c00000{width:219.706667pt;}
.w192_c00000{width:220.026667pt;}
.w182_c00000{width:220.053333pt;}
.w5b_c00000{width:221.626667pt;}
.w1b0_c00000{width:221.666667pt;}
.we2_c00000{width:222.426667pt;}
.w174_c00000{width:222.466667pt;}
.w202_c00000{width:222.586667pt;}
.w15c_c00000{width:222.906667pt;}
.w1e4_c00000{width:223.240000pt;}
.w1e8_c00000{width:224.026667pt;}
.w206_c00000{width:224.826667pt;}
.w130_c00000{width:224.986667pt;}
.w7e_c00000{width:225.306667pt;}
.w1a6_c00000{width:225.626667pt;}
.w211_c00000{width:226.106667pt;}
.w1dc_c00000{width:227.386667pt;}
.w22e_c00000{width:229.786667pt;}
.wf5_c00000{width:230.426667pt;}
.w20c_c00000{width:230.586667pt;}
.w20e_c00000{width:230.626667pt;}
.w15f_c00000{width:231.866667pt;}
.w3_c00000{width:232.018667pt;}
.w9_c00000{width:232.026667pt;}
.w11d_c00000{width:232.666667pt;}
.w134_c00000{width:233.626667pt;}
.w221_c00000{width:233.933333pt;}
.w223_c00000{width:233.946667pt;}
.w222_c00000{width:233.986667pt;}
.w46_c00000{width:234.466667pt;}
.waf_c00000{width:234.946667pt;}
.w21_c00000{width:235.066667pt;}
.w2a_c00000{width:235.106667pt;}
.we1_c00000{width:236.506667pt;}
.w4d_c00000{width:236.853333pt;}
.w124_c00000{width:236.973333pt;}
.w1cb_c00000{width:237.786667pt;}
.wc3_c00000{width:237.946667pt;}
.wc0_c00000{width:237.960000pt;}
.w52_c00000{width:239.066667pt;}
.w42_c00000{width:239.373333pt;}
.w173_c00000{width:239.546667pt;}
.w1a2_c00000{width:240.026667pt;}
.w45_c00000{width:240.226667pt;}
.w1ca_c00000{width:240.666667pt;}
.wd8_c00000{width:240.706667pt;}
.wc8_c00000{width:240.986667pt;}
.w84_c00000{width:243.053333pt;}
.w1e3_c00000{width:243.066667pt;}
.wce_c00000{width:243.266667pt;}
.w1cf_c00000{width:244.026667pt;}
.w43_c00000{width:244.493333pt;}
.w3a_c00000{width:244.706667pt;}
.w210_c00000{width:244.826667pt;}
.w1b6_c00000{width:245.146667pt;}
.wea_c00000{width:245.466667pt;}
.w1a1_c00000{width:245.813333pt;}
.w20d_c00000{width:246.266667pt;}
.w1df_c00000{width:247.866667pt;}
.w14a_c00000{width:250.120000pt;}
.wbb_c00000{width:250.146667pt;}
.w14d_c00000{width:250.306667pt;}
.wed_c00000{width:250.586667pt;}
.w1d8_c00000{width:251.706667pt;}
.w131_c00000{width:252.066667pt;}
.w5a_c00000{width:252.506667pt;}
.w18b_c00000{width:253.946667pt;}
.wb9_c00000{width:254.466667pt;}
.we7_c00000{width:254.773333pt;}
.we8_c00000{width:255.053333pt;}
.we5_c00000{width:255.066667pt;}
.w15a_c00000{width:255.253333pt;}
.w159_c00000{width:255.266667pt;}
.w1f6_c00000{width:255.906667pt;}
.w31_c00000{width:256.026667pt;}
.w172_c00000{width:257.506667pt;}
.w60_c00000{width:259.426667pt;}
.w1a3_c00000{width:260.026667pt;}
.wa0_c00000{width:261.626667pt;}
.w166_c00000{width:262.426667pt;}
.w1b7_c00000{width:262.626667pt;}
.w17e_c00000{width:263.066667pt;}
.w1f4_c00000{width:263.386667pt;}
.w4e_c00000{width:264.506667pt;}
.w22d_c00000{width:264.693333pt;}
.w1f5_c00000{width:266.106667pt;}
.web_c00000{width:266.466667pt;}
.w87_c00000{width:266.733333pt;}
.w2f_c00000{width:268.026667pt;}
.w235_c00000{width:268.346667pt;}
.w207_c00000{width:270.146667pt;}
.w4f_c00000{width:271.213333pt;}
.w81_c00000{width:271.266667pt;}
.w152_c00000{width:271.426667pt;}
.w40_c00000{width:273.626667pt;}
.wb5_c00000{width:274.466667pt;}
.w151_c00000{width:274.906667pt;}
.w218_c00000{width:275.266667pt;}
.w1e_c00000{width:275.386667pt;}
.waa_c00000{width:275.586667pt;}
.w32_c00000{width:276.386667pt;}
.w225_c00000{width:277.786667pt;}
.wfd_c00000{width:278.426667pt;}
.w5f_c00000{width:281.146667pt;}
.wc4_c00000{width:282.773333pt;}
.w19a_c00000{width:283.546667pt;}
.w123_c00000{width:284.066667pt;}
.w88_c00000{width:284.853333pt;}
.w30_c00000{width:286.106667pt;}
.w9e_c00000{width:286.146667pt;}
.w1c6_c00000{width:286.906667pt;}
.w167_c00000{width:287.586667pt;}
.wa_c00000{width:288.066667pt;}
.w10b_c00000{width:289.506667pt;}
.w2b_c00000{width:290.586667pt;}
.w112_c00000{width:290.946667pt;}
.w51_c00000{width:292.386667pt;}
.w17d_c00000{width:293.013333pt;}
.w2c_c00000{width:293.666667pt;}
.w1ce_c00000{width:293.786667pt;}
.w196_c00000{width:294.146667pt;}
.w34_c00000{width:294.920000pt;}
.w22f_c00000{width:295.266667pt;}
.w9d_c00000{width:295.706667pt;}
.w77_c00000{width:295.746667pt;}
.wfc_c00000{width:297.666667pt;}
.w230_c00000{width:297.946667pt;}
.w5e_c00000{width:298.293333pt;}
.w127_c00000{width:298.466667pt;}
.w78_c00000{width:302.306667pt;}
.w75_c00000{width:302.746667pt;}
.w129_c00000{width:302.773333pt;}
.w26_c00000{width:302.786667pt;}
.w1d7_c00000{width:303.106667pt;}
.wb3_c00000{width:303.586667pt;}
.w6c_c00000{width:303.893333pt;}
.w20b_c00000{width:304.066667pt;}
.w1ab_c00000{width:307.266667pt;}
.w61_c00000{width:308.693333pt;}
.w1cc_c00000{width:309.013333pt;}
.w2d_c00000{width:312.026667pt;}
.w35_c00000{width:313.026667pt;}
.w11c_c00000{width:315.226667pt;}
.w9c_c00000{width:315.266667pt;}
.w146_c00000{width:315.746667pt;}
.we0_c00000{width:316.826667pt;}
.wec_c00000{width:316.866667pt;}
.w1f9_c00000{width:317.306667pt;}
.w224_c00000{width:317.666667pt;}
.wf3_c00000{width:318.466667pt;}
.w8c_c00000{width:318.626667pt;}
.wb0_c00000{width:320.226667pt;}
.w9f_c00000{width:321.013333pt;}
.w135_c00000{width:321.826667pt;}
.w12b_c00000{width:324.866667pt;}
.w23f_c00000{width:326.466667pt;}
.w2e_c00000{width:327.106667pt;}
.w47_c00000{width:328.386667pt;}
.w1f8_c00000{width:330.466667pt;}
.w183_c00000{width:331.586667pt;}
.w246_c00000{width:331.906667pt;}
.w153_c00000{width:332.546667pt;}
.w186_c00000{width:333.026667pt;}
.w187_c00000{width:333.186667pt;}
.w236_c00000{width:334.626667pt;}
.w23a_c00000{width:335.426667pt;}
.w1cd_c00000{width:335.733333pt;}
.w85_c00000{width:336.386667pt;}
.w10_c00000{width:336.853333pt;}
.wd_c00000{width:336.858667pt;}
.w11_c00000{width:336.866667pt;}
.w20a_c00000{width:338.773333pt;}
.w177_c00000{width:339.266667pt;}
.w1d3_c00000{width:339.906667pt;}
.w3d_c00000{width:340.706667pt;}
.wda_c00000{width:341.186667pt;}
.wb_c00000{width:343.893333pt;}
.w205_c00000{width:351.426667pt;}
.wb2_c00000{width:351.586667pt;}
.w1c7_c00000{width:353.186667pt;}
.w148_c00000{width:353.813333pt;}
.w4b_c00000{width:354.146667pt;}
.w14_c00000{width:355.253333pt;}
.w12_c00000{width:355.258667pt;}
.w15_c00000{width:355.266667pt;}
.w195_c00000{width:355.426667pt;}
.wd9_c00000{width:356.546667pt;}
.w17a_c00000{width:357.026667pt;}
.w164_c00000{width:357.826667pt;}
.w203_c00000{width:358.133333pt;}
.w1a7_c00000{width:358.466667pt;}
.w72_c00000{width:358.773333pt;}
.w1b_c00000{width:358.778667pt;}
.w11e_c00000{width:361.026667pt;}
.w20_c00000{width:361.826667pt;}
.w27_c00000{width:361.973333pt;}
.wad_c00000{width:364.546667pt;}
.w248_c00000{width:365.813333pt;}
.w1d1_c00000{width:366.146667pt;}
.w63_c00000{width:366.466667pt;}
.w12a_c00000{width:367.266667pt;}
.w1f_c00000{width:367.733333pt;}
.w175_c00000{width:367.746667pt;}
.w194_c00000{width:368.706667pt;}
.w1a9_c00000{width:371.266667pt;}
.w1a4_c00000{width:372.866667pt;}
.w10c_c00000{width:374.466667pt;}
.w125_c00000{width:374.640000pt;}
.w147_c00000{width:375.426667pt;}
.wab_c00000{width:376.226667pt;}
.w170_c00000{width:378.293333pt;}
.w247_c00000{width:378.626667pt;}
.w17_c00000{width:379.586667pt;}
.w55_c00000{width:380.546667pt;}
.wc2_c00000{width:381.346667pt;}
.w171_c00000{width:383.106667pt;}
.w49_c00000{width:384.066667pt;}
.w1ae_c00000{width:386.466667pt;}
.wd5_c00000{width:387.266667pt;}
.w53_c00000{width:388.546667pt;}
.wa2_c00000{width:390.786667pt;}
.w19d_c00000{width:393.506667pt;}
.w38_c00000{width:393.973333pt;}
.w67_c00000{width:396.693333pt;}
.w1e2_c00000{width:397.346667pt;}
.w8b_c00000{width:399.106667pt;}
.wcc_c00000{width:400.080000pt;}
.w13e_c00000{width:400.226667pt;}
.w64_c00000{width:400.386667pt;}
.w140_c00000{width:401.346667pt;}
.w19c_c00000{width:405.026667pt;}
.w1f3_c00000{width:408.053333pt;}
.wf6_c00000{width:409.986667pt;}
.w6a_c00000{width:411.106667pt;}
.wbd_c00000{width:411.586667pt;}
.wcd_c00000{width:411.906667pt;}
.w156_c00000{width:417.346667pt;}
.w214_c00000{width:418.626667pt;}
.w199_c00000{width:419.760000pt;}
.w16e_c00000{width:419.906667pt;}
.w216_c00000{width:420.386667pt;}
.w9a_c00000{width:421.186667pt;}
.w39_c00000{width:422.306667pt;}
.w24_c00000{width:424.066667pt;}
.wa1_c00000{width:425.346667pt;}
.w21e_c00000{width:431.733333pt;}
.w21c_c00000{width:431.746667pt;}
.w36_c00000{width:433.040000pt;}
.w59_c00000{width:433.186667pt;}
.w141_c00000{width:435.106667pt;}
.w136_c00000{width:437.360000pt;}
.w150_c00000{width:441.040000pt;}
.w19_c00000{width:441.680000pt;}
.wf0_c00000{width:443.120000pt;}
.w18_c00000{width:445.200000pt;}
.wdd_c00000{width:445.520000pt;}
.we3_c00000{width:446.000000pt;}
.w21b_c00000{width:446.640000pt;}
.w16c_c00000{width:447.280000pt;}
.wf4_c00000{width:448.400000pt;}
.wf1_c00000{width:450.480000pt;}
.w1bf_c00000{width:451.280000pt;}
.w1be_c00000{width:452.080000pt;}
.w163_c00000{width:452.240000pt;}
.wff_c00000{width:452.720000pt;}
.w1a_c00000{width:454.320000pt;}
.wfb_c00000{width:454.640000pt;}
.w1c0_c00000{width:454.800000pt;}
.w1b1_c00000{width:457.680000pt;}
.w11a_c00000{width:457.813333pt;}
.w10f_c00000{width:457.840000pt;}
.w1ad_c00000{width:459.920000pt;}
.w237_c00000{width:461.520000pt;}
.w188_c00000{width:462.320000pt;}
.w108_c00000{width:466.960000pt;}
.wca_c00000{width:470.320000pt;}
.w144_c00000{width:470.640000pt;}
.w28_c00000{width:472.560000pt;}
.w121_c00000{width:473.840000pt;}
.w143_c00000{width:474.000000pt;}
.w198_c00000{width:474.160000pt;}
.w21a_c00000{width:480.720000pt;}
.w58_c00000{width:484.560000pt;}
.w23_c00000{width:489.200000pt;}
.wd1_c00000{width:489.520000pt;}
.w132_c00000{width:493.520000pt;}
.wa4_c00000{width:502.800000pt;}
.w1ff_c00000{width:510.320000pt;}
.w3e_c00000{width:514.160000pt;}
.w21f_c00000{width:517.360000pt;}
.w22a_c00000{width:527.760000pt;}
.w25_c00000{width:530.320000pt;}
.w110_c00000{width:530.640000pt;}
.w232_c00000{width:531.946667pt;}
.w243_c00000{width:545.680000pt;}
.w239_c00000{width:546.320000pt;}
.wdb_c00000{width:546.800000pt;}
.w3b_c00000{width:557.360000pt;}
.w208_c00000{width:559.440000pt;}
.w16_c00000{width:563.120000pt;}
.w14f_c00000{width:565.520000pt;}
.w2_c00000{width:793.740000pt;}
.w0_c00000{width:793.760000pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.xa1_c00000{left:0.952000pt;}
.x6f_c00000{left:6.872000pt;}
.xc1_c00000{left:9.112000pt;}
.xa5_c00000{left:11.026667pt;}
.xa8_c00000{left:17.746667pt;}
.xa3_c00000{left:27.186667pt;}
.xc3_c00000{left:28.306667pt;}
.x14f_c00000{left:29.426667pt;}
.xaa_c00000{left:32.946667pt;}
.xa9_c00000{left:42.386667pt;}
.xa6_c00000{left:51.186667pt;}
.xab_c00000{left:52.986667pt;}
.x150_c00000{left:57.746667pt;}
.x1b1_c00000{left:76.800000pt;}
.x145_c00000{left:78.400000pt;}
.x12f_c00000{left:92.520000pt;}
.x126_c00000{left:94.592000pt;}
.x13a_c00000{left:96.520000pt;}
.x146_c00000{left:99.786667pt;}
.x6d_c00000{left:104.032000pt;}
.x12b_c00000{left:107.552000pt;}
.x15f_c00000{left:109.480000pt;}
.x12d_c00000{left:110.912000pt;}
.x17c_c00000{left:112.360000pt;}
.x1_c00000{left:113.440000pt;}
.x121_c00000{left:114.440000pt;}
.xa0_c00000{left:115.400000pt;}
.x107_c00000{left:116.306667pt;}
.x2d_c00000{left:117.792000pt;}
.x1f_c00000{left:118.912000pt;}
.xe9_c00000{left:120.680000pt;}
.x3a_c00000{left:122.112000pt;}
.x8_c00000{left:123.072000pt;}
.x35_c00000{left:124.352000pt;}
.xd6_c00000{left:126.432000pt;}
.x158_c00000{left:127.392000pt;}
.x194_c00000{left:128.512000pt;}
.x3_c00000{left:129.440000pt;}
.xc8_c00000{left:130.752000pt;}
.xb_c00000{left:132.032000pt;}
.x119_c00000{left:133.626667pt;}
.xbf_c00000{left:135.386667pt;}
.x123_c00000{left:136.520000pt;}
.x10_c00000{left:137.466667pt;}
.x112_c00000{left:138.440000pt;}
.x10e_c00000{left:140.360000pt;}
.x68_c00000{left:141.946667pt;}
.x102_c00000{left:144.026667pt;}
.x19a_c00000{left:145.146667pt;}
.x133_c00000{left:147.066667pt;}
.x18f_c00000{left:148.200000pt;}
.xeb_c00000{left:149.146667pt;}
.x16d_c00000{left:150.120000pt;}
.x2b_c00000{left:151.226667pt;}
.x14a_c00000{left:153.446667pt;}
.x1c_c00000{left:154.906667pt;}
.xcb_c00000{left:156.520000pt;}
.xe3_c00000{left:157.926667pt;}
.xc9_c00000{left:160.040000pt;}
.x1b_c00000{left:161.466667pt;}
.x90_c00000{left:163.866667pt;}
.x180_c00000{left:165.000000pt;}
.x92_c00000{left:165.926667pt;}
.x144_c00000{left:167.560000pt;}
.xc0_c00000{left:169.320000pt;}
.x2c_c00000{left:170.266667pt;}
.x76_c00000{left:171.366667pt;}
.x139_c00000{left:172.360000pt;}
.x162_c00000{left:173.926667pt;}
.x9d_c00000{left:175.226667pt;}
.x177_c00000{left:176.200000pt;}
.x93_c00000{left:177.786667pt;}
.x17a_c00000{left:178.760000pt;}
.x1a_c00000{left:179.706667pt;}
.x6a_c00000{left:181.446667pt;}
.x77_c00000{left:183.226667pt;}
.x13c_c00000{left:184.520000pt;}
.x11_c00000{left:185.466667pt;}
.x103_c00000{left:186.440000pt;}
.x193_c00000{left:187.560000pt;}
.x17_c00000{left:188.986667pt;}
.x153_c00000{left:189.946667pt;}
.x63_c00000{left:190.886667pt;}
.x14e_c00000{left:192.006667pt;}
.x6b_c00000{left:193.306667pt;}
.x58_c00000{left:194.406667pt;}
.xec_c00000{left:196.680000pt;}
.x1a3_c00000{left:197.640000pt;}
.x13_c00000{left:198.586667pt;}
.x72_c00000{left:200.026667pt;}
.x135_c00000{left:201.766667pt;}
.x64_c00000{left:202.746667pt;}
.x66_c00000{left:204.166667pt;}
.xc6_c00000{left:205.306667pt;}
.x6_c00000{left:206.586667pt;}
.x7a_c00000{left:207.526667pt;}
.x16_c00000{left:209.466667pt;}
.x114_c00000{left:210.920000pt;}
.x198_c00000{left:212.040000pt;}
.xc_c00000{left:212.986667pt;}
.x134_c00000{left:214.440000pt;}
.x67_c00000{left:216.026667pt;}
.x12_c00000{left:217.466667pt;}
.x106_c00000{left:218.426667pt;}
.x7b_c00000{left:219.386667pt;}
.x166_c00000{left:220.506667pt;}
.x16c_c00000{left:221.786667pt;}
.x16f_c00000{left:222.906667pt;}
.x156_c00000{left:224.346667pt;}
.x65_c00000{left:225.306667pt;}
.x14_c00000{left:226.906667pt;}
.xf3_c00000{left:228.326667pt;}
.x148_c00000{left:229.946667pt;}
.xf7_c00000{left:231.226667pt;}
.x108_c00000{left:232.646667pt;}
.x169_c00000{left:235.386667pt;}
.x10b_c00000{left:236.486667pt;}
.x1b2_c00000{left:237.786667pt;}
.x17e_c00000{left:239.386667pt;}
.x98_c00000{left:240.646667pt;}
.x1b0_c00000{left:241.640000pt;}
.xd7_c00000{left:243.720000pt;}
.xee_c00000{left:245.126667pt;}
.xf4_c00000{left:246.106667pt;}
.x168_c00000{left:247.686667pt;}
.x3d_c00000{left:248.646667pt;}
.x7d_c00000{left:250.246667pt;}
.xfb_c00000{left:251.366667pt;}
.x99_c00000{left:252.506667pt;}
.x1a0_c00000{left:253.786667pt;}
.x94_c00000{left:254.886667pt;}
.xcd_c00000{left:256.026667pt;}
.x143_c00000{left:257.000000pt;}
.xd_c00000{left:258.426667pt;}
.x3e_c00000{left:260.546667pt;}
.x7e_c00000{left:262.146667pt;}
.xa_c00000{left:263.746667pt;}
.x15_c00000{left:264.706667pt;}
.x95_c00000{left:266.786667pt;}
.xfc_c00000{left:269.186667pt;}
.x32_c00000{left:270.786667pt;}
.x6c_c00000{left:272.706667pt;}
.x19_c00000{left:274.146667pt;}
.x4_c00000{left:275.360000pt;}
.x104_c00000{left:277.966667pt;}
.xdf_c00000{left:279.726667pt;}
.x6e_c00000{left:281.166667pt;}
.x130_c00000{left:282.626667pt;}
.x131_c00000{left:284.546667pt;}
.x179_c00000{left:285.506667pt;}
.x178_c00000{left:286.466667pt;}
.x27_c00000{left:287.406667pt;}
.x161_c00000{left:289.986667pt;}
.x115_c00000{left:291.106667pt;}
.x1a8_c00000{left:292.206667pt;}
.x28_c00000{left:293.346667pt;}
.x18a_c00000{left:294.626667pt;}
.x105_c00000{left:295.746667pt;}
.xd8_c00000{left:296.686667pt;}
.x181_c00000{left:298.466667pt;}
.x13d_c00000{left:299.586667pt;}
.x195_c00000{left:301.346667pt;}
.xcc_c00000{left:302.286667pt;}
.x185_c00000{left:303.266667pt;}
.x159_c00000{left:304.206667pt;}
.x18_c00000{left:305.506667pt;}
.x17d_c00000{left:307.426667pt;}
.x47_c00000{left:308.366667pt;}
.x163_c00000{left:309.346667pt;}
.x120_c00000{left:310.946667pt;}
.xac_c00000{left:312.846667pt;}
.xd9_c00000{left:314.466667pt;}
.x14c_c00000{left:315.426667pt;}
.x42_c00000{left:317.506667pt;}
.x12e_c00000{left:318.626667pt;}
.x48_c00000{left:320.226667pt;}
.xc7_c00000{left:321.826667pt;}
.x10a_c00000{left:323.426667pt;}
.xad_c00000{left:324.706667pt;}
.xda_c00000{left:327.426667pt;}
.x2_c00000{left:329.441280pt;}
.x175_c00000{left:331.426667pt;}
.x5f_c00000{left:333.166667pt;}
.x15c_c00000{left:334.946667pt;}
.x74_c00000{left:335.886667pt;}
.x14b_c00000{left:337.646667pt;}
.xff_c00000{left:339.406667pt;}
.x51_c00000{left:340.366667pt;}
.x174_c00000{left:341.666667pt;}
.x165_c00000{left:343.106667pt;}
.x1ac_c00000{left:344.066667pt;}
.x60_c00000{left:345.026667pt;}
.x70_c00000{left:346.786667pt;}
.x75_c00000{left:347.746667pt;}
.x173_c00000{left:349.006667pt;}
.xb4_c00000{left:350.126667pt;}
.x30_c00000{left:351.086667pt;}
.x52_c00000{left:352.226667pt;}
.x176_c00000{left:353.346667pt;}
.xdb_c00000{left:354.446667pt;}
.x9a_c00000{left:355.726667pt;}
.x31_c00000{left:357.026667pt;}
.x188_c00000{left:358.786667pt;}
.xf_c00000{left:359.746667pt;}
.x160_c00000{left:361.006667pt;}
.xb5_c00000{left:361.986667pt;}
.x1a4_c00000{left:362.946667pt;}
.x12a_c00000{left:363.886667pt;}
.x9_c00000{left:365.026667pt;}
.x55_c00000{left:366.766667pt;}
.x19b_c00000{left:368.206667pt;}
.x15b_c00000{left:369.506667pt;}
.xdc_c00000{left:372.226667pt;}
.x11d_c00000{left:373.666667pt;}
.x45_c00000{left:375.246667pt;}
.x124_c00000{left:377.506667pt;}
.x56_c00000{left:378.626667pt;}
.x137_c00000{left:380.066667pt;}
.x118_c00000{left:381.026667pt;}
.x113_c00000{left:382.946667pt;}
.x19f_c00000{left:383.906667pt;}
.xe2_c00000{left:384.866667pt;}
.x196_c00000{left:386.146667pt;}
.x46_c00000{left:387.106667pt;}
.x13e_c00000{left:388.386667pt;}
.x83_c00000{left:389.826667pt;}
.x61_c00000{left:392.046667pt;}
.x43_c00000{left:393.006667pt;}
.x13b_c00000{left:394.946667pt;}
.xbb_c00000{left:395.906667pt;}
.x7_c00000{left:397.026667pt;}
.xc4_c00000{left:399.426667pt;}
.x157_c00000{left:400.846667pt;}
.x1a5_c00000{left:401.826667pt;}
.x62_c00000{left:403.906667pt;}
.x44_c00000{left:404.866667pt;}
.x15a_c00000{left:405.986667pt;}
.x29_c00000{left:406.926667pt;}
.x11c_c00000{left:408.546667pt;}
.xe7_c00000{left:409.826667pt;}
.xd3_c00000{left:411.566667pt;}
.x2a_c00000{left:412.866667pt;}
.x197_c00000{left:414.146667pt;}
.x138_c00000{left:415.586667pt;}
.xca_c00000{left:416.546667pt;}
.xbe_c00000{left:417.646667pt;}
.xf1_c00000{left:419.086667pt;}
.x149_c00000{left:420.386667pt;}
.x1ae_c00000{left:421.346667pt;}
.x53_c00000{left:422.286667pt;}
.x19c_c00000{left:424.226667pt;}
.xf5_c00000{left:425.326667pt;}
.x38_c00000{left:427.086667pt;}
.x4e_c00000{left:428.846667pt;}
.x1a1_c00000{left:430.606667pt;}
.x91_c00000{left:431.726667pt;}
.x154_c00000{left:432.846667pt;}
.x54_c00000{left:434.146667pt;}
.xe4_c00000{left:435.426667pt;}
.xf2_c00000{left:436.893333pt;}
.x1a9_c00000{left:438.013333pt;}
.x39_c00000{left:438.973333pt;}
.x4f_c00000{left:440.733333pt;}
.xf6_c00000{left:443.133333pt;}
.x69_c00000{left:444.393333pt;}
.x18e_c00000{left:446.013333pt;}
.x8c_c00000{left:447.433333pt;}
.x1a2_c00000{left:448.413333pt;}
.x18c_c00000{left:449.533333pt;}
.x155_c00000{left:450.653333pt;}
.x85_c00000{left:451.913333pt;}
.x87_c00000{left:452.873333pt;}
.x101_c00000{left:454.153333pt;}
.xa2_c00000{left:455.146667pt;}
.x21_c00000{left:456.873333pt;}
.x11a_c00000{left:458.026667pt;}
.x8d_c00000{left:459.293333pt;}
.x151_c00000{left:460.586667pt;}
.x22_c00000{left:462.813333pt;}
.x86_c00000{left:463.773333pt;}
.x88_c00000{left:464.733333pt;}
.xb6_c00000{left:465.673333pt;}
.x16e_c00000{left:466.953333pt;}
.x57_c00000{left:468.893333pt;}
.xde_c00000{left:470.473333pt;}
.xc2_c00000{left:472.266667pt;}
.x14d_c00000{left:473.226667pt;}
.xa7_c00000{left:474.186667pt;}
.x109_c00000{left:475.453333pt;}
.x11b_c00000{left:476.586667pt;}
.xb7_c00000{left:477.533333pt;}
.x116_c00000{left:479.613333pt;}
.x125_c00000{left:480.573333pt;}
.x33_c00000{left:481.513333pt;}
.x1d_c00000{left:482.633333pt;}
.x10c_c00000{left:484.253333pt;}
.xd5_c00000{left:485.533333pt;}
.xcf_c00000{left:487.113333pt;}
.x1e_c00000{left:488.573333pt;}
.xb0_c00000{left:490.153333pt;}
.x11e_c00000{left:492.106667pt;}
.x34_c00000{left:493.373333pt;}
.x15d_c00000{left:494.506667pt;}
.xd4_c00000{left:495.613333pt;}
.x132_c00000{left:498.346667pt;}
.x73_c00000{left:499.933333pt;}
.x1a6_c00000{left:500.893333pt;}
.xb1_c00000{left:502.013333pt;}
.xd0_c00000{left:504.893333pt;}
.x111_c00000{left:505.833333pt;}
.x19d_c00000{left:507.613333pt;}
.xb8_c00000{left:508.873333pt;}
.x19e_c00000{left:510.173333pt;}
.x89_c00000{left:511.293333pt;}
.x172_c00000{left:512.253333pt;}
.x10f_c00000{left:513.213333pt;}
.x17b_c00000{left:516.413333pt;}
.xed_c00000{left:517.373333pt;}
.x25_c00000{left:518.953333pt;}
.xb9_c00000{left:520.733333pt;}
.x3f_c00000{left:522.313333pt;}
.xef_c00000{left:523.593333pt;}
.x26_c00000{left:524.893333pt;}
.x171_c00000{left:526.333333pt;}
.x96_c00000{left:527.433333pt;}
.xf8_c00000{left:529.353333pt;}
.x191_c00000{left:530.506667pt;}
.xb2_c00000{left:532.553333pt;}
.x40_c00000{left:534.173333pt;}
.x152_c00000{left:536.093333pt;}
.x17f_c00000{left:537.053333pt;}
.xfa_c00000{left:538.013333pt;}
.x97_c00000{left:539.293333pt;}
.xf0_c00000{left:541.373333pt;}
.xe5_c00000{left:542.333333pt;}
.x8a_c00000{left:544.073333pt;}
.x16a_c00000{left:545.833333pt;}
.xf9_c00000{left:547.133333pt;}
.xce_c00000{left:549.533333pt;}
.xbc_c00000{left:551.773333pt;}
.x183_c00000{left:553.386667pt;}
.x18b_c00000{left:554.973333pt;}
.x8b_c00000{left:555.933333pt;}
.x142_c00000{left:556.893333pt;}
.x122_c00000{left:558.313333pt;}
.x170_c00000{left:560.426667pt;}
.x12c_c00000{left:562.473333pt;}
.x16b_c00000{left:563.613333pt;}
.x189_c00000{left:564.893333pt;}
.x7c_c00000{left:566.153333pt;}
.x1ab_c00000{left:567.306667pt;}
.xa4_c00000{left:568.586667pt;}
.x8f_c00000{left:570.013333pt;}
.x8e_c00000{left:570.973333pt;}
.x2e_c00000{left:572.553333pt;}
.x147_c00000{left:573.513333pt;}
.x1aa_c00000{left:574.653333pt;}
.x84_c00000{left:576.073333pt;}
.x15e_c00000{left:577.373333pt;}
.x2f_c00000{left:578.493333pt;}
.xbd_c00000{left:579.933333pt;}
.x49_c00000{left:581.673333pt;}
.x186_c00000{left:584.573333pt;}
.x18d_c00000{left:585.833333pt;}
.x59_c00000{left:587.433333pt;}
.x1af_c00000{left:588.573333pt;}
.xfe_c00000{left:589.513333pt;}
.xc5_c00000{left:590.633333pt;}
.x199_c00000{left:592.266667pt;}
.x4a_c00000{left:593.533333pt;}
.x100_c00000{left:595.113333pt;}
.xe8_c00000{left:597.053333pt;}
.x5a_c00000{left:599.293333pt;}
.xe0_c00000{left:600.233333pt;}
.xae_c00000{left:601.673333pt;}
.x190_c00000{left:602.973333pt;}
.x9b_c00000{left:604.073333pt;}
.x192_c00000{left:606.173333pt;}
.x9e_c00000{left:607.273333pt;}
.xea_c00000{left:608.253333pt;}
.xfd_c00000{left:610.313333pt;}
.x4b_c00000{left:611.913333pt;}
.xaf_c00000{left:613.573333pt;}
.x71_c00000{left:614.693333pt;}
.x9c_c00000{left:615.973333pt;}
.xe1_c00000{left:618.053333pt;}
.x9f_c00000{left:619.173333pt;}
.xb3_c00000{left:621.553333pt;}
.x81_c00000{left:623.013333pt;}
.x36_c00000{left:624.433333pt;}
.x3b_c00000{left:626.353333pt;}
.x4c_c00000{left:627.793333pt;}
.x110_c00000{left:629.253333pt;}
.x182_c00000{left:630.213333pt;}
.x117_c00000{left:631.633333pt;}
.x5b_c00000{left:633.073333pt;}
.x187_c00000{left:634.673333pt;}
.x37_c00000{left:636.293333pt;}
.x3c_c00000{left:638.213333pt;}
.x4d_c00000{left:639.653333pt;}
.x5d_c00000{left:640.913333pt;}
.x184_c00000{left:641.893333pt;}
.x164_c00000{left:643.313333pt;}
.x5c_c00000{left:644.933333pt;}
.x78_c00000{left:646.033333pt;}
.x41_c00000{left:647.333333pt;}
.x11f_c00000{left:648.933333pt;}
.x7f_c00000{left:650.033333pt;}
.x82_c00000{left:651.813333pt;}
.x5e_c00000{left:652.773333pt;}
.x10d_c00000{left:654.053333pt;}
.xd2_c00000{left:655.813333pt;}
.x79_c00000{left:657.893333pt;}
.xba_c00000{left:658.833333pt;}
.x167_c00000{left:660.133333pt;}
.x80_c00000{left:661.893333pt;}
.x50_c00000{left:664.273333pt;}
.x20_c00000{left:665.733333pt;}
.x1a7_c00000{left:667.493333pt;}
.x140_c00000{left:668.433333pt;}
.x23_c00000{left:670.353333pt;}
.x1ad_c00000{left:671.653333pt;}
.xe_c00000{left:673.253333pt;}
.x24_c00000{left:676.293333pt;}
.xd1_c00000{left:678.213333pt;}
.xdd_c00000{left:679.493333pt;}
.x5_c00000{left:680.613333pt;}
.xe6_c00000{left:681.573333pt;}
.x141_c00000{left:686.213333pt;}
.x13f_c00000{left:694.533333pt;}
.x127_c00000{left:696.133333pt;}
.x136_c00000{left:714.053333pt;}
.x128_c00000{left:736.933333pt;}
.x129_c00000{left:740.133333pt;}
}





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

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_cbe423bc4ff9385ecced807a.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01000;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_d24e147b2e8023100a6518c2.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:0.874023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01000;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls1_c01000{letter-spacing:0.000000px;}
.ls0_c01000{letter-spacing:23.058720px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01000{word-spacing:-45.294480px;}
.ws2_c01000{word-spacing:-0.408000px;}
.ws3_c01000{word-spacing:0.000000px;}
.ws1_c01000{word-spacing:0.714000px;}
._0_c01000{margin-left:-5.371440px;}
._2_c01000{margin-left:-4.004064px;}
._1_c01000{width:1.915200px;}
.fc0_c01000{color:rgb(0,0,0);}
.fs0_c01000{font-size:66.240000px;}
.fs1_c01000{font-size:95.760000px;}
.y0_c01000{bottom:0.000000px;}
.y2_c01000{bottom:77.796000px;}
.y3_c01000{bottom:845.205000px;}
.y1_c01000{bottom:1194.660000px;}
.h2_c01000{height:48.062812px;}
.h3_c01000{height:50.229844px;}
.h4_c01000{height:85.847344px;}
.h0_c01000{height:1262.880000px;}
.h1_c01000{height:1263.000000px;}
.w0_c01000{width:892.980000px;}
.w1_c01000{width:893.250000px;}
.x0_c01000{left:0.000000px;}
.x3_c01000{left:148.896000px;}
.x1_c01000{left:169.950000px;}
.x2_c01000{left:740.490000px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls1_c01000{letter-spacing:0.000000pt;}
.ls0_c01000{letter-spacing:20.496640pt;}
.ws0_c01000{word-spacing:-40.261760pt;}
.ws2_c01000{word-spacing:-0.362667pt;}
.ws3_c01000{word-spacing:0.000000pt;}
.ws1_c01000{word-spacing:0.634667pt;}
._0_c01000{margin-left:-4.774613pt;}
._2_c01000{margin-left:-3.559168pt;}
._1_c01000{width:1.702400pt;}
.fs0_c01000{font-size:58.880000pt;}
.fs1_c01000{font-size:85.120000pt;}
.y0_c01000{bottom:0.000000pt;}
.y2_c01000{bottom:69.152000pt;}
.y3_c01000{bottom:751.293333pt;}
.y1_c01000{bottom:1061.920000pt;}
.h2_c01000{height:42.722500pt;}
.h3_c01000{height:44.648750pt;}
.h4_c01000{height:76.308750pt;}
.h0_c01000{height:1122.560000pt;}
.h1_c01000{height:1122.666667pt;}
.w0_c01000{width:793.760000pt;}
.w1_c01000{width:794.000000pt;}
.x0_c01000{left:0.000000pt;}
.x3_c01000{left:132.352000pt;}
.x1_c01000{left:151.066667pt;}
.x2_c01000{left:658.213333pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls0_c01001{letter-spacing:0.000000px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:0.288000px;}
.fc0_c01001{color:rgb(0,0,0);}
.fs0_c01001{font-size:66.240000px;}
.y0_c01001{bottom:0.000000px;}
.y1_c01001{bottom:77.796000px;}
.h2_c01001{height:50.229844px;}
.h0_c01001{height:1262.880000px;}
.h1_c01001{height:1263.000000px;}
.w0_c01001{width:892.980000px;}
.w1_c01001{width:893.250000px;}
.x0_c01001{left:0.000000px;}
.x1_c01001{left:127.656000px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls0_c01001{letter-spacing:0.000000pt;}
.ws0_c01001{word-spacing:0.256000pt;}
.fs0_c01001{font-size:58.880000pt;}
.y0_c01001{bottom:0.000000pt;}
.y1_c01001{bottom:69.152000pt;}
.h2_c01001{height:44.648750pt;}
.h0_c01001{height:1122.560000pt;}
.h1_c01001{height:1122.666667pt;}
.w0_c01001{width:793.760000pt;}
.w1_c01001{width:794.000000pt;}
.x0_c01001{left:0.000000pt;}
.x1_c01001{left:113.472000pt;}
}





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

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01002;src:url('chunks/assets/font_9008eae95984f44f1c8c2807.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01002;src:url('chunks/assets/font_f43c588928d561656899e600.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;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:ff5_c01002;src:url('chunks/assets/font_067a47813433368fdcd930d6.woff2')format("woff");}.ff5_c01002{font-family:ff5_c01002;line-height:0.915039;font-style:normal;font-weight: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_c01002;src:url('chunks/assets/font_c791717b4668fb160e8bb6f0.woff2')format("woff");}.ff6_c01002{font-family:ff6_c01002;line-height:1.009766;font-style:normal;font-weight: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_c01002;src:url('chunks/assets/font_283648f077efdc40c14e6b27.woff2')format("woff");}.ff7_c01002{font-family:ff7_c01002;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:ff8_c01002;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff8_c01002{font-family:ff8_c01002;line-height:1.113281;font-style:normal;font-weight: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_c01002;src:url('chunks/assets/font_888cb2ba000d7dd90b42b797.woff2')format("woff");}.ff9_c01002{font-family:ff9_c01002;line-height:1.106934;font-style:normal;font-weight: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_c01002;src:url('chunks/assets/font_a087f357f21e1acd0bd4beb5.woff2')format("woff");}.ffa_c01002{font-family:ffa_c01002;line-height:1.575000;font-style:normal;font-weight: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_c01002;src:url('chunks/assets/font_e080d57d9e3b1ea1971fbabf.woff2')format("woff");}.ffb_c01002{font-family:ffb_c01002;line-height:1.181152;font-style:normal;font-weight: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_c01002;src:url('chunks/assets/font_11d0028a26ac945e38993828.woff2')format("woff");}.ffc_c01002{font-family:ffc_c01002;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.ls9_c01002{letter-spacing:-0.576000px;}
.ls7_c01002{letter-spacing:-0.540600px;}
.ls6_c01002{letter-spacing:-0.189600px;}
.lsb_c01002{letter-spacing:-0.152400px;}
.ls5_c01002{letter-spacing:0.000000px;}
.ls8_c01002{letter-spacing:0.144000px;}
.lsc_c01002{letter-spacing:0.152400px;}
.ls2_c01002{letter-spacing:0.174240px;}
.ls4_c01002{letter-spacing:0.205920px;}
.lsa_c01002{letter-spacing:0.288000px;}
.ls3_c01002{letter-spacing:9.924480px;}
.ls0_c01002{letter-spacing:20.784000px;}
.ls1_c01002{letter-spacing:20.808000px;}
.sc__c01002{text-shadow:none;}
.sc1_c01002{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc1_c01002{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01002{word-spacing:-23.750400px;}
.ws3_c01002{word-spacing:-23.418720px;}
.ws2_c01002{word-spacing:-20.554560px;}
.ws5_c01002{word-spacing:-20.304000px;}
.ws4_c01002{word-spacing:-20.160000px;}
.ws1_c01002{word-spacing:-18.000000px;}
.ws6_c01002{word-spacing:0.000000px;}
._b_c01002{margin-left:-4.608000px;}
._2_c01002{margin-left:-2.695848px;}
._0_c01002{margin-left:-1.390841px;}
._1_c01002{width:1.282131px;}
._3_c01002{width:2.952000px;}
._c_c01002{width:4.005825px;}
._5_c01002{width:5.016024px;}
._4_c01002{width:6.264000px;}
._d_c01002{width:9.594070px;}
._e_c01002{width:10.936200px;}
._f_c01002{width:12.170469px;}
._9_c01002{width:13.320000px;}
._8_c01002{width:14.832000px;}
._7_c01002{width:19.008000px;}
._6_c01002{width:21.024000px;}
._a_c01002{width:22.320000px;}
.fc1_c01002{color:rgb(238,119,0);}
.fc0_c01002{color:rgb(0,0,0);}
.fs5_c01002{font-size:38.880000px;}
.fs4_c01002{font-size:48.240000px;}
.fs6_c01002{font-size:59.760000px;}
.fs0_c01002{font-size:66.240000px;}
.fs2_c01002{font-size:72.000000px;}
.fs3_c01002{font-size:84.240000px;}
.fs1_c01002{font-size:95.760000px;}
.y0_c01002{bottom:0.000000px;}
.y6_c01002{bottom:5.040000px;}
.y9_c01002{bottom:5.055000px;}
.yc_c01002{bottom:8.820000px;}
.y5_c01002{bottom:31.140000px;}
.ye_c01002{bottom:31.320000px;}
.yb_c01002{bottom:40.860000px;}
.y2_c01002{bottom:77.796000px;}
.y2f_c01002{bottom:109.296000px;}
.y2e_c01002{bottom:127.656000px;}
.y2d_c01002{bottom:145.836000px;}
.y2c_c01002{bottom:151.050000px;}
.y2b_c01002{bottom:164.010000px;}
.y2a_c01002{bottom:183.090000px;}
.y29_c01002{bottom:188.310000px;}
.y28_c01002{bottom:244.470000px;}
.y27_c01002{bottom:268.230000px;}
.y25_c01002{bottom:292.215000px;}
.y26_c01002{bottom:298.155000px;}
.y24_c01002{bottom:315.975000px;}
.y23_c01002{bottom:339.735000px;}
.y22_c01002{bottom:363.495000px;}
.y21_c01002{bottom:387.435000px;}
.y20_c01002{bottom:411.195000px;}
.y1f_c01002{bottom:434.955000px;}
.y1e_c01002{bottom:458.715000px;}
.y1d_c01002{bottom:482.655000px;}
.y1b_c01002{bottom:506.415000px;}
.y1c_c01002{bottom:512.355000px;}
.y1a_c01002{bottom:530.175000px;}
.y19_c01002{bottom:553.935000px;}
.y18_c01002{bottom:577.905000px;}
.y17_c01002{bottom:601.665000px;}
.y16_c01002{bottom:625.425000px;}
.y15_c01002{bottom:649.185000px;}
.y14_c01002{bottom:672.945000px;}
.y13_c01002{bottom:696.885000px;}
.y12_c01002{bottom:720.645000px;}
.y11_c01002{bottom:744.405000px;}
.y10_c01002{bottom:768.165000px;}
.yf_c01002{bottom:813.525000px;}
.yd_c01002{bottom:875.670000px;}
.ya_c01002{bottom:930.210000px;}
.y8_c01002{bottom:994.275000px;}
.y7_c01002{bottom:994.290000px;}
.y4_c01002{bottom:1048.650000px;}
.y3_c01002{bottom:1134.000000px;}
.y1_c01002{bottom:1194.660000px;}
.h11_c01002{height:29.482734px;}
.h13_c01002{height:41.484960px;}
.h10_c01002{height:43.246406px;}
.h2_c01002{height:48.062812px;}
.h3_c01002{height:50.229844px;}
.h7_c01002{height:52.382812px;}
.h5_c01002{height:54.345000px;}
.h8_c01002{height:54.351000px;}
.h9_c01002{height:54.360000px;}
.hb_c01002{height:54.525000px;}
.hc_c01002{height:54.531000px;}
.h6_c01002{height:63.550195px;}
.h12_c01002{height:63.763920px;}
.ha_c01002{height:64.065000px;}
.he_c01002{height:64.546875px;}
.h4_c01002{height:69.575625px;}
.hd_c01002{height:87.859687px;}
.hf_c01002{height:1262.865000px;}
.h0_c01002{height:1262.880000px;}
.h1_c01002{height:1263.000000px;}
.w3_c01002{width:230.415000px;}
.w4_c01002{width:230.430000px;}
.w2_c01002{width:403.626000px;}
.w5_c01002{width:892.957500px;}
.w0_c01002{width:892.980000px;}
.w1_c01002{width:893.250000px;}
.x0_c01002{left:0.000000px;}
.x4_c01002{left:10.251000px;}
.x5_c01002{left:31.485000px;}
.x3_c01002{left:127.656000px;}
.xb_c01002{left:132.516000px;}
.xc_c01002{left:133.776000px;}
.x1_c01002{left:169.950000px;}
.x6_c01002{left:531.300000px;}
.x9_c01002{left:644.482500px;}
.xa_c01002{left:651.165000px;}
.x7_c01002{left:679.582500px;}
.x8_c01002{left:686.265000px;}
.x2_c01002{left:740.490000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls9_c01002{letter-spacing:-0.512000pt;}
.ls7_c01002{letter-spacing:-0.480533pt;}
.ls6_c01002{letter-spacing:-0.168533pt;}
.lsb_c01002{letter-spacing:-0.135467pt;}
.ls5_c01002{letter-spacing:0.000000pt;}
.ls8_c01002{letter-spacing:0.128000pt;}
.lsc_c01002{letter-spacing:0.135467pt;}
.ls2_c01002{letter-spacing:0.154880pt;}
.ls4_c01002{letter-spacing:0.183040pt;}
.lsa_c01002{letter-spacing:0.256000pt;}
.ls3_c01002{letter-spacing:8.821760pt;}
.ls0_c01002{letter-spacing:18.474667pt;}
.ls1_c01002{letter-spacing:18.496000pt;}
.ws0_c01002{word-spacing:-21.111467pt;}
.ws3_c01002{word-spacing:-20.816640pt;}
.ws2_c01002{word-spacing:-18.270720pt;}
.ws5_c01002{word-spacing:-18.048000pt;}
.ws4_c01002{word-spacing:-17.920000pt;}
.ws1_c01002{word-spacing:-16.000000pt;}
.ws6_c01002{word-spacing:0.000000pt;}
._b_c01002{margin-left:-4.096000pt;}
._2_c01002{margin-left:-2.396310pt;}
._0_c01002{margin-left:-1.236303pt;}
._1_c01002{width:1.139672pt;}
._3_c01002{width:2.624000pt;}
._c_c01002{width:3.560733pt;}
._5_c01002{width:4.458688pt;}
._4_c01002{width:5.568000pt;}
._d_c01002{width:8.528062pt;}
._e_c01002{width:9.721066pt;}
._f_c01002{width:10.818195pt;}
._9_c01002{width:11.840000pt;}
._8_c01002{width:13.184000pt;}
._7_c01002{width:16.896000pt;}
._6_c01002{width:18.688000pt;}
._a_c01002{width:19.840000pt;}
.fs5_c01002{font-size:34.560000pt;}
.fs4_c01002{font-size:42.880000pt;}
.fs6_c01002{font-size:53.120000pt;}
.fs0_c01002{font-size:58.880000pt;}
.fs2_c01002{font-size:64.000000pt;}
.fs3_c01002{font-size:74.880000pt;}
.fs1_c01002{font-size:85.120000pt;}
.y0_c01002{bottom:0.000000pt;}
.y6_c01002{bottom:4.480000pt;}
.y9_c01002{bottom:4.493333pt;}
.yc_c01002{bottom:7.840000pt;}
.y5_c01002{bottom:27.680000pt;}
.ye_c01002{bottom:27.840000pt;}
.yb_c01002{bottom:36.320000pt;}
.y2_c01002{bottom:69.152000pt;}
.y2f_c01002{bottom:97.152000pt;}
.y2e_c01002{bottom:113.472000pt;}
.y2d_c01002{bottom:129.632000pt;}
.y2c_c01002{bottom:134.266667pt;}
.y2b_c01002{bottom:145.786667pt;}
.y2a_c01002{bottom:162.746667pt;}
.y29_c01002{bottom:167.386667pt;}
.y28_c01002{bottom:217.306667pt;}
.y27_c01002{bottom:238.426667pt;}
.y25_c01002{bottom:259.746667pt;}
.y26_c01002{bottom:265.026667pt;}
.y24_c01002{bottom:280.866667pt;}
.y23_c01002{bottom:301.986667pt;}
.y22_c01002{bottom:323.106667pt;}
.y21_c01002{bottom:344.386667pt;}
.y20_c01002{bottom:365.506667pt;}
.y1f_c01002{bottom:386.626667pt;}
.y1e_c01002{bottom:407.746667pt;}
.y1d_c01002{bottom:429.026667pt;}
.y1b_c01002{bottom:450.146667pt;}
.y1c_c01002{bottom:455.426667pt;}
.y1a_c01002{bottom:471.266667pt;}
.y19_c01002{bottom:492.386667pt;}
.y18_c01002{bottom:513.693333pt;}
.y17_c01002{bottom:534.813333pt;}
.y16_c01002{bottom:555.933333pt;}
.y15_c01002{bottom:577.053333pt;}
.y14_c01002{bottom:598.173333pt;}
.y13_c01002{bottom:619.453333pt;}
.y12_c01002{bottom:640.573333pt;}
.y11_c01002{bottom:661.693333pt;}
.y10_c01002{bottom:682.813333pt;}
.yf_c01002{bottom:723.133333pt;}
.yd_c01002{bottom:778.373333pt;}
.ya_c01002{bottom:826.853333pt;}
.y8_c01002{bottom:883.800000pt;}
.y7_c01002{bottom:883.813333pt;}
.y4_c01002{bottom:932.133333pt;}
.y3_c01002{bottom:1008.000000pt;}
.y1_c01002{bottom:1061.920000pt;}
.h11_c01002{height:26.206875pt;}
.h13_c01002{height:36.875520pt;}
.h10_c01002{height:38.441250pt;}
.h2_c01002{height:42.722500pt;}
.h3_c01002{height:44.648750pt;}
.h7_c01002{height:46.562500pt;}
.h5_c01002{height:48.306667pt;}
.h8_c01002{height:48.312000pt;}
.h9_c01002{height:48.320000pt;}
.hb_c01002{height:48.466667pt;}
.hc_c01002{height:48.472000pt;}
.h6_c01002{height:56.489062pt;}
.h12_c01002{height:56.679040pt;}
.ha_c01002{height:56.946667pt;}
.he_c01002{height:57.375000pt;}
.h4_c01002{height:61.845000pt;}
.hd_c01002{height:78.097500pt;}
.hf_c01002{height:1122.546667pt;}
.h0_c01002{height:1122.560000pt;}
.h1_c01002{height:1122.666667pt;}
.w3_c01002{width:204.813333pt;}
.w4_c01002{width:204.826667pt;}
.w2_c01002{width:358.778667pt;}
.w5_c01002{width:793.740000pt;}
.w0_c01002{width:793.760000pt;}
.w1_c01002{width:794.000000pt;}
.x0_c01002{left:0.000000pt;}
.x4_c01002{left:9.112000pt;}
.x5_c01002{left:27.986667pt;}
.x3_c01002{left:113.472000pt;}
.xb_c01002{left:117.792000pt;}
.xc_c01002{left:118.912000pt;}
.x1_c01002{left:151.066667pt;}
.x6_c01002{left:472.266667pt;}
.x9_c01002{left:572.873333pt;}
.xa_c01002{left:578.813333pt;}
.x7_c01002{left:604.073333pt;}
.x8_c01002{left:610.013333pt;}
.x2_c01002{left:658.213333pt;}
}





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

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01003;src:url('chunks/assets/font_53cf0e5b954b7b31bde17ab0.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01003;src:url('chunks/assets/font_8e3a60b2298c86b54e0178d1.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls1_c01003{letter-spacing:0.000000px;}
.ls0_c01003{letter-spacing:0.144000px;}
.ls2_c01003{letter-spacing:0.288000px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01003{word-spacing:-20.304000px;}
.ws1_c01003{word-spacing:0.000000px;}
._f_c01003{margin-left:-5.400000px;}
._b_c01003{margin-left:-4.176000px;}
._1_c01003{margin-left:-3.096000px;}
._0_c01003{margin-left:-1.258891px;}
._2_c01003{width:1.534867px;}
._13_c01003{width:5.173157px;}
._12_c01003{width:6.336000px;}
._9_c01003{width:7.857806px;}
._8_c01003{width:9.216000px;}
._7_c01003{width:10.762891px;}
._6_c01003{width:11.808000px;}
._a_c01003{width:13.896000px;}
._10_c01003{width:15.840000px;}
._11_c01003{width:18.144000px;}
._d_c01003{width:22.392000px;}
._c_c01003{width:23.544000px;}
._e_c01003{width:26.064000px;}
._4_c01003{width:33.944674px;}
._3_c01003{width:34.992000px;}
._5_c01003{width:37.503302px;}
.fc0_c01003{color:rgb(0,0,0);}
.fs0_c01003{font-size:66.240000px;}
.fs1_c01003{font-size:72.000000px;}
.y0_c01003{bottom:0.000000px;}
.y4_c01003{bottom:57.636000px;}
.y3_c01003{bottom:77.796000px;}
.y1c_c01003{bottom:109.476000px;}
.y1b_c01003{bottom:616.065000px;}
.y1a_c01003{bottom:639.825000px;}
.y19_c01003{bottom:663.585000px;}
.y18_c01003{bottom:687.525000px;}
.y17_c01003{bottom:711.285000px;}
.y16_c01003{bottom:735.045000px;}
.y15_c01003{bottom:758.805000px;}
.y14_c01003{bottom:782.745000px;}
.y13_c01003{bottom:806.505000px;}
.y12_c01003{bottom:830.265000px;}
.y11_c01003{bottom:854.070000px;}
.y10_c01003{bottom:878.010000px;}
.yf_c01003{bottom:901.770000px;}
.ye_c01003{bottom:925.530000px;}
.yd_c01003{bottom:949.290000px;}
.yc_c01003{bottom:973.050000px;}
.yb_c01003{bottom:996.990000px;}
.ya_c01003{bottom:1020.750000px;}
.y9_c01003{bottom:1044.510000px;}
.y8_c01003{bottom:1068.270000px;}
.y7_c01003{bottom:1092.210000px;}
.y6_c01003{bottom:1115.970000px;}
.y5_c01003{bottom:1139.760000px;}
.y2_c01003{bottom:1174.680000px;}
.y1_c01003{bottom:1194.660000px;}
.h2_c01003{height:48.062812px;}
.h3_c01003{height:50.229844px;}
.h4_c01003{height:64.546875px;}
.h0_c01003{height:1262.880000px;}
.h1_c01003{height:1263.000000px;}
.w0_c01003{width:892.980000px;}
.w1_c01003{width:893.250000px;}
.x0_c01003{left:0.000000px;}
.x1_c01003{left:127.656000px;}
.x2_c01003{left:636.765000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls1_c01003{letter-spacing:0.000000pt;}
.ls0_c01003{letter-spacing:0.128000pt;}
.ls2_c01003{letter-spacing:0.256000pt;}
.ws0_c01003{word-spacing:-18.048000pt;}
.ws1_c01003{word-spacing:0.000000pt;}
._f_c01003{margin-left:-4.800000pt;}
._b_c01003{margin-left:-3.712000pt;}
._1_c01003{margin-left:-2.752000pt;}
._0_c01003{margin-left:-1.119014pt;}
._2_c01003{width:1.364326pt;}
._13_c01003{width:4.598362pt;}
._12_c01003{width:5.632000pt;}
._9_c01003{width:6.984717pt;}
._8_c01003{width:8.192000pt;}
._7_c01003{width:9.567014pt;}
._6_c01003{width:10.496000pt;}
._a_c01003{width:12.352000pt;}
._10_c01003{width:14.080000pt;}
._11_c01003{width:16.128000pt;}
._d_c01003{width:19.904000pt;}
._c_c01003{width:20.928000pt;}
._e_c01003{width:23.168000pt;}
._4_c01003{width:30.173043pt;}
._3_c01003{width:31.104000pt;}
._5_c01003{width:33.336269pt;}
.fs0_c01003{font-size:58.880000pt;}
.fs1_c01003{font-size:64.000000pt;}
.y0_c01003{bottom:0.000000pt;}
.y4_c01003{bottom:51.232000pt;}
.y3_c01003{bottom:69.152000pt;}
.y1c_c01003{bottom:97.312000pt;}
.y1b_c01003{bottom:547.613333pt;}
.y1a_c01003{bottom:568.733333pt;}
.y19_c01003{bottom:589.853333pt;}
.y18_c01003{bottom:611.133333pt;}
.y17_c01003{bottom:632.253333pt;}
.y16_c01003{bottom:653.373333pt;}
.y15_c01003{bottom:674.493333pt;}
.y14_c01003{bottom:695.773333pt;}
.y13_c01003{bottom:716.893333pt;}
.y12_c01003{bottom:738.013333pt;}
.y11_c01003{bottom:759.173333pt;}
.y10_c01003{bottom:780.453333pt;}
.yf_c01003{bottom:801.573333pt;}
.ye_c01003{bottom:822.693333pt;}
.yd_c01003{bottom:843.813333pt;}
.yc_c01003{bottom:864.933333pt;}
.yb_c01003{bottom:886.213333pt;}
.ya_c01003{bottom:907.333333pt;}
.y9_c01003{bottom:928.453333pt;}
.y8_c01003{bottom:949.573333pt;}
.y7_c01003{bottom:970.853333pt;}
.y6_c01003{bottom:991.973333pt;}
.y5_c01003{bottom:1013.120000pt;}
.y2_c01003{bottom:1044.160000pt;}
.y1_c01003{bottom:1061.920000pt;}
.h2_c01003{height:42.722500pt;}
.h3_c01003{height:44.648750pt;}
.h4_c01003{height:57.375000pt;}
.h0_c01003{height:1122.560000pt;}
.h1_c01003{height:1122.666667pt;}
.w0_c01003{width:793.760000pt;}
.w1_c01003{width:794.000000pt;}
.x0_c01003{left:0.000000pt;}
.x1_c01003{left:113.472000pt;}
.x2_c01003{left:566.013333pt;}
}





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

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01004;src:url('chunks/assets/font_ee0f3369338fd786e915963a.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01004;src:url('chunks/assets/font_ac735fcd8deeeac4e9160b5c.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01004;src:url('chunks/assets/font_ec7e629f3b3a4f71897277c3.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01004;src:url('chunks/assets/font_635ac04e2822645dac62f166.woff2')format("woff");}.ff5_c01004{font-family:ff5_c01004;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01004;src:url('chunks/assets/font_1573de49a30c2b57c03089f3.woff2')format("woff");}.ff6_c01004{font-family:ff6_c01004;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01004;src:url('chunks/assets/font_991d74d27727124dce47a46e.woff2')format("woff");}.ff7_c01004{font-family:ff7_c01004;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls4_c01004{letter-spacing:-0.432000px;}
.ls2_c01004{letter-spacing:0.000000px;}
.ls5_c01004{letter-spacing:0.150000px;}
.ls1_c01004{letter-spacing:0.152400px;}
.ls0_c01004{letter-spacing:0.288000px;}
.ls3_c01004{letter-spacing:0.648000px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01004{word-spacing:-21.187920px;}
.ws4_c01004{word-spacing:-21.035520px;}
.ws0_c01004{word-spacing:-20.664000px;}
.ws1_c01004{word-spacing:-20.304000px;}
.ws2_c01004{word-spacing:-20.016000px;}
.ws5_c01004{word-spacing:0.000000px;}
._a_c01004{margin-left:-5.665159px;}
._6_c01004{margin-left:-4.464000px;}
._5_c01004{margin-left:-2.713159px;}
._0_c01004{margin-left:-1.390841px;}
._4_c01004{width:1.308024px;}
._8_c01004{width:2.830841px;}
._7_c01004{width:4.104000px;}
._9_c01004{width:5.825722px;}
._13_c01004{width:7.536000px;}
._1_c01004{width:8.784000px;}
._2_c01004{width:10.008000px;}
._3_c01004{width:11.686841px;}
._e_c01004{width:13.581683px;}
._d_c01004{width:14.688000px;}
._f_c01004{width:24.250841px;}
._11_c01004{width:31.944024px;}
._12_c01004{width:34.344000px;}
._c_c01004{width:37.512000px;}
._b_c01004{width:38.664000px;}
._16_c01004{width:40.032000px;}
._15_c01004{width:56.808000px;}
._14_c01004{width:57.888000px;}
._10_c01004{width:136.272024px;}
.fc0_c01004{color:rgb(0,0,0);}
.fs3_c01004{font-size:38.880000px;}
.fs2_c01004{font-size:48.240000px;}
.fs4_c01004{font-size:59.760000px;}
.fs0_c01004{font-size:66.240000px;}
.fs1_c01004{font-size:72.000000px;}
.y0_c01004{bottom:0.000000px;}
.y38_c01004{bottom:7.395000px;}
.y4_c01004{bottom:57.636000px;}
.y3_c01004{bottom:77.796000px;}
.y36_c01004{bottom:109.296000px;}
.y35_c01004{bottom:127.656000px;}
.y34_c01004{bottom:145.836000px;}
.y33_c01004{bottom:151.050000px;}
.y32_c01004{bottom:164.010000px;}
.y31_c01004{bottom:182.190000px;}
.y30_c01004{bottom:187.410000px;}
.y2f_c01004{bottom:200.550000px;}
.y2e_c01004{bottom:218.730000px;}
.y2d_c01004{bottom:223.950000px;}
.y2c_c01004{bottom:236.910000px;}
.y2b_c01004{bottom:255.090000px;}
.y2a_c01004{bottom:260.310000px;}
.y29_c01004{bottom:274.890000px;}
.y28_c01004{bottom:356.835000px;}
.y37_c01004{bottom:371.400000px;}
.y26_c01004{bottom:395.535000px;}
.y27_c01004{bottom:401.475000px;}
.y25_c01004{bottom:419.475000px;}
.y24_c01004{bottom:443.235000px;}
.y23_c01004{bottom:466.995000px;}
.y22_c01004{bottom:490.755000px;}
.y21_c01004{bottom:514.695000px;}
.y20_c01004{bottom:538.455000px;}
.y1f_c01004{bottom:562.215000px;}
.y1e_c01004{bottom:586.005000px;}
.y1d_c01004{bottom:609.765000px;}
.y1c_c01004{bottom:633.705000px;}
.y1b_c01004{bottom:657.465000px;}
.y1a_c01004{bottom:681.225000px;}
.y19_c01004{bottom:704.985000px;}
.y18_c01004{bottom:728.925000px;}
.y16_c01004{bottom:752.685000px;}
.y17_c01004{bottom:758.625000px;}
.y15_c01004{bottom:776.445000px;}
.y14_c01004{bottom:800.205000px;}
.y12_c01004{bottom:839.085000px;}
.y13_c01004{bottom:845.025000px;}
.y11_c01004{bottom:862.890000px;}
.y10_c01004{bottom:886.650000px;}
.yf_c01004{bottom:910.590000px;}
.ye_c01004{bottom:934.350000px;}
.yd_c01004{bottom:958.110000px;}
.yb_c01004{bottom:996.990000px;}
.yc_c01004{bottom:1002.930000px;}
.ya_c01004{bottom:1020.750000px;}
.y9_c01004{bottom:1044.510000px;}
.y8_c01004{bottom:1068.270000px;}
.y7_c01004{bottom:1092.210000px;}
.y6_c01004{bottom:1115.970000px;}
.y5_c01004{bottom:1139.760000px;}
.y2_c01004{bottom:1174.680000px;}
.y1_c01004{bottom:1194.660000px;}
.h9_c01004{height:21.240000px;}
.h7_c01004{height:41.484960px;}
.h6_c01004{height:43.246406px;}
.h2_c01004{height:48.062812px;}
.h3_c01004{height:50.229844px;}
.ha_c01004{height:53.428008px;}
.h8_c01004{height:63.763920px;}
.h4_c01004{height:64.546875px;}
.h5_c01004{height:1262.865000px;}
.h0_c01004{height:1262.880000px;}
.h1_c01004{height:1263.000000px;}
.w3_c01004{width:404.700000px;}
.w2_c01004{width:892.957500px;}
.w0_c01004{width:892.980000px;}
.w1_c01004{width:893.250000px;}
.x0_c01004{left:0.000000px;}
.x4_c01004{left:127.656000px;}
.xd_c01004{left:133.776000px;}
.x1_c01004{left:169.950000px;}
.xb_c01004{left:199.627500px;}
.x9_c01004{left:206.287500px;}
.xa_c01004{left:212.970000px;}
.x5_c01004{left:265.687500px;}
.x6_c01004{left:272.370000px;}
.xc_c01004{left:343.695000px;}
.xe_c01004{left:352.875000px;}
.x7_c01004{left:558.982500px;}
.x8_c01004{left:565.665000px;}
.x3_c01004{left:740.490000px;}
.x2_c01004{left:765.510000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls4_c01004{letter-spacing:-0.384000pt;}
.ls2_c01004{letter-spacing:0.000000pt;}
.ls5_c01004{letter-spacing:0.133333pt;}
.ls1_c01004{letter-spacing:0.135467pt;}
.ls0_c01004{letter-spacing:0.256000pt;}
.ls3_c01004{letter-spacing:0.576000pt;}
.ws3_c01004{word-spacing:-18.833707pt;}
.ws4_c01004{word-spacing:-18.698240pt;}
.ws0_c01004{word-spacing:-18.368000pt;}
.ws1_c01004{word-spacing:-18.048000pt;}
.ws2_c01004{word-spacing:-17.792000pt;}
.ws5_c01004{word-spacing:0.000000pt;}
._a_c01004{margin-left:-5.035697pt;}
._6_c01004{margin-left:-3.968000pt;}
._5_c01004{margin-left:-2.411697pt;}
._0_c01004{margin-left:-1.236303pt;}
._4_c01004{width:1.162688pt;}
._8_c01004{width:2.516303pt;}
._7_c01004{width:3.648000pt;}
._9_c01004{width:5.178419pt;}
._13_c01004{width:6.698667pt;}
._1_c01004{width:7.808000pt;}
._2_c01004{width:8.896000pt;}
._3_c01004{width:10.388303pt;}
._e_c01004{width:12.072607pt;}
._d_c01004{width:13.056000pt;}
._f_c01004{width:21.556303pt;}
._11_c01004{width:28.394688pt;}
._12_c01004{width:30.528000pt;}
._c_c01004{width:33.344000pt;}
._b_c01004{width:34.368000pt;}
._16_c01004{width:35.584000pt;}
._15_c01004{width:50.496000pt;}
._14_c01004{width:51.456000pt;}
._10_c01004{width:121.130688pt;}
.fs3_c01004{font-size:34.560000pt;}
.fs2_c01004{font-size:42.880000pt;}
.fs4_c01004{font-size:53.120000pt;}
.fs0_c01004{font-size:58.880000pt;}
.fs1_c01004{font-size:64.000000pt;}
.y0_c01004{bottom:0.000000pt;}
.y38_c01004{bottom:6.573333pt;}
.y4_c01004{bottom:51.232000pt;}
.y3_c01004{bottom:69.152000pt;}
.y36_c01004{bottom:97.152000pt;}
.y35_c01004{bottom:113.472000pt;}
.y34_c01004{bottom:129.632000pt;}
.y33_c01004{bottom:134.266667pt;}
.y32_c01004{bottom:145.786667pt;}
.y31_c01004{bottom:161.946667pt;}
.y30_c01004{bottom:166.586667pt;}
.y2f_c01004{bottom:178.266667pt;}
.y2e_c01004{bottom:194.426667pt;}
.y2d_c01004{bottom:199.066667pt;}
.y2c_c01004{bottom:210.586667pt;}
.y2b_c01004{bottom:226.746667pt;}
.y2a_c01004{bottom:231.386667pt;}
.y29_c01004{bottom:244.346667pt;}
.y28_c01004{bottom:317.186667pt;}
.y37_c01004{bottom:330.133333pt;}
.y26_c01004{bottom:351.586667pt;}
.y27_c01004{bottom:356.866667pt;}
.y25_c01004{bottom:372.866667pt;}
.y24_c01004{bottom:393.986667pt;}
.y23_c01004{bottom:415.106667pt;}
.y22_c01004{bottom:436.226667pt;}
.y21_c01004{bottom:457.506667pt;}
.y20_c01004{bottom:478.626667pt;}
.y1f_c01004{bottom:499.746667pt;}
.y1e_c01004{bottom:520.893333pt;}
.y1d_c01004{bottom:542.013333pt;}
.y1c_c01004{bottom:563.293333pt;}
.y1b_c01004{bottom:584.413333pt;}
.y1a_c01004{bottom:605.533333pt;}
.y19_c01004{bottom:626.653333pt;}
.y18_c01004{bottom:647.933333pt;}
.y16_c01004{bottom:669.053333pt;}
.y17_c01004{bottom:674.333333pt;}
.y15_c01004{bottom:690.173333pt;}
.y14_c01004{bottom:711.293333pt;}
.y12_c01004{bottom:745.853333pt;}
.y13_c01004{bottom:751.133333pt;}
.y11_c01004{bottom:767.013333pt;}
.y10_c01004{bottom:788.133333pt;}
.yf_c01004{bottom:809.413333pt;}
.ye_c01004{bottom:830.533333pt;}
.yd_c01004{bottom:851.653333pt;}
.yb_c01004{bottom:886.213333pt;}
.yc_c01004{bottom:891.493333pt;}
.ya_c01004{bottom:907.333333pt;}
.y9_c01004{bottom:928.453333pt;}
.y8_c01004{bottom:949.573333pt;}
.y7_c01004{bottom:970.853333pt;}
.y6_c01004{bottom:991.973333pt;}
.y5_c01004{bottom:1013.120000pt;}
.y2_c01004{bottom:1044.160000pt;}
.y1_c01004{bottom:1061.920000pt;}
.h9_c01004{height:18.880000pt;}
.h7_c01004{height:36.875520pt;}
.h6_c01004{height:38.441250pt;}
.h2_c01004{height:42.722500pt;}
.h3_c01004{height:44.648750pt;}
.ha_c01004{height:47.491563pt;}
.h8_c01004{height:56.679040pt;}
.h4_c01004{height:57.375000pt;}
.h5_c01004{height:1122.546667pt;}
.h0_c01004{height:1122.560000pt;}
.h1_c01004{height:1122.666667pt;}
.w3_c01004{width:359.733333pt;}
.w2_c01004{width:793.740000pt;}
.w0_c01004{width:793.760000pt;}
.w1_c01004{width:794.000000pt;}
.x0_c01004{left:0.000000pt;}
.x4_c01004{left:113.472000pt;}
.xd_c01004{left:118.912000pt;}
.x1_c01004{left:151.066667pt;}
.xb_c01004{left:177.446667pt;}
.x9_c01004{left:183.366667pt;}
.xa_c01004{left:189.306667pt;}
.x5_c01004{left:236.166667pt;}
.x6_c01004{left:242.106667pt;}
.xc_c01004{left:305.506667pt;}
.xe_c01004{left:313.666667pt;}
.x7_c01004{left:496.873333pt;}
.x8_c01004{left:502.813333pt;}
.x3_c01004{left:658.213333pt;}
.x2_c01004{left:680.453333pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01005;src:url('chunks/assets/font_d610889b31923a39824ff6b4.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01005;src:url('chunks/assets/font_b22b2520abbcbb585d843387.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01005;src:url('chunks/assets/font_502a3cbe641bd74662350dcb.woff2')format("woff");}.ff4_c01005{font-family:ff4_c01005;line-height:1.104492;font-style:normal;font-weight: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_c01005;src:url('chunks/assets/font_f5cbe89a859433a4b9764f67.woff2')format("woff");}.ff5_c01005{font-family:ff5_c01005;line-height:1.211914;font-style:normal;font-weight: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_c01005;src:url('chunks/assets/font_a156f95e13c81478b84737ca.woff2')format("woff");}.ff6_c01005{font-family:ff6_c01005;line-height:1.181152;font-style:normal;font-weight: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_c01005;src:url('chunks/assets/font_65634f270b1204dbeedf63cd.woff2')format("woff");}.ff7_c01005{font-family:ff7_c01005;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls4_c01005{letter-spacing:-0.152400px;}
.ls2_c01005{letter-spacing:0.000000px;}
.ls0_c01005{letter-spacing:0.144000px;}
.ls3_c01005{letter-spacing:0.150000px;}
.ls5_c01005{letter-spacing:0.152400px;}
.ls1_c01005{letter-spacing:0.174240px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01005{word-spacing:-21.187920px;}
.ws0_c01005{word-spacing:-21.035520px;}
.ws2_c01005{word-spacing:0.000000px;}
._b_c01005{margin-left:-4.248000px;}
._3_c01005{margin-left:-2.557109px;}
._0_c01005{margin-left:-1.258891px;}
._4_c01005{width:1.202242px;}
._7_c01005{width:2.457734px;}
._2_c01005{width:3.744000px;}
._1_c01005{width:5.040000px;}
._a_c01005{width:6.124190px;}
._f_c01005{width:7.594891px;}
._d_c01005{width:8.856000px;}
._c_c01005{width:9.864000px;}
._9_c01005{width:10.895976px;}
._8_c01005{width:11.928024px;}
._5_c01005{width:13.032000px;}
._6_c01005{width:14.112000px;}
._e_c01005{width:21.643517px;}
._10_c01005{width:23.760000px;}
.fc0_c01005{color:rgb(0,0,0);}
.fs3_c01005{font-size:38.880000px;}
.fs2_c01005{font-size:48.240000px;}
.fs4_c01005{font-size:59.760000px;}
.fs0_c01005{font-size:66.240000px;}
.fs1_c01005{font-size:72.000000px;}
.y0_c01005{bottom:0.000000px;}
.y4_c01005{bottom:57.636000px;}
.y3_c01005{bottom:77.796000px;}
.y30_c01005{bottom:109.296000px;}
.y2f_c01005{bottom:127.656000px;}
.y2e_c01005{bottom:132.876000px;}
.y2d_c01005{bottom:145.836000px;}
.y2c_c01005{bottom:151.050000px;}
.y2b_c01005{bottom:164.010000px;}
.y2a_c01005{bottom:182.190000px;}
.y29_c01005{bottom:200.550000px;}
.y28_c01005{bottom:219.630000px;}
.y27_c01005{bottom:224.850000px;}
.y26_c01005{bottom:239.430000px;}
.y25_c01005{bottom:314.355000px;}
.y24_c01005{bottom:353.235000px;}
.y23_c01005{bottom:391.935000px;}
.y22_c01005{bottom:430.815000px;}
.y21_c01005{bottom:469.695000px;}
.y20_c01005{bottom:508.395000px;}
.y1f_c01005{bottom:547.275000px;}
.y1d_c01005{bottom:586.005000px;}
.y1e_c01005{bottom:591.945000px;}
.y1c_c01005{bottom:609.765000px;}
.y1b_c01005{bottom:633.705000px;}
.y1a_c01005{bottom:657.465000px;}
.y19_c01005{bottom:696.345000px;}
.y18_c01005{bottom:720.105000px;}
.y16_c01005{bottom:743.865000px;}
.y17_c01005{bottom:749.805000px;}
.y15_c01005{bottom:767.625000px;}
.y14_c01005{bottom:791.565000px;}
.y13_c01005{bottom:815.325000px;}
.y12_c01005{bottom:839.085000px;}
.y11_c01005{bottom:862.890000px;}
.y10_c01005{bottom:901.770000px;}
.yf_c01005{bottom:925.530000px;}
.ye_c01005{bottom:949.290000px;}
.yd_c01005{bottom:973.050000px;}
.yc_c01005{bottom:996.990000px;}
.yb_c01005{bottom:1020.750000px;}
.ya_c01005{bottom:1044.510000px;}
.y8_c01005{bottom:1068.270000px;}
.y9_c01005{bottom:1074.210000px;}
.y7_c01005{bottom:1092.210000px;}
.y6_c01005{bottom:1115.970000px;}
.y5_c01005{bottom:1139.760000px;}
.y2_c01005{bottom:1174.680000px;}
.y1_c01005{bottom:1194.660000px;}
.h7_c01005{height:29.482734px;}
.h9_c01005{height:41.484960px;}
.h6_c01005{height:43.246406px;}
.h2_c01005{height:48.062812px;}
.h3_c01005{height:50.229844px;}
.h8_c01005{height:63.763920px;}
.h4_c01005{height:64.546875px;}
.h5_c01005{height:1262.865000px;}
.h0_c01005{height:1262.880000px;}
.h1_c01005{height:1263.000000px;}
.w2_c01005{width:892.957500px;}
.w0_c01005{width:892.980000px;}
.w1_c01005{width:893.250000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:127.656000px;}
.x9_c01005{left:132.516000px;}
.xa_c01005{left:133.776000px;}
.x8_c01005{left:343.695000px;}
.x2_c01005{left:519.922500px;}
.x3_c01005{left:526.605000px;}
.x6_c01005{left:571.942500px;}
.x7_c01005{left:578.625000px;}
.x4_c01005{left:753.787500px;}
.x5_c01005{left:760.470000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls4_c01005{letter-spacing:-0.135467pt;}
.ls2_c01005{letter-spacing:0.000000pt;}
.ls0_c01005{letter-spacing:0.128000pt;}
.ls3_c01005{letter-spacing:0.133333pt;}
.ls5_c01005{letter-spacing:0.135467pt;}
.ls1_c01005{letter-spacing:0.154880pt;}
.ws1_c01005{word-spacing:-18.833707pt;}
.ws0_c01005{word-spacing:-18.698240pt;}
.ws2_c01005{word-spacing:0.000000pt;}
._b_c01005{margin-left:-3.776000pt;}
._3_c01005{margin-left:-2.272986pt;}
._0_c01005{margin-left:-1.119014pt;}
._4_c01005{width:1.068659pt;}
._7_c01005{width:2.184653pt;}
._2_c01005{width:3.328000pt;}
._1_c01005{width:4.480000pt;}
._a_c01005{width:5.443725pt;}
._f_c01005{width:6.751014pt;}
._d_c01005{width:7.872000pt;}
._c_c01005{width:8.768000pt;}
._9_c01005{width:9.685312pt;}
._8_c01005{width:10.602688pt;}
._5_c01005{width:11.584000pt;}
._6_c01005{width:12.544000pt;}
._e_c01005{width:19.238682pt;}
._10_c01005{width:21.120000pt;}
.fs3_c01005{font-size:34.560000pt;}
.fs2_c01005{font-size:42.880000pt;}
.fs4_c01005{font-size:53.120000pt;}
.fs0_c01005{font-size:58.880000pt;}
.fs1_c01005{font-size:64.000000pt;}
.y0_c01005{bottom:0.000000pt;}
.y4_c01005{bottom:51.232000pt;}
.y3_c01005{bottom:69.152000pt;}
.y30_c01005{bottom:97.152000pt;}
.y2f_c01005{bottom:113.472000pt;}
.y2e_c01005{bottom:118.112000pt;}
.y2d_c01005{bottom:129.632000pt;}
.y2c_c01005{bottom:134.266667pt;}
.y2b_c01005{bottom:145.786667pt;}
.y2a_c01005{bottom:161.946667pt;}
.y29_c01005{bottom:178.266667pt;}
.y28_c01005{bottom:195.226667pt;}
.y27_c01005{bottom:199.866667pt;}
.y26_c01005{bottom:212.826667pt;}
.y25_c01005{bottom:279.426667pt;}
.y24_c01005{bottom:313.986667pt;}
.y23_c01005{bottom:348.386667pt;}
.y22_c01005{bottom:382.946667pt;}
.y21_c01005{bottom:417.506667pt;}
.y20_c01005{bottom:451.906667pt;}
.y1f_c01005{bottom:486.466667pt;}
.y1d_c01005{bottom:520.893333pt;}
.y1e_c01005{bottom:526.173333pt;}
.y1c_c01005{bottom:542.013333pt;}
.y1b_c01005{bottom:563.293333pt;}
.y1a_c01005{bottom:584.413333pt;}
.y19_c01005{bottom:618.973333pt;}
.y18_c01005{bottom:640.093333pt;}
.y16_c01005{bottom:661.213333pt;}
.y17_c01005{bottom:666.493333pt;}
.y15_c01005{bottom:682.333333pt;}
.y14_c01005{bottom:703.613333pt;}
.y13_c01005{bottom:724.733333pt;}
.y12_c01005{bottom:745.853333pt;}
.y11_c01005{bottom:767.013333pt;}
.y10_c01005{bottom:801.573333pt;}
.yf_c01005{bottom:822.693333pt;}
.ye_c01005{bottom:843.813333pt;}
.yd_c01005{bottom:864.933333pt;}
.yc_c01005{bottom:886.213333pt;}
.yb_c01005{bottom:907.333333pt;}
.ya_c01005{bottom:928.453333pt;}
.y8_c01005{bottom:949.573333pt;}
.y9_c01005{bottom:954.853333pt;}
.y7_c01005{bottom:970.853333pt;}
.y6_c01005{bottom:991.973333pt;}
.y5_c01005{bottom:1013.120000pt;}
.y2_c01005{bottom:1044.160000pt;}
.y1_c01005{bottom:1061.920000pt;}
.h7_c01005{height:26.206875pt;}
.h9_c01005{height:36.875520pt;}
.h6_c01005{height:38.441250pt;}
.h2_c01005{height:42.722500pt;}
.h3_c01005{height:44.648750pt;}
.h8_c01005{height:56.679040pt;}
.h4_c01005{height:57.375000pt;}
.h5_c01005{height:1122.546667pt;}
.h0_c01005{height:1122.560000pt;}
.h1_c01005{height:1122.666667pt;}
.w2_c01005{width:793.740000pt;}
.w0_c01005{width:793.760000pt;}
.w1_c01005{width:794.000000pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:113.472000pt;}
.x9_c01005{left:117.792000pt;}
.xa_c01005{left:118.912000pt;}
.x8_c01005{left:305.506667pt;}
.x2_c01005{left:462.153333pt;}
.x3_c01005{left:468.093333pt;}
.x6_c01005{left:508.393333pt;}
.x7_c01005{left:514.333333pt;}
.x4_c01005{left:670.033333pt;}
.x5_c01005{left:675.973333pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01006;src:url('chunks/assets/font_f061ba15e007863bf241c2b9.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01006;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01006;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01006;src:url('chunks/assets/font_37f779cb6dc32eea69028c8b.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls1_c01006{letter-spacing:-0.432000px;}
.ls0_c01006{letter-spacing:0.000000px;}
.ls2_c01006{letter-spacing:0.288000px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01006{word-spacing:-19.584000px;}
.ws1_c01006{word-spacing:0.000000px;}
._10_c01006{margin-left:-5.017159px;}
._6_c01006{margin-left:-3.744000px;}
._7_c01006{margin-left:-2.710817px;}
._0_c01006{margin-left:-1.390841px;}
._2_c01006{width:1.030841px;}
._3_c01006{width:2.432500px;}
._a_c01006{width:3.672000px;}
._1_c01006{width:5.112000px;}
._b_c01006{width:6.768000px;}
._c_c01006{width:9.072000px;}
._9_c01006{width:10.728000px;}
._8_c01006{width:11.952000px;}
._d_c01006{width:15.888024px;}
._5_c01006{width:17.136000px;}
._4_c01006{width:18.216000px;}
._e_c01006{width:24.984000px;}
._f_c01006{width:27.144000px;}
.fc0_c01006{color:rgb(0,0,0);}
.fs0_c01006{font-size:66.240000px;}
.fs2_c01006{font-size:72.000000px;}
.fs1_c01006{font-size:84.240000px;}
.y0_c01006{bottom:0.000000px;}
.y4_c01006{bottom:57.636000px;}
.y3_c01006{bottom:77.796000px;}
.y28_c01006{bottom:276.150000px;}
.y27_c01006{bottom:300.135000px;}
.y26_c01006{bottom:323.895000px;}
.y25_c01006{bottom:347.655000px;}
.y24_c01006{bottom:371.415000px;}
.y23_c01006{bottom:395.355000px;}
.y22_c01006{bottom:419.115000px;}
.y21_c01006{bottom:442.875000px;}
.y20_c01006{bottom:466.635000px;}
.y1f_c01006{bottom:490.575000px;}
.y1e_c01006{bottom:514.335000px;}
.y1d_c01006{bottom:538.095000px;}
.y1c_c01006{bottom:561.855000px;}
.y1b_c01006{bottom:585.825000px;}
.y1a_c01006{bottom:609.585000px;}
.y19_c01006{bottom:648.285000px;}
.y18_c01006{bottom:672.225000px;}
.y17_c01006{bottom:695.985000px;}
.y16_c01006{bottom:719.745000px;}
.y15_c01006{bottom:743.505000px;}
.y14_c01006{bottom:767.445000px;}
.y13_c01006{bottom:791.205000px;}
.y12_c01006{bottom:814.965000px;}
.y11_c01006{bottom:838.725000px;}
.y10_c01006{bottom:862.710000px;}
.yf_c01006{bottom:886.470000px;}
.ye_c01006{bottom:910.230000px;}
.yd_c01006{bottom:933.990000px;}
.yc_c01006{bottom:957.750000px;}
.yb_c01006{bottom:996.630000px;}
.ya_c01006{bottom:1020.390000px;}
.y9_c01006{bottom:1044.330000px;}
.y8_c01006{bottom:1068.090000px;}
.y7_c01006{bottom:1091.850000px;}
.y6_c01006{bottom:1113.270000px;}
.y5_c01006{bottom:1137.060000px;}
.y2_c01006{bottom:1174.680000px;}
.y1_c01006{bottom:1194.660000px;}
.h2_c01006{height:48.062812px;}
.h3_c01006{height:50.229844px;}
.h5_c01006{height:64.546875px;}
.h4_c01006{height:87.859687px;}
.h0_c01006{height:1262.880000px;}
.h1_c01006{height:1263.000000px;}
.w0_c01006{width:892.980000px;}
.w1_c01006{width:893.250000px;}
.x0_c01006{left:0.000000px;}
.x4_c01006{left:127.656000px;}
.x1_c01006{left:169.950000px;}
.x3_c01006{left:740.490000px;}
.x2_c01006{left:765.510000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls1_c01006{letter-spacing:-0.384000pt;}
.ls0_c01006{letter-spacing:0.000000pt;}
.ls2_c01006{letter-spacing:0.256000pt;}
.ws0_c01006{word-spacing:-17.408000pt;}
.ws1_c01006{word-spacing:0.000000pt;}
._10_c01006{margin-left:-4.459697pt;}
._6_c01006{margin-left:-3.328000pt;}
._7_c01006{margin-left:-2.409615pt;}
._0_c01006{margin-left:-1.236303pt;}
._2_c01006{width:0.916303pt;}
._3_c01006{width:2.162222pt;}
._a_c01006{width:3.264000pt;}
._1_c01006{width:4.544000pt;}
._b_c01006{width:6.016000pt;}
._c_c01006{width:8.064000pt;}
._9_c01006{width:9.536000pt;}
._8_c01006{width:10.624000pt;}
._d_c01006{width:14.122688pt;}
._5_c01006{width:15.232000pt;}
._4_c01006{width:16.192000pt;}
._e_c01006{width:22.208000pt;}
._f_c01006{width:24.128000pt;}
.fs0_c01006{font-size:58.880000pt;}
.fs2_c01006{font-size:64.000000pt;}
.fs1_c01006{font-size:74.880000pt;}
.y0_c01006{bottom:0.000000pt;}
.y4_c01006{bottom:51.232000pt;}
.y3_c01006{bottom:69.152000pt;}
.y28_c01006{bottom:245.466667pt;}
.y27_c01006{bottom:266.786667pt;}
.y26_c01006{bottom:287.906667pt;}
.y25_c01006{bottom:309.026667pt;}
.y24_c01006{bottom:330.146667pt;}
.y23_c01006{bottom:351.426667pt;}
.y22_c01006{bottom:372.546667pt;}
.y21_c01006{bottom:393.666667pt;}
.y20_c01006{bottom:414.786667pt;}
.y1f_c01006{bottom:436.066667pt;}
.y1e_c01006{bottom:457.186667pt;}
.y1d_c01006{bottom:478.306667pt;}
.y1c_c01006{bottom:499.426667pt;}
.y1b_c01006{bottom:520.733333pt;}
.y1a_c01006{bottom:541.853333pt;}
.y19_c01006{bottom:576.253333pt;}
.y18_c01006{bottom:597.533333pt;}
.y17_c01006{bottom:618.653333pt;}
.y16_c01006{bottom:639.773333pt;}
.y15_c01006{bottom:660.893333pt;}
.y14_c01006{bottom:682.173333pt;}
.y13_c01006{bottom:703.293333pt;}
.y12_c01006{bottom:724.413333pt;}
.y11_c01006{bottom:745.533333pt;}
.y10_c01006{bottom:766.853333pt;}
.yf_c01006{bottom:787.973333pt;}
.ye_c01006{bottom:809.093333pt;}
.yd_c01006{bottom:830.213333pt;}
.yc_c01006{bottom:851.333333pt;}
.yb_c01006{bottom:885.893333pt;}
.ya_c01006{bottom:907.013333pt;}
.y9_c01006{bottom:928.293333pt;}
.y8_c01006{bottom:949.413333pt;}
.y7_c01006{bottom:970.533333pt;}
.y6_c01006{bottom:989.573333pt;}
.y5_c01006{bottom:1010.720000pt;}
.y2_c01006{bottom:1044.160000pt;}
.y1_c01006{bottom:1061.920000pt;}
.h2_c01006{height:42.722500pt;}
.h3_c01006{height:44.648750pt;}
.h5_c01006{height:57.375000pt;}
.h4_c01006{height:78.097500pt;}
.h0_c01006{height:1122.560000pt;}
.h1_c01006{height:1122.666667pt;}
.w0_c01006{width:793.760000pt;}
.w1_c01006{width:794.000000pt;}
.x0_c01006{left:0.000000pt;}
.x4_c01006{left:113.472000pt;}
.x1_c01006{left:151.066667pt;}
.x3_c01006{left:658.213333pt;}
.x2_c01006{left:680.453333pt;}
}





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

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01007;src:url('chunks/assets/font_27a3a71d1d0bb8fa9f1145fb.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01007;src:url('chunks/assets/font_4d7449d50e77668b3c754851.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01007;src:url('chunks/assets/font_608607d8a39f043a297cac5c.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01007;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;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;}
.m0_c01007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.ls1_c01007{letter-spacing:0.000000px;}
.ls0_c01007{letter-spacing:0.144000px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01007{word-spacing:0.000000px;}
._a_c01007{margin-left:-2.773109px;}
._0_c01007{margin-left:-1.258891px;}
._4_c01007{width:1.166170px;}
._5_c01007{width:2.520000px;}
._b_c01007{width:3.554194px;}
._7_c01007{width:4.584024px;}
._6_c01007{width:5.738170px;}
._3_c01007{width:6.778915px;}
._2_c01007{width:8.064000px;}
._9_c01007{width:9.176746px;}
._8_c01007{width:10.584000px;}
._1_c01007{width:656.904000px;}
.fc0_c01007{color:rgb(0,0,0);}
.fs2_c01007{font-size:59.760000px;}
.fs0_c01007{font-size:66.240000px;}
.fs1_c01007{font-size:72.000000px;}
.y0_c01007{bottom:0.000000px;}
.y14_c01007{bottom:7.560000px;}
.y19_c01007{bottom:9.555000px;}
.y16_c01007{bottom:18.375000px;}
.y18_c01007{bottom:27.015000px;}
.y4_c01007{bottom:57.636000px;}
.y3_c01007{bottom:77.796000px;}
.y12_c01007{bottom:122.976000px;}
.y11_c01007{bottom:146.736000px;}
.y10_c01007{bottom:170.490000px;}
.yf_c01007{bottom:194.430000px;}
.ye_c01007{bottom:233.130000px;}
.yd_c01007{bottom:256.890000px;}
.yc_c01007{bottom:280.830000px;}
.yb_c01007{bottom:304.635000px;}
.ya_c01007{bottom:328.395000px;}
.y9_c01007{bottom:352.155000px;}
.y17_c01007{bottom:383.280000px;}
.y15_c01007{bottom:390.300000px;}
.y8_c01007{bottom:391.035000px;}
.y7_c01007{bottom:425.775000px;}
.y6_c01007{bottom:706.785000px;}
.y13_c01007{bottom:715.605000px;}
.y5_c01007{bottom:741.525000px;}
.y2_c01007{bottom:1174.680000px;}
.y1_c01007{bottom:1194.660000px;}
.h5_c01007{height:21.420000px;}
.h7_c01007{height:32.220000px;}
.h8_c01007{height:40.680000px;}
.h2_c01007{height:48.062812px;}
.h3_c01007{height:50.229844px;}
.h6_c01007{height:53.428008px;}
.h4_c01007{height:64.546875px;}
.h9_c01007{height:75.093750px;}
.h0_c01007{height:1262.880000px;}
.h1_c01007{height:1263.000000px;}
.w4_c01007{width:176.760000px;}
.w3_c01007{width:256.530000px;}
.w2_c01007{width:290.370000px;}
.w0_c01007{width:892.980000px;}
.w1_c01007{width:893.250000px;}
.x0_c01007{left:0.000000px;}
.x1_c01007{left:127.656000px;}
.x4_c01007{left:173.550000px;}
.x5_c01007{left:193.005000px;}
.x6_c01007{left:232.965000px;}
.x3_c01007{left:490.575000px;}
.x7_c01007{left:496.740000px;}
.x2_c01007{left:700.890000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls1_c01007{letter-spacing:0.000000pt;}
.ls0_c01007{letter-spacing:0.128000pt;}
.ws0_c01007{word-spacing:0.000000pt;}
._a_c01007{margin-left:-2.464986pt;}
._0_c01007{margin-left:-1.119014pt;}
._4_c01007{width:1.036595pt;}
._5_c01007{width:2.240000pt;}
._b_c01007{width:3.159283pt;}
._7_c01007{width:4.074688pt;}
._6_c01007{width:5.100595pt;}
._3_c01007{width:6.025702pt;}
._2_c01007{width:7.168000pt;}
._9_c01007{width:8.157107pt;}
._8_c01007{width:9.408000pt;}
._1_c01007{width:583.914667pt;}
.fs2_c01007{font-size:53.120000pt;}
.fs0_c01007{font-size:58.880000pt;}
.fs1_c01007{font-size:64.000000pt;}
.y0_c01007{bottom:0.000000pt;}
.y14_c01007{bottom:6.720000pt;}
.y19_c01007{bottom:8.493333pt;}
.y16_c01007{bottom:16.333333pt;}
.y18_c01007{bottom:24.013333pt;}
.y4_c01007{bottom:51.232000pt;}
.y3_c01007{bottom:69.152000pt;}
.y12_c01007{bottom:109.312000pt;}
.y11_c01007{bottom:130.432000pt;}
.y10_c01007{bottom:151.546667pt;}
.yf_c01007{bottom:172.826667pt;}
.ye_c01007{bottom:207.226667pt;}
.yd_c01007{bottom:228.346667pt;}
.yc_c01007{bottom:249.626667pt;}
.yb_c01007{bottom:270.786667pt;}
.ya_c01007{bottom:291.906667pt;}
.y9_c01007{bottom:313.026667pt;}
.y17_c01007{bottom:340.693333pt;}
.y15_c01007{bottom:346.933333pt;}
.y8_c01007{bottom:347.586667pt;}
.y7_c01007{bottom:378.466667pt;}
.y6_c01007{bottom:628.253333pt;}
.y13_c01007{bottom:636.093333pt;}
.y5_c01007{bottom:659.133333pt;}
.y2_c01007{bottom:1044.160000pt;}
.y1_c01007{bottom:1061.920000pt;}
.h5_c01007{height:19.040000pt;}
.h7_c01007{height:28.640000pt;}
.h8_c01007{height:36.160000pt;}
.h2_c01007{height:42.722500pt;}
.h3_c01007{height:44.648750pt;}
.h6_c01007{height:47.491563pt;}
.h4_c01007{height:57.375000pt;}
.h9_c01007{height:66.750000pt;}
.h0_c01007{height:1122.560000pt;}
.h1_c01007{height:1122.666667pt;}
.w4_c01007{width:157.120000pt;}
.w3_c01007{width:228.026667pt;}
.w2_c01007{width:258.106667pt;}
.w0_c01007{width:793.760000pt;}
.w1_c01007{width:794.000000pt;}
.x0_c01007{left:0.000000pt;}
.x1_c01007{left:113.472000pt;}
.x4_c01007{left:154.266667pt;}
.x5_c01007{left:171.560000pt;}
.x6_c01007{left:207.080000pt;}
.x3_c01007{left:436.066667pt;}
.x7_c01007{left:441.546667pt;}
.x2_c01007{left:623.013333pt;}
}





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

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01008;src:url('chunks/assets/font_53cf0e5b954b7b31bde17ab0.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01008;src:url('chunks/assets/font_686abaf77f03bc4235bc7b90.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01008;src:url('chunks/assets/font_b4abceb68d2390a979aa92a7.woff2')format("woff");}.ff4_c01008{font-family:ff4_c01008;line-height:1.104492;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_03d6d88b2daac92d97921380.woff2')format("woff");}.ff5_c01008{font-family:ff5_c01008;line-height:1.113281;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff6_c01008{font-family:ff6_c01008;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_c01008;src:url('chunks/assets/font_2e5631e316dc0d4c8620eebe.woff2')format("woff");}.ff7_c01008{font-family:ff7_c01008;line-height:1.575000;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_5b57e1e53afe0e461ab3570e.woff2')format("woff");}.ff8_c01008{font-family:ff8_c01008;line-height:1.211914;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_9a8e0c26773fdcc088f8f9ec.woff2')format("woff");}.ff9_c01008{font-family:ff9_c01008;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls4_c01008{letter-spacing:-0.720000px;}
.ls6_c01008{letter-spacing:-0.432000px;}
.lsa_c01008{letter-spacing:-0.247800px;}
.ls7_c01008{letter-spacing:-0.181200px;}
.lsb_c01008{letter-spacing:-0.152400px;}
.ls5_c01008{letter-spacing:-0.144000px;}
.ls8_c01008{letter-spacing:-0.072000px;}
.ls3_c01008{letter-spacing:0.000000px;}
.ls9_c01008{letter-spacing:0.150000px;}
.ls0_c01008{letter-spacing:0.288000px;}
.ls2_c01008{letter-spacing:20.304000px;}
.ls1_c01008{letter-spacing:23.904000px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01008{word-spacing:-21.035520px;}
.ws1_c01008{word-spacing:-20.304000px;}
.ws2_c01008{word-spacing:-19.944000px;}
.ws0_c01008{word-spacing:-19.872000px;}
.ws4_c01008{word-spacing:0.000000px;}
._6_c01008{margin-left:-3.528000px;}
._5_c01008{margin-left:-2.520000px;}
._0_c01008{margin-left:-1.390841px;}
._2_c01008{width:1.115808px;}
._b_c01008{width:2.232000px;}
._a_c01008{width:3.384000px;}
._c_c01008{width:5.400000px;}
._e_c01008{width:6.766793px;}
._d_c01008{width:8.112024px;}
._4_c01008{width:9.864000px;}
._7_c01008{width:11.208000px;}
._14_c01008{width:12.600000px;}
._16_c01008{width:13.932192px;}
._15_c01008{width:14.976000px;}
._13_c01008{width:16.690841px;}
._1_c01008{width:18.120024px;}
._10_c01008{width:23.760000px;}
._f_c01008{width:24.912000px;}
._3_c01008{width:27.432000px;}
._11_c01008{width:29.592000px;}
._12_c01008{width:30.744000px;}
._9_c01008{width:48.168000px;}
._8_c01008{width:66.936024px;}
.fc0_c01008{color:rgb(0,0,0);}
.fs4_c01008{font-size:38.880000px;}
.fs3_c01008{font-size:48.240000px;}
.fs5_c01008{font-size:59.760000px;}
.fs0_c01008{font-size:66.240000px;}
.fs1_c01008{font-size:72.000000px;}
.fs2_c01008{font-size:84.240000px;}
.y0_c01008{bottom:0.000000px;}
.y30_c01008{bottom:19.800000px;}
.y4_c01008{bottom:57.636000px;}
.y3_c01008{bottom:77.796000px;}
.y2e_c01008{bottom:109.296000px;}
.y2d_c01008{bottom:127.656000px;}
.y2c_c01008{bottom:132.876000px;}
.y2b_c01008{bottom:147.276000px;}
.y2a_c01008{bottom:192.450000px;}
.y29_c01008{bottom:216.210000px;}
.y28_c01008{bottom:239.970000px;}
.y27_c01008{bottom:263.910000px;}
.y26_c01008{bottom:302.655000px;}
.y24_c01008{bottom:326.415000px;}
.y25_c01008{bottom:332.355000px;}
.y23_c01008{bottom:350.355000px;}
.y22_c01008{bottom:374.295000px;}
.y21_c01008{bottom:398.055000px;}
.y20_c01008{bottom:421.635000px;}
.y1f_c01008{bottom:445.575000px;}
.y1e_c01008{bottom:469.515000px;}
.y1d_c01008{bottom:493.095000px;}
.y1c_c01008{bottom:516.855000px;}
.y1b_c01008{bottom:540.795000px;}
.y1a_c01008{bottom:564.585000px;}
.y19_c01008{bottom:588.345000px;}
.y18_c01008{bottom:612.105000px;}
.y17_c01008{bottom:633.525000px;}
.y16_c01008{bottom:657.285000px;}
.y15_c01008{bottom:698.865000px;}
.y14_c01008{bottom:737.745000px;}
.y2f_c01008{bottom:744.765000px;}
.y13_c01008{bottom:776.445000px;}
.y12_c01008{bottom:815.325000px;}
.y11_c01008{bottom:839.085000px;}
.y10_c01008{bottom:862.890000px;}
.yf_c01008{bottom:886.650000px;}
.ye_c01008{bottom:910.590000px;}
.yd_c01008{bottom:934.350000px;}
.yc_c01008{bottom:958.110000px;}
.yb_c01008{bottom:981.870000px;}
.ya_c01008{bottom:1005.810000px;}
.y9_c01008{bottom:1029.570000px;}
.y8_c01008{bottom:1053.330000px;}
.y7_c01008{bottom:1092.210000px;}
.y6_c01008{bottom:1115.970000px;}
.y5_c01008{bottom:1139.940000px;}
.y2_c01008{bottom:1174.680000px;}
.y1_c01008{bottom:1194.660000px;}
.hb_c01008{height:33.660000px;}
.h9_c01008{height:41.484960px;}
.h8_c01008{height:43.246406px;}
.h2_c01008{height:48.062812px;}
.h3_c01008{height:50.229844px;}
.hc_c01008{height:53.428008px;}
.ha_c01008{height:63.763920px;}
.h4_c01008{height:64.546875px;}
.h5_c01008{height:65.003906px;}
.h6_c01008{height:87.859687px;}
.h7_c01008{height:1262.865000px;}
.h0_c01008{height:1262.880000px;}
.h1_c01008{height:1263.000000px;}
.w3_c01008{width:208.110000px;}
.w2_c01008{width:892.957500px;}
.w0_c01008{width:892.980000px;}
.w1_c01008{width:893.250000px;}
.x0_c01008{left:0.000000px;}
.x4_c01008{left:127.656000px;}
.xa_c01008{left:139.896000px;}
.x7_c01008{left:154.650000px;}
.x1_c01008{left:169.950000px;}
.x8_c01008{left:181.650000px;}
.x5_c01008{left:235.807500px;}
.x6_c01008{left:249.150000px;}
.x9_c01008{left:343.695000px;}
.xb_c01008{left:556.320000px;}
.x3_c01008{left:740.490000px;}
.x2_c01008{left:765.510000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls4_c01008{letter-spacing:-0.640000pt;}
.ls6_c01008{letter-spacing:-0.384000pt;}
.lsa_c01008{letter-spacing:-0.220267pt;}
.ls7_c01008{letter-spacing:-0.161067pt;}
.lsb_c01008{letter-spacing:-0.135467pt;}
.ls5_c01008{letter-spacing:-0.128000pt;}
.ls8_c01008{letter-spacing:-0.064000pt;}
.ls3_c01008{letter-spacing:0.000000pt;}
.ls9_c01008{letter-spacing:0.133333pt;}
.ls0_c01008{letter-spacing:0.256000pt;}
.ls2_c01008{letter-spacing:18.048000pt;}
.ls1_c01008{letter-spacing:21.248000pt;}
.ws3_c01008{word-spacing:-18.698240pt;}
.ws1_c01008{word-spacing:-18.048000pt;}
.ws2_c01008{word-spacing:-17.728000pt;}
.ws0_c01008{word-spacing:-17.664000pt;}
.ws4_c01008{word-spacing:0.000000pt;}
._6_c01008{margin-left:-3.136000pt;}
._5_c01008{margin-left:-2.240000pt;}
._0_c01008{margin-left:-1.236303pt;}
._2_c01008{width:0.991829pt;}
._b_c01008{width:1.984000pt;}
._a_c01008{width:3.008000pt;}
._c_c01008{width:4.800000pt;}
._e_c01008{width:6.014927pt;}
._d_c01008{width:7.210688pt;}
._4_c01008{width:8.768000pt;}
._7_c01008{width:9.962667pt;}
._14_c01008{width:11.200000pt;}
._16_c01008{width:12.384171pt;}
._15_c01008{width:13.312000pt;}
._13_c01008{width:14.836303pt;}
._1_c01008{width:16.106688pt;}
._10_c01008{width:21.120000pt;}
._f_c01008{width:22.144000pt;}
._3_c01008{width:24.384000pt;}
._11_c01008{width:26.304000pt;}
._12_c01008{width:27.328000pt;}
._9_c01008{width:42.816000pt;}
._8_c01008{width:59.498688pt;}
.fs4_c01008{font-size:34.560000pt;}
.fs3_c01008{font-size:42.880000pt;}
.fs5_c01008{font-size:53.120000pt;}
.fs0_c01008{font-size:58.880000pt;}
.fs1_c01008{font-size:64.000000pt;}
.fs2_c01008{font-size:74.880000pt;}
.y0_c01008{bottom:0.000000pt;}
.y30_c01008{bottom:17.600000pt;}
.y4_c01008{bottom:51.232000pt;}
.y3_c01008{bottom:69.152000pt;}
.y2e_c01008{bottom:97.152000pt;}
.y2d_c01008{bottom:113.472000pt;}
.y2c_c01008{bottom:118.112000pt;}
.y2b_c01008{bottom:130.912000pt;}
.y2a_c01008{bottom:171.066667pt;}
.y29_c01008{bottom:192.186667pt;}
.y28_c01008{bottom:213.306667pt;}
.y27_c01008{bottom:234.586667pt;}
.y26_c01008{bottom:269.026667pt;}
.y24_c01008{bottom:290.146667pt;}
.y25_c01008{bottom:295.426667pt;}
.y23_c01008{bottom:311.426667pt;}
.y22_c01008{bottom:332.706667pt;}
.y21_c01008{bottom:353.826667pt;}
.y20_c01008{bottom:374.786667pt;}
.y1f_c01008{bottom:396.066667pt;}
.y1e_c01008{bottom:417.346667pt;}
.y1d_c01008{bottom:438.306667pt;}
.y1c_c01008{bottom:459.426667pt;}
.y1b_c01008{bottom:480.706667pt;}
.y1a_c01008{bottom:501.853333pt;}
.y19_c01008{bottom:522.973333pt;}
.y18_c01008{bottom:544.093333pt;}
.y17_c01008{bottom:563.133333pt;}
.y16_c01008{bottom:584.253333pt;}
.y15_c01008{bottom:621.213333pt;}
.y14_c01008{bottom:655.773333pt;}
.y2f_c01008{bottom:662.013333pt;}
.y13_c01008{bottom:690.173333pt;}
.y12_c01008{bottom:724.733333pt;}
.y11_c01008{bottom:745.853333pt;}
.y10_c01008{bottom:767.013333pt;}
.yf_c01008{bottom:788.133333pt;}
.ye_c01008{bottom:809.413333pt;}
.yd_c01008{bottom:830.533333pt;}
.yc_c01008{bottom:851.653333pt;}
.yb_c01008{bottom:872.773333pt;}
.ya_c01008{bottom:894.053333pt;}
.y9_c01008{bottom:915.173333pt;}
.y8_c01008{bottom:936.293333pt;}
.y7_c01008{bottom:970.853333pt;}
.y6_c01008{bottom:991.973333pt;}
.y5_c01008{bottom:1013.280000pt;}
.y2_c01008{bottom:1044.160000pt;}
.y1_c01008{bottom:1061.920000pt;}
.hb_c01008{height:29.920000pt;}
.h9_c01008{height:36.875520pt;}
.h8_c01008{height:38.441250pt;}
.h2_c01008{height:42.722500pt;}
.h3_c01008{height:44.648750pt;}
.hc_c01008{height:47.491563pt;}
.ha_c01008{height:56.679040pt;}
.h4_c01008{height:57.375000pt;}
.h5_c01008{height:57.781250pt;}
.h6_c01008{height:78.097500pt;}
.h7_c01008{height:1122.546667pt;}
.h0_c01008{height:1122.560000pt;}
.h1_c01008{height:1122.666667pt;}
.w3_c01008{width:184.986667pt;}
.w2_c01008{width:793.740000pt;}
.w0_c01008{width:793.760000pt;}
.w1_c01008{width:794.000000pt;}
.x0_c01008{left:0.000000pt;}
.x4_c01008{left:113.472000pt;}
.xa_c01008{left:124.352000pt;}
.x7_c01008{left:137.466667pt;}
.x1_c01008{left:151.066667pt;}
.x8_c01008{left:161.466667pt;}
.x5_c01008{left:209.606667pt;}
.x6_c01008{left:221.466667pt;}
.x9_c01008{left:305.506667pt;}
.xb_c01008{left:494.506667pt;}
.x3_c01008{left:658.213333pt;}
.x2_c01008{left:680.453333pt;}
}





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

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01009;src:url('chunks/assets/font_53cf0e5b954b7b31bde17ab0.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01009;src:url('chunks/assets/font_967b3264a6ea0cba1cdc21a0.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01009;src:url('chunks/assets/font_f13eda28a0e8b7465c982a31.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01009;src:url('chunks/assets/font_ae2cdf091c1f9862f7fa1024.woff2')format("woff");}.ff5_c01009{font-family:ff5_c01009;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01009;src:url('chunks/assets/font_b9ae72fb799bc49ad2991562.woff2')format("woff");}.ff6_c01009{font-family:ff6_c01009;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01009;src:url('chunks/assets/font_8e18ba7024d05118b6e37e9f.woff2')format("woff");}.ff7_c01009{font-family:ff7_c01009;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01009;src:url('chunks/assets/font_5eed56ca9d2403ceed096818.woff2')format("woff");}.ff8_c01009{font-family:ff8_c01009;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.ls6_c01009{letter-spacing:-0.432000px;}
.ls9_c01009{letter-spacing:-0.247800px;}
.ls7_c01009{letter-spacing:-0.181200px;}
.lsa_c01009{letter-spacing:-0.152400px;}
.ls4_c01009{letter-spacing:-0.072000px;}
.ls3_c01009{letter-spacing:0.000000px;}
.ls8_c01009{letter-spacing:0.150000px;}
.ls2_c01009{letter-spacing:0.152400px;}
.ls5_c01009{letter-spacing:0.288000px;}
.ls0_c01009{letter-spacing:20.304000px;}
.ls1_c01009{letter-spacing:23.904000px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01009{word-spacing:-21.187920px;}
.ws1_c01009{word-spacing:-20.304000px;}
.ws2_c01009{word-spacing:-20.016000px;}
.ws0_c01009{word-spacing:-19.944000px;}
.ws4_c01009{word-spacing:0.000000px;}
._f_c01009{margin-left:-4.895698px;}
._e_c01009{margin-left:-3.612470px;}
._9_c01009{margin-left:-2.559326px;}
._0_c01009{margin-left:-1.258891px;}
._1_c01009{width:1.186891px;}
._4_c01009{width:2.736000px;}
._6_c01009{width:3.802867px;}
._7_c01009{width:5.304024px;}
._10_c01009{width:7.211952px;}
._3_c01009{width:8.662939px;}
._2_c01009{width:9.792000px;}
._8_c01009{width:11.520000px;}
._5_c01009{width:15.120000px;}
._a_c01009{width:18.792000px;}
._c_c01009{width:28.512000px;}
._b_c01009{width:30.168000px;}
._d_c01009{width:31.382266px;}
.fc0_c01009{color:rgb(0,0,0);}
.fs3_c01009{font-size:38.880000px;}
.fs2_c01009{font-size:48.240000px;}
.fs4_c01009{font-size:59.760000px;}
.fs0_c01009{font-size:66.240000px;}
.fs1_c01009{font-size:72.000000px;}
.y0_c01009{bottom:0.000000px;}
.y4_c01009{bottom:57.636000px;}
.y3_c01009{bottom:77.796000px;}
.y2a_c01009{bottom:109.296000px;}
.y29_c01009{bottom:127.656000px;}
.y28_c01009{bottom:132.876000px;}
.y27_c01009{bottom:145.836000px;}
.y26_c01009{bottom:164.010000px;}
.y25_c01009{bottom:182.190000px;}
.y24_c01009{bottom:187.410000px;}
.y23_c01009{bottom:201.990000px;}
.y22_c01009{bottom:452.235000px;}
.y21_c01009{bottom:475.995000px;}
.y20_c01009{bottom:499.575000px;}
.y1f_c01009{bottom:523.335000px;}
.y1e_c01009{bottom:547.275000px;}
.y1d_c01009{bottom:586.005000px;}
.y1c_c01009{bottom:609.765000px;}
.y1b_c01009{bottom:633.705000px;}
.y19_c01009{bottom:657.465000px;}
.y1a_c01009{bottom:663.405000px;}
.y18_c01009{bottom:681.405000px;}
.y17_c01009{bottom:704.985000px;}
.y16_c01009{bottom:728.925000px;}
.y15_c01009{bottom:752.685000px;}
.y14_c01009{bottom:791.385000px;}
.y13_c01009{bottom:815.325000px;}
.y12_c01009{bottom:839.085000px;}
.y11_c01009{bottom:862.890000px;}
.yf_c01009{bottom:886.650000px;}
.y10_c01009{bottom:892.590000px;}
.ye_c01009{bottom:910.590000px;}
.yd_c01009{bottom:934.350000px;}
.yc_c01009{bottom:958.110000px;}
.yb_c01009{bottom:981.870000px;}
.ya_c01009{bottom:1005.810000px;}
.y9_c01009{bottom:1029.570000px;}
.y8_c01009{bottom:1053.330000px;}
.y7_c01009{bottom:1092.210000px;}
.y6_c01009{bottom:1115.970000px;}
.y5_c01009{bottom:1139.760000px;}
.y2_c01009{bottom:1174.680000px;}
.y1_c01009{bottom:1194.660000px;}
.h8_c01009{height:41.484960px;}
.h7_c01009{height:43.246406px;}
.h2_c01009{height:48.062812px;}
.h3_c01009{height:50.229844px;}
.h9_c01009{height:63.763920px;}
.h5_c01009{height:64.546875px;}
.h4_c01009{height:65.003906px;}
.h6_c01009{height:1262.865000px;}
.h0_c01009{height:1262.880000px;}
.h1_c01009{height:1263.000000px;}
.w2_c01009{width:892.957500px;}
.w0_c01009{width:892.980000px;}
.w1_c01009{width:893.250000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:127.656000px;}
.x9_c01009{left:139.896000px;}
.x2_c01009{left:154.650000px;}
.x3_c01009{left:181.650000px;}
.x8_c01009{left:343.695000px;}
.x4_c01009{left:481.552500px;}
.x5_c01009{left:494.925000px;}
.x6_c01009{left:573.022500px;}
.x7_c01009{left:586.365000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls6_c01009{letter-spacing:-0.384000pt;}
.ls9_c01009{letter-spacing:-0.220267pt;}
.ls7_c01009{letter-spacing:-0.161067pt;}
.lsa_c01009{letter-spacing:-0.135467pt;}
.ls4_c01009{letter-spacing:-0.064000pt;}
.ls3_c01009{letter-spacing:0.000000pt;}
.ls8_c01009{letter-spacing:0.133333pt;}
.ls2_c01009{letter-spacing:0.135467pt;}
.ls5_c01009{letter-spacing:0.256000pt;}
.ls0_c01009{letter-spacing:18.048000pt;}
.ls1_c01009{letter-spacing:21.248000pt;}
.ws3_c01009{word-spacing:-18.833707pt;}
.ws1_c01009{word-spacing:-18.048000pt;}
.ws2_c01009{word-spacing:-17.792000pt;}
.ws0_c01009{word-spacing:-17.728000pt;}
.ws4_c01009{word-spacing:0.000000pt;}
._f_c01009{margin-left:-4.351731pt;}
._e_c01009{margin-left:-3.211085pt;}
._9_c01009{margin-left:-2.274957pt;}
._0_c01009{margin-left:-1.119014pt;}
._1_c01009{width:1.055014pt;}
._4_c01009{width:2.432000pt;}
._6_c01009{width:3.380326pt;}
._7_c01009{width:4.714688pt;}
._10_c01009{width:6.410624pt;}
._3_c01009{width:7.700390pt;}
._2_c01009{width:8.704000pt;}
._8_c01009{width:10.240000pt;}
._5_c01009{width:13.440000pt;}
._a_c01009{width:16.704000pt;}
._c_c01009{width:25.344000pt;}
._b_c01009{width:26.816000pt;}
._d_c01009{width:27.895347pt;}
.fs3_c01009{font-size:34.560000pt;}
.fs2_c01009{font-size:42.880000pt;}
.fs4_c01009{font-size:53.120000pt;}
.fs0_c01009{font-size:58.880000pt;}
.fs1_c01009{font-size:64.000000pt;}
.y0_c01009{bottom:0.000000pt;}
.y4_c01009{bottom:51.232000pt;}
.y3_c01009{bottom:69.152000pt;}
.y2a_c01009{bottom:97.152000pt;}
.y29_c01009{bottom:113.472000pt;}
.y28_c01009{bottom:118.112000pt;}
.y27_c01009{bottom:129.632000pt;}
.y26_c01009{bottom:145.786667pt;}
.y25_c01009{bottom:161.946667pt;}
.y24_c01009{bottom:166.586667pt;}
.y23_c01009{bottom:179.546667pt;}
.y22_c01009{bottom:401.986667pt;}
.y21_c01009{bottom:423.106667pt;}
.y20_c01009{bottom:444.066667pt;}
.y1f_c01009{bottom:465.186667pt;}
.y1e_c01009{bottom:486.466667pt;}
.y1d_c01009{bottom:520.893333pt;}
.y1c_c01009{bottom:542.013333pt;}
.y1b_c01009{bottom:563.293333pt;}
.y19_c01009{bottom:584.413333pt;}
.y1a_c01009{bottom:589.693333pt;}
.y18_c01009{bottom:605.693333pt;}
.y17_c01009{bottom:626.653333pt;}
.y16_c01009{bottom:647.933333pt;}
.y15_c01009{bottom:669.053333pt;}
.y14_c01009{bottom:703.453333pt;}
.y13_c01009{bottom:724.733333pt;}
.y12_c01009{bottom:745.853333pt;}
.y11_c01009{bottom:767.013333pt;}
.yf_c01009{bottom:788.133333pt;}
.y10_c01009{bottom:793.413333pt;}
.ye_c01009{bottom:809.413333pt;}
.yd_c01009{bottom:830.533333pt;}
.yc_c01009{bottom:851.653333pt;}
.yb_c01009{bottom:872.773333pt;}
.ya_c01009{bottom:894.053333pt;}
.y9_c01009{bottom:915.173333pt;}
.y8_c01009{bottom:936.293333pt;}
.y7_c01009{bottom:970.853333pt;}
.y6_c01009{bottom:991.973333pt;}
.y5_c01009{bottom:1013.120000pt;}
.y2_c01009{bottom:1044.160000pt;}
.y1_c01009{bottom:1061.920000pt;}
.h8_c01009{height:36.875520pt;}
.h7_c01009{height:38.441250pt;}
.h2_c01009{height:42.722500pt;}
.h3_c01009{height:44.648750pt;}
.h9_c01009{height:56.679040pt;}
.h5_c01009{height:57.375000pt;}
.h4_c01009{height:57.781250pt;}
.h6_c01009{height:1122.546667pt;}
.h0_c01009{height:1122.560000pt;}
.h1_c01009{height:1122.666667pt;}
.w2_c01009{width:793.740000pt;}
.w0_c01009{width:793.760000pt;}
.w1_c01009{width:794.000000pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:113.472000pt;}
.x9_c01009{left:124.352000pt;}
.x2_c01009{left:137.466667pt;}
.x3_c01009{left:161.466667pt;}
.x8_c01009{left:305.506667pt;}
.x4_c01009{left:428.046667pt;}
.x5_c01009{left:439.933333pt;}
.x6_c01009{left:509.353333pt;}
.x7_c01009{left:521.213333pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01010;src:url('chunks/assets/font_58aef75a98e0ffa1a3350f92.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01010;src:url('chunks/assets/font_6799faed31f78ff5bc9e9298.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01010;src:url('chunks/assets/font_630514301eca7d0c964aff12.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01010;src:url('chunks/assets/font_b3427e1f0b3a0c04ef9f55db.woff2')format("woff");}.ff5_c01010{font-family:ff5_c01010;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01010;src:url('chunks/assets/font_784a20e7c8c6591100ad3c1e.woff2')format("woff");}.ff6_c01010{font-family:ff6_c01010;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01010;src:url('chunks/assets/font_9b37b99579f9e5f02cbcbc8f.woff2')format("woff");}.ff7_c01010{font-family:ff7_c01010;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls5_c01010{letter-spacing:-0.720000px;}
.ls8_c01010{letter-spacing:-0.247800px;}
.ls4_c01010{letter-spacing:-0.181200px;}
.lsa_c01010{letter-spacing:-0.053400px;}
.ls3_c01010{letter-spacing:0.000000px;}
.ls1_c01010{letter-spacing:0.144000px;}
.ls7_c01010{letter-spacing:0.150000px;}
.ls2_c01010{letter-spacing:0.152400px;}
.ls6_c01010{letter-spacing:0.216000px;}
.ls0_c01010{letter-spacing:0.288000px;}
.ls9_c01010{letter-spacing:0.331800px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01010{word-spacing:-21.367320px;}
.ws5_c01010{word-spacing:-21.187920px;}
.ws3_c01010{word-spacing:-21.035520px;}
.ws2_c01010{word-spacing:-20.304000px;}
.ws1_c01010{word-spacing:-20.232000px;}
.ws0_c01010{word-spacing:-20.016000px;}
.ws6_c01010{word-spacing:0.000000px;}
._d_c01010{margin-left:-2.569159px;}
._0_c01010{margin-left:-1.390841px;}
._6_c01010{width:1.092000px;}
._5_c01010{width:2.232000px;}
._4_c01010{width:3.816000px;}
._a_c01010{width:5.688000px;}
._1a_c01010{width:7.128000px;}
._f_c01010{width:8.712000px;}
._10_c01010{width:10.884000px;}
._c_c01010{width:12.960000px;}
._14_c01010{width:14.328000px;}
._1_c01010{width:15.552000px;}
._7_c01010{width:17.064000px;}
._11_c01010{width:21.384000px;}
._16_c01010{width:22.608000px;}
._15_c01010{width:23.904000px;}
._b_c01010{width:25.056000px;}
._3_c01010{width:26.064000px;}
._2_c01010{width:27.144000px;}
._8_c01010{width:32.256000px;}
._e_c01010{width:34.560000px;}
._13_c01010{width:41.616000px;}
._12_c01010{width:42.984000px;}
._1b_c01010{width:44.424000px;}
._9_c01010{width:48.960000px;}
._18_c01010{width:53.424000px;}
._19_c01010{width:54.563952px;}
._17_c01010{width:55.920024px;}
._1d_c01010{width:78.228000px;}
._1c_c01010{width:79.968000px;}
.fc0_c01010{color:rgb(0,0,0);}
.fs3_c01010{font-size:38.880000px;}
.fs2_c01010{font-size:48.240000px;}
.fs4_c01010{font-size:59.760000px;}
.fs0_c01010{font-size:66.240000px;}
.fs1_c01010{font-size:72.000000px;}
.y0_c01010{bottom:0.000000px;}
.y3c_c01010{bottom:7.395000px;}
.y3f_c01010{bottom:15.120000px;}
.y3b_c01010{bottom:24.855000px;}
.y3e_c01010{bottom:32.580000px;}
.y3a_c01010{bottom:42.135000px;}
.y4_c01010{bottom:57.636000px;}
.y39_c01010{bottom:59.235000px;}
.y3_c01010{bottom:77.796000px;}
.y37_c01010{bottom:109.296000px;}
.y36_c01010{bottom:127.656000px;}
.y35_c01010{bottom:132.876000px;}
.y34_c01010{bottom:145.836000px;}
.y33_c01010{bottom:164.010000px;}
.y32_c01010{bottom:169.230000px;}
.y31_c01010{bottom:182.190000px;}
.y30_c01010{bottom:200.550000px;}
.y2f_c01010{bottom:205.770000px;}
.y2e_c01010{bottom:218.730000px;}
.y2d_c01010{bottom:236.910000px;}
.y2c_c01010{bottom:255.090000px;}
.y2b_c01010{bottom:260.310000px;}
.y2a_c01010{bottom:274.890000px;}
.y38_c01010{bottom:299.760000px;}
.y29_c01010{bottom:333.075000px;}
.y28_c01010{bottom:371.775000px;}
.y27_c01010{bottom:410.655000px;}
.y26_c01010{bottom:449.355000px;}
.y25_c01010{bottom:473.115000px;}
.y24_c01010{bottom:497.235000px;}
.y23_c01010{bottom:520.995000px;}
.y22_c01010{bottom:544.755000px;}
.y21_c01010{bottom:568.545000px;}
.y20_c01010{bottom:592.485000px;}
.y1f_c01010{bottom:616.065000px;}
.y1e_c01010{bottom:639.825000px;}
.y1d_c01010{bottom:663.585000px;}
.y1c_c01010{bottom:687.525000px;}
.y1b_c01010{bottom:711.285000px;}
.y1a_c01010{bottom:735.045000px;}
.y19_c01010{bottom:758.985000px;}
.y3d_c01010{bottom:767.085000px;}
.y18_c01010{bottom:782.925000px;}
.y17_c01010{bottom:806.505000px;}
.y16_c01010{bottom:830.445000px;}
.y14_c01010{bottom:854.250000px;}
.y15_c01010{bottom:860.190000px;}
.y12_c01010{bottom:878.190000px;}
.y13_c01010{bottom:884.130000px;}
.y11_c01010{bottom:901.950000px;}
.yf_c01010{bottom:925.710000px;}
.y10_c01010{bottom:931.650000px;}
.ye_c01010{bottom:949.470000px;}
.yd_c01010{bottom:973.050000px;}
.yc_c01010{bottom:996.990000px;}
.yb_c01010{bottom:1020.750000px;}
.y9_c01010{bottom:1044.510000px;}
.ya_c01010{bottom:1050.450000px;}
.y8_c01010{bottom:1068.270000px;}
.y7_c01010{bottom:1092.390000px;}
.y6_c01010{bottom:1115.970000px;}
.y5_c01010{bottom:1139.760000px;}
.y2_c01010{bottom:1174.680000px;}
.y1_c01010{bottom:1194.660000px;}
.h8_c01010{height:41.484960px;}
.h6_c01010{height:43.246406px;}
.hc_c01010{height:46.260000px;}
.h2_c01010{height:48.062812px;}
.h3_c01010{height:50.229844px;}
.hb_c01010{height:53.428008px;}
.h9_c01010{height:63.763920px;}
.h7_c01010{height:64.371094px;}
.h4_c01010{height:64.546875px;}
.ha_c01010{height:72.900000px;}
.h5_c01010{height:1262.865000px;}
.h0_c01010{height:1262.880000px;}
.h1_c01010{height:1263.000000px;}
.w4_c01010{width:232.950000px;}
.w3_c01010{width:256.350000px;}
.w2_c01010{width:892.957500px;}
.w0_c01010{width:892.980000px;}
.w1_c01010{width:893.250000px;}
.x0_c01010{left:0.000000px;}
.x4_c01010{left:127.656000px;}
.x10_c01010{left:139.896000px;}
.x1_c01010{left:169.950000px;}
.xf_c01010{left:343.695000px;}
.x5_c01010{left:373.935000px;}
.xe_c01010{left:375.195000px;}
.x8_c01010{left:425.932500px;}
.x9_c01010{left:439.275000px;}
.x11_c01010{left:508.980000px;}
.x6_c01010{left:577.162500px;}
.x7_c01010{left:590.505000px;}
.xa_c01010{left:685.342500px;}
.xb_c01010{left:698.730000px;}
.x3_c01010{left:740.490000px;}
.xc_c01010{left:747.127500px;}
.xd_c01010{left:760.470000px;}
.x2_c01010{left:765.510000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls5_c01010{letter-spacing:-0.640000pt;}
.ls8_c01010{letter-spacing:-0.220267pt;}
.ls4_c01010{letter-spacing:-0.161067pt;}
.lsa_c01010{letter-spacing:-0.047467pt;}
.ls3_c01010{letter-spacing:0.000000pt;}
.ls1_c01010{letter-spacing:0.128000pt;}
.ls7_c01010{letter-spacing:0.133333pt;}
.ls2_c01010{letter-spacing:0.135467pt;}
.ls6_c01010{letter-spacing:0.192000pt;}
.ls0_c01010{letter-spacing:0.256000pt;}
.ls9_c01010{letter-spacing:0.294933pt;}
.ws4_c01010{word-spacing:-18.993173pt;}
.ws5_c01010{word-spacing:-18.833707pt;}
.ws3_c01010{word-spacing:-18.698240pt;}
.ws2_c01010{word-spacing:-18.048000pt;}
.ws1_c01010{word-spacing:-17.984000pt;}
.ws0_c01010{word-spacing:-17.792000pt;}
.ws6_c01010{word-spacing:0.000000pt;}
._d_c01010{margin-left:-2.283697pt;}
._0_c01010{margin-left:-1.236303pt;}
._6_c01010{width:0.970667pt;}
._5_c01010{width:1.984000pt;}
._4_c01010{width:3.392000pt;}
._a_c01010{width:5.056000pt;}
._1a_c01010{width:6.336000pt;}
._f_c01010{width:7.744000pt;}
._10_c01010{width:9.674667pt;}
._c_c01010{width:11.520000pt;}
._14_c01010{width:12.736000pt;}
._1_c01010{width:13.824000pt;}
._7_c01010{width:15.168000pt;}
._11_c01010{width:19.008000pt;}
._16_c01010{width:20.096000pt;}
._15_c01010{width:21.248000pt;}
._b_c01010{width:22.272000pt;}
._3_c01010{width:23.168000pt;}
._2_c01010{width:24.128000pt;}
._8_c01010{width:28.672000pt;}
._e_c01010{width:30.720000pt;}
._13_c01010{width:36.992000pt;}
._12_c01010{width:38.208000pt;}
._1b_c01010{width:39.488000pt;}
._9_c01010{width:43.520000pt;}
._18_c01010{width:47.488000pt;}
._19_c01010{width:48.501291pt;}
._17_c01010{width:49.706688pt;}
._1d_c01010{width:69.536000pt;}
._1c_c01010{width:71.082667pt;}
.fs3_c01010{font-size:34.560000pt;}
.fs2_c01010{font-size:42.880000pt;}
.fs4_c01010{font-size:53.120000pt;}
.fs0_c01010{font-size:58.880000pt;}
.fs1_c01010{font-size:64.000000pt;}
.y0_c01010{bottom:0.000000pt;}
.y3c_c01010{bottom:6.573333pt;}
.y3f_c01010{bottom:13.440000pt;}
.y3b_c01010{bottom:22.093333pt;}
.y3e_c01010{bottom:28.960000pt;}
.y3a_c01010{bottom:37.453333pt;}
.y4_c01010{bottom:51.232000pt;}
.y39_c01010{bottom:52.653333pt;}
.y3_c01010{bottom:69.152000pt;}
.y37_c01010{bottom:97.152000pt;}
.y36_c01010{bottom:113.472000pt;}
.y35_c01010{bottom:118.112000pt;}
.y34_c01010{bottom:129.632000pt;}
.y33_c01010{bottom:145.786667pt;}
.y32_c01010{bottom:150.426667pt;}
.y31_c01010{bottom:161.946667pt;}
.y30_c01010{bottom:178.266667pt;}
.y2f_c01010{bottom:182.906667pt;}
.y2e_c01010{bottom:194.426667pt;}
.y2d_c01010{bottom:210.586667pt;}
.y2c_c01010{bottom:226.746667pt;}
.y2b_c01010{bottom:231.386667pt;}
.y2a_c01010{bottom:244.346667pt;}
.y38_c01010{bottom:266.453333pt;}
.y29_c01010{bottom:296.066667pt;}
.y28_c01010{bottom:330.466667pt;}
.y27_c01010{bottom:365.026667pt;}
.y26_c01010{bottom:399.426667pt;}
.y25_c01010{bottom:420.546667pt;}
.y24_c01010{bottom:441.986667pt;}
.y23_c01010{bottom:463.106667pt;}
.y22_c01010{bottom:484.226667pt;}
.y21_c01010{bottom:505.373333pt;}
.y20_c01010{bottom:526.653333pt;}
.y1f_c01010{bottom:547.613333pt;}
.y1e_c01010{bottom:568.733333pt;}
.y1d_c01010{bottom:589.853333pt;}
.y1c_c01010{bottom:611.133333pt;}
.y1b_c01010{bottom:632.253333pt;}
.y1a_c01010{bottom:653.373333pt;}
.y19_c01010{bottom:674.653333pt;}
.y3d_c01010{bottom:681.853333pt;}
.y18_c01010{bottom:695.933333pt;}
.y17_c01010{bottom:716.893333pt;}
.y16_c01010{bottom:738.173333pt;}
.y14_c01010{bottom:759.333333pt;}
.y15_c01010{bottom:764.613333pt;}
.y12_c01010{bottom:780.613333pt;}
.y13_c01010{bottom:785.893333pt;}
.y11_c01010{bottom:801.733333pt;}
.yf_c01010{bottom:822.853333pt;}
.y10_c01010{bottom:828.133333pt;}
.ye_c01010{bottom:843.973333pt;}
.yd_c01010{bottom:864.933333pt;}
.yc_c01010{bottom:886.213333pt;}
.yb_c01010{bottom:907.333333pt;}
.y9_c01010{bottom:928.453333pt;}
.ya_c01010{bottom:933.733333pt;}
.y8_c01010{bottom:949.573333pt;}
.y7_c01010{bottom:971.013333pt;}
.y6_c01010{bottom:991.973333pt;}
.y5_c01010{bottom:1013.120000pt;}
.y2_c01010{bottom:1044.160000pt;}
.y1_c01010{bottom:1061.920000pt;}
.h8_c01010{height:36.875520pt;}
.h6_c01010{height:38.441250pt;}
.hc_c01010{height:41.120000pt;}
.h2_c01010{height:42.722500pt;}
.h3_c01010{height:44.648750pt;}
.hb_c01010{height:47.491563pt;}
.h9_c01010{height:56.679040pt;}
.h7_c01010{height:57.218750pt;}
.h4_c01010{height:57.375000pt;}
.ha_c01010{height:64.800000pt;}
.h5_c01010{height:1122.546667pt;}
.h0_c01010{height:1122.560000pt;}
.h1_c01010{height:1122.666667pt;}
.w4_c01010{width:207.066667pt;}
.w3_c01010{width:227.866667pt;}
.w2_c01010{width:793.740000pt;}
.w0_c01010{width:793.760000pt;}
.w1_c01010{width:794.000000pt;}
.x0_c01010{left:0.000000pt;}
.x4_c01010{left:113.472000pt;}
.x10_c01010{left:124.352000pt;}
.x1_c01010{left:151.066667pt;}
.xf_c01010{left:305.506667pt;}
.x5_c01010{left:332.386667pt;}
.xe_c01010{left:333.506667pt;}
.x8_c01010{left:378.606667pt;}
.x9_c01010{left:390.466667pt;}
.x11_c01010{left:452.426667pt;}
.x6_c01010{left:513.033333pt;}
.x7_c01010{left:524.893333pt;}
.xa_c01010{left:609.193333pt;}
.xb_c01010{left:621.093333pt;}
.x3_c01010{left:658.213333pt;}
.xc_c01010{left:664.113333pt;}
.xd_c01010{left:675.973333pt;}
.x2_c01010{left:680.453333pt;}
}





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

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01011;src:url('chunks/assets/font_e3a1e0a6bb58956846c66bf6.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01011;src:url('chunks/assets/font_66c3301e389f00af9dc8faca.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01011;src:url('chunks/assets/font_81f5bbc99c5226b1dfccbc1a.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01011;src:url('chunks/assets/font_4ee8bf03bd817f9431cd86e9.woff2')format("woff");}.ff5_c01011{font-family:ff5_c01011;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01011;src:url('chunks/assets/font_13283aebe588b90b097fbf0a.woff2')format("woff");}.ff6_c01011{font-family:ff6_c01011;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01011;src:url('chunks/assets/font_b60739a04c4ad1abe6e96c2a.woff2')format("woff");}.ff7_c01011{font-family:ff7_c01011;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.lsb_c01011{letter-spacing:-0.272400px;}
.ls9_c01011{letter-spacing:-0.247800px;}
.ls6_c01011{letter-spacing:-0.181200px;}
.lsc_c01011{letter-spacing:-0.152400px;}
.ls5_c01011{letter-spacing:0.000000px;}
.ls7_c01011{letter-spacing:0.144000px;}
.ls8_c01011{letter-spacing:0.150000px;}
.ls3_c01011{letter-spacing:0.174240px;}
.ls4_c01011{letter-spacing:0.209520px;}
.lsa_c01011{letter-spacing:0.567600px;}
.ls2_c01011{letter-spacing:0.650160px;}
.ls1_c01011{letter-spacing:1.584000px;}
.ls0_c01011{letter-spacing:11.364480px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01011{word-spacing:-21.035520px;}
.ws0_c01011{word-spacing:-20.016000px;}
.ws2_c01011{word-spacing:0.000000px;}
._9_c01011{margin-left:-2.952000px;}
._0_c01011{margin-left:-1.258891px;}
._3_c01011{width:1.944000px;}
._4_c01011{width:2.952000px;}
._5_c01011{width:4.104000px;}
._6_c01011{width:6.107976px;}
._b_c01011{width:7.848000px;}
._f_c01011{width:9.442915px;}
._7_c01011{width:10.584000px;}
._a_c01011{width:11.798266px;}
._2_c01011{width:13.066891px;}
._1_c01011{width:14.832000px;}
._8_c01011{width:16.848000px;}
._e_c01011{width:18.216000px;}
._d_c01011{width:22.932000px;}
._c_c01011{width:24.192000px;}
.fc0_c01011{color:rgb(0,0,0);}
.fs3_c01011{font-size:38.880000px;}
.fs2_c01011{font-size:48.240000px;}
.fs4_c01011{font-size:59.760000px;}
.fs0_c01011{font-size:66.240000px;}
.fs1_c01011{font-size:72.000000px;}
.y0_c01011{bottom:0.000000px;}
.y4_c01011{bottom:57.636000px;}
.y3_c01011{bottom:77.796000px;}
.y37_c01011{bottom:109.296000px;}
.y36_c01011{bottom:127.656000px;}
.y35_c01011{bottom:132.876000px;}
.y34_c01011{bottom:145.836000px;}
.y33_c01011{bottom:164.010000px;}
.y32_c01011{bottom:183.090000px;}
.y31_c01011{bottom:188.310000px;}
.y30_c01011{bottom:201.450000px;}
.y2f_c01011{bottom:219.630000px;}
.y2e_c01011{bottom:237.810000px;}
.y2d_c01011{bottom:255.990000px;}
.y2c_c01011{bottom:274.350000px;}
.y2b_c01011{bottom:279.570000px;}
.y2a_c01011{bottom:294.195000px;}
.y29_c01011{bottom:339.195000px;}
.y28_c01011{bottom:362.955000px;}
.y27_c01011{bottom:386.715000px;}
.y26_c01011{bottom:410.655000px;}
.y25_c01011{bottom:434.415000px;}
.y24_c01011{bottom:458.175000px;}
.y23_c01011{bottom:481.935000px;}
.y22_c01011{bottom:505.875000px;}
.y21_c01011{bottom:529.635000px;}
.y20_c01011{bottom:553.395000px;}
.y1f_c01011{bottom:577.185000px;}
.y1e_c01011{bottom:601.125000px;}
.y1d_c01011{bottom:624.885000px;}
.y1c_c01011{bottom:648.645000px;}
.y1a_c01011{bottom:687.525000px;}
.y1b_c01011{bottom:693.465000px;}
.y19_c01011{bottom:711.285000px;}
.y18_c01011{bottom:735.045000px;}
.y16_c01011{bottom:758.805000px;}
.y17_c01011{bottom:764.745000px;}
.y15_c01011{bottom:782.745000px;}
.y14_c01011{bottom:806.505000px;}
.y13_c01011{bottom:830.265000px;}
.y12_c01011{bottom:854.070000px;}
.y11_c01011{bottom:878.010000px;}
.y10_c01011{bottom:901.770000px;}
.yf_c01011{bottom:925.530000px;}
.yd_c01011{bottom:949.290000px;}
.ye_c01011{bottom:955.230000px;}
.yc_c01011{bottom:973.050000px;}
.yb_c01011{bottom:996.990000px;}
.ya_c01011{bottom:1020.930000px;}
.y9_c01011{bottom:1044.690000px;}
.y8_c01011{bottom:1068.270000px;}
.y7_c01011{bottom:1092.210000px;}
.y6_c01011{bottom:1115.970000px;}
.y5_c01011{bottom:1139.760000px;}
.y2_c01011{bottom:1174.680000px;}
.y1_c01011{bottom:1194.660000px;}
.h9_c01011{height:29.482734px;}
.h7_c01011{height:41.484960px;}
.h6_c01011{height:43.246406px;}
.h2_c01011{height:48.062812px;}
.h3_c01011{height:50.229844px;}
.ha_c01011{height:59.789180px;}
.h8_c01011{height:63.763920px;}
.h4_c01011{height:64.546875px;}
.h5_c01011{height:1262.865000px;}
.h0_c01011{height:1262.880000px;}
.h1_c01011{height:1263.000000px;}
.w2_c01011{width:892.957500px;}
.w0_c01011{width:892.980000px;}
.w1_c01011{width:893.250000px;}
.x0_c01011{left:0.000000px;}
.x1_c01011{left:127.656000px;}
.xa_c01011{left:137.376000px;}
.x9_c01011{left:139.896000px;}
.x6_c01011{left:166.687500px;}
.x7_c01011{left:180.030000px;}
.x4_c01011{left:270.727500px;}
.x5_c01011{left:284.070000px;}
.x8_c01011{left:343.695000px;}
.x2_c01011{left:666.802500px;}
.x3_c01011{left:680.145000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.lsb_c01011{letter-spacing:-0.242133pt;}
.ls9_c01011{letter-spacing:-0.220267pt;}
.ls6_c01011{letter-spacing:-0.161067pt;}
.lsc_c01011{letter-spacing:-0.135467pt;}
.ls5_c01011{letter-spacing:0.000000pt;}
.ls7_c01011{letter-spacing:0.128000pt;}
.ls8_c01011{letter-spacing:0.133333pt;}
.ls3_c01011{letter-spacing:0.154880pt;}
.ls4_c01011{letter-spacing:0.186240pt;}
.lsa_c01011{letter-spacing:0.504533pt;}
.ls2_c01011{letter-spacing:0.577920pt;}
.ls1_c01011{letter-spacing:1.408000pt;}
.ls0_c01011{letter-spacing:10.101760pt;}
.ws1_c01011{word-spacing:-18.698240pt;}
.ws0_c01011{word-spacing:-17.792000pt;}
.ws2_c01011{word-spacing:0.000000pt;}
._9_c01011{margin-left:-2.624000pt;}
._0_c01011{margin-left:-1.119014pt;}
._3_c01011{width:1.728000pt;}
._4_c01011{width:2.624000pt;}
._5_c01011{width:3.648000pt;}
._6_c01011{width:5.429312pt;}
._b_c01011{width:6.976000pt;}
._f_c01011{width:8.393702pt;}
._7_c01011{width:9.408000pt;}
._a_c01011{width:10.487347pt;}
._2_c01011{width:11.615014pt;}
._1_c01011{width:13.184000pt;}
._8_c01011{width:14.976000pt;}
._e_c01011{width:16.192000pt;}
._d_c01011{width:20.384000pt;}
._c_c01011{width:21.504000pt;}
.fs3_c01011{font-size:34.560000pt;}
.fs2_c01011{font-size:42.880000pt;}
.fs4_c01011{font-size:53.120000pt;}
.fs0_c01011{font-size:58.880000pt;}
.fs1_c01011{font-size:64.000000pt;}
.y0_c01011{bottom:0.000000pt;}
.y4_c01011{bottom:51.232000pt;}
.y3_c01011{bottom:69.152000pt;}
.y37_c01011{bottom:97.152000pt;}
.y36_c01011{bottom:113.472000pt;}
.y35_c01011{bottom:118.112000pt;}
.y34_c01011{bottom:129.632000pt;}
.y33_c01011{bottom:145.786667pt;}
.y32_c01011{bottom:162.746667pt;}
.y31_c01011{bottom:167.386667pt;}
.y30_c01011{bottom:179.066667pt;}
.y2f_c01011{bottom:195.226667pt;}
.y2e_c01011{bottom:211.386667pt;}
.y2d_c01011{bottom:227.546667pt;}
.y2c_c01011{bottom:243.866667pt;}
.y2b_c01011{bottom:248.506667pt;}
.y2a_c01011{bottom:261.506667pt;}
.y29_c01011{bottom:301.506667pt;}
.y28_c01011{bottom:322.626667pt;}
.y27_c01011{bottom:343.746667pt;}
.y26_c01011{bottom:365.026667pt;}
.y25_c01011{bottom:386.146667pt;}
.y24_c01011{bottom:407.266667pt;}
.y23_c01011{bottom:428.386667pt;}
.y22_c01011{bottom:449.666667pt;}
.y21_c01011{bottom:470.786667pt;}
.y20_c01011{bottom:491.906667pt;}
.y1f_c01011{bottom:513.053333pt;}
.y1e_c01011{bottom:534.333333pt;}
.y1d_c01011{bottom:555.453333pt;}
.y1c_c01011{bottom:576.573333pt;}
.y1a_c01011{bottom:611.133333pt;}
.y1b_c01011{bottom:616.413333pt;}
.y19_c01011{bottom:632.253333pt;}
.y18_c01011{bottom:653.373333pt;}
.y16_c01011{bottom:674.493333pt;}
.y17_c01011{bottom:679.773333pt;}
.y15_c01011{bottom:695.773333pt;}
.y14_c01011{bottom:716.893333pt;}
.y13_c01011{bottom:738.013333pt;}
.y12_c01011{bottom:759.173333pt;}
.y11_c01011{bottom:780.453333pt;}
.y10_c01011{bottom:801.573333pt;}
.yf_c01011{bottom:822.693333pt;}
.yd_c01011{bottom:843.813333pt;}
.ye_c01011{bottom:849.093333pt;}
.yc_c01011{bottom:864.933333pt;}
.yb_c01011{bottom:886.213333pt;}
.ya_c01011{bottom:907.493333pt;}
.y9_c01011{bottom:928.613333pt;}
.y8_c01011{bottom:949.573333pt;}
.y7_c01011{bottom:970.853333pt;}
.y6_c01011{bottom:991.973333pt;}
.y5_c01011{bottom:1013.120000pt;}
.y2_c01011{bottom:1044.160000pt;}
.y1_c01011{bottom:1061.920000pt;}
.h9_c01011{height:26.206875pt;}
.h7_c01011{height:36.875520pt;}
.h6_c01011{height:38.441250pt;}
.h2_c01011{height:42.722500pt;}
.h3_c01011{height:44.648750pt;}
.ha_c01011{height:53.145938pt;}
.h8_c01011{height:56.679040pt;}
.h4_c01011{height:57.375000pt;}
.h5_c01011{height:1122.546667pt;}
.h0_c01011{height:1122.560000pt;}
.h1_c01011{height:1122.666667pt;}
.w2_c01011{width:793.740000pt;}
.w0_c01011{width:793.760000pt;}
.w1_c01011{width:794.000000pt;}
.x0_c01011{left:0.000000pt;}
.x1_c01011{left:113.472000pt;}
.xa_c01011{left:122.112000pt;}
.x9_c01011{left:124.352000pt;}
.x6_c01011{left:148.166667pt;}
.x7_c01011{left:160.026667pt;}
.x4_c01011{left:240.646667pt;}
.x5_c01011{left:252.506667pt;}
.x8_c01011{left:305.506667pt;}
.x2_c01011{left:592.713333pt;}
.x3_c01011{left:604.573333pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01012;src:url('chunks/assets/font_d8b43cd8bd0bb65f041c4e88.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_9dc8b57e2fa30306959fd461.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01012;src:url('chunks/assets/font_39d15f1ad77fd2e3bb96b10a.woff2')format("woff");}.ff4_c01012{font-family:ff4_c01012;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01012;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01012{font-family:ff5_c01012;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01012;src:url('chunks/assets/font_a4e9fdefb7701f56dbd2a481.woff2')format("woff");}.ff6_c01012{font-family:ff6_c01012;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01012;src:url('chunks/assets/font_efbbb4b9531402cb71febeb9.woff2')format("woff");}.ff7_c01012{font-family:ff7_c01012;line-height:1.181152;font-style:normal;font-weight: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_c01012;src:url('chunks/assets/font_e02f9a27c3b94bb23a5eeff4.woff2')format("woff");}.ff8_c01012{font-family:ff8_c01012;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.ls3_c01012{letter-spacing:-0.432000px;}
.ls7_c01012{letter-spacing:-0.247800px;}
.ls4_c01012{letter-spacing:-0.181200px;}
.ls9_c01012{letter-spacing:-0.152400px;}
.ls2_c01012{letter-spacing:0.000000px;}
.ls5_c01012{letter-spacing:0.144000px;}
.ls6_c01012{letter-spacing:0.150000px;}
.ls1_c01012{letter-spacing:0.152400px;}
.ls0_c01012{letter-spacing:0.288000px;}
.ls8_c01012{letter-spacing:0.567600px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01012{word-spacing:-21.187920px;}
.ws0_c01012{word-spacing:-21.035520px;}
.ws2_c01012{word-spacing:0.000000px;}
._6_c01012{margin-left:-3.675476px;}
._5_c01012{margin-left:-2.664000px;}
._0_c01012{margin-left:-1.390841px;}
._7_c01012{width:1.355976px;}
._10_c01012{width:2.376072px;}
._11_c01012{width:4.296000px;}
._b_c01012{width:5.400000px;}
._a_c01012{width:6.408000px;}
._c_c01012{width:7.560000px;}
._3_c01012{width:8.640000px;}
._1_c01012{width:9.648000px;}
._2_c01012{width:11.050841px;}
._13_c01012{width:13.968000px;}
._d_c01012{width:15.408000px;}
._e_c01012{width:17.386865px;}
._4_c01012{width:18.576000px;}
._12_c01012{width:24.601231px;}
._9_c01012{width:26.302769px;}
._8_c01012{width:27.480024px;}
._f_c01012{width:51.696000px;}
.fc0_c01012{color:rgb(0,0,0);}
.fs4_c01012{font-size:38.880000px;}
.fs2_c01012{font-size:48.240000px;}
.fs5_c01012{font-size:59.760000px;}
.fs0_c01012{font-size:66.240000px;}
.fs1_c01012{font-size:72.000000px;}
.fs3_c01012{font-size:84.240000px;}
.y0_c01012{bottom:0.000000px;}
.y4_c01012{bottom:57.636000px;}
.y3_c01012{bottom:77.796000px;}
.y30_c01012{bottom:109.296000px;}
.y2f_c01012{bottom:114.516000px;}
.y2e_c01012{bottom:127.656000px;}
.y2d_c01012{bottom:145.836000px;}
.y2c_c01012{bottom:151.050000px;}
.y2b_c01012{bottom:164.010000px;}
.y2a_c01012{bottom:182.190000px;}
.y29_c01012{bottom:187.410000px;}
.y28_c01012{bottom:200.550000px;}
.y27_c01012{bottom:218.730000px;}
.y26_c01012{bottom:223.950000px;}
.y25_c01012{bottom:238.530000px;}
.y24_c01012{bottom:449.355000px;}
.y22_c01012{bottom:490.755000px;}
.y23_c01012{bottom:496.695000px;}
.y21_c01012{bottom:514.695000px;}
.y1f_c01012{bottom:538.455000px;}
.y20_c01012{bottom:544.395000px;}
.y1e_c01012{bottom:562.395000px;}
.y1d_c01012{bottom:586.185000px;}
.y1c_c01012{bottom:609.945000px;}
.y1b_c01012{bottom:633.705000px;}
.y19_c01012{bottom:672.405000px;}
.y1a_c01012{bottom:678.345000px;}
.y18_c01012{bottom:696.525000px;}
.y16_c01012{bottom:720.285000px;}
.y17_c01012{bottom:726.225000px;}
.y15_c01012{bottom:744.045000px;}
.y14_c01012{bottom:767.625000px;}
.y13_c01012{bottom:791.385000px;}
.y12_c01012{bottom:815.325000px;}
.y11_c01012{bottom:839.085000px;}
.y10_c01012{bottom:862.890000px;}
.yf_c01012{bottom:886.650000px;}
.ye_c01012{bottom:925.530000px;}
.yd_c01012{bottom:949.290000px;}
.yc_c01012{bottom:973.050000px;}
.yb_c01012{bottom:996.990000px;}
.ya_c01012{bottom:1020.750000px;}
.y9_c01012{bottom:1044.510000px;}
.y8_c01012{bottom:1068.270000px;}
.y7_c01012{bottom:1092.210000px;}
.y6_c01012{bottom:1115.970000px;}
.y5_c01012{bottom:1139.940000px;}
.y2_c01012{bottom:1174.680000px;}
.y1_c01012{bottom:1194.660000px;}
.h8_c01012{height:41.484960px;}
.h6_c01012{height:43.246406px;}
.h2_c01012{height:48.062812px;}
.h3_c01012{height:50.229844px;}
.h9_c01012{height:63.763920px;}
.h4_c01012{height:64.546875px;}
.h7_c01012{height:76.054570px;}
.h5_c01012{height:1262.865000px;}
.h0_c01012{height:1262.880000px;}
.h1_c01012{height:1263.000000px;}
.w2_c01012{width:892.957500px;}
.w0_c01012{width:892.980000px;}
.w1_c01012{width:893.250000px;}
.x0_c01012{left:0.000000px;}
.x4_c01012{left:127.656000px;}
.xe_c01012{left:139.896000px;}
.x1_c01012{left:169.950000px;}
.xd_c01012{left:343.695000px;}
.xb_c01012{left:463.912500px;}
.xc_c01012{left:477.255000px;}
.x5_c01012{left:516.142500px;}
.x6_c01012{left:529.485000px;}
.x9_c01012{left:611.902500px;}
.xa_c01012{left:625.245000px;}
.x7_c01012{left:705.007500px;}
.x8_c01012{left:718.350000px;}
.x3_c01012{left:740.490000px;}
.x2_c01012{left:765.510000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls3_c01012{letter-spacing:-0.384000pt;}
.ls7_c01012{letter-spacing:-0.220267pt;}
.ls4_c01012{letter-spacing:-0.161067pt;}
.ls9_c01012{letter-spacing:-0.135467pt;}
.ls2_c01012{letter-spacing:0.000000pt;}
.ls5_c01012{letter-spacing:0.128000pt;}
.ls6_c01012{letter-spacing:0.133333pt;}
.ls1_c01012{letter-spacing:0.135467pt;}
.ls0_c01012{letter-spacing:0.256000pt;}
.ls8_c01012{letter-spacing:0.504533pt;}
.ws1_c01012{word-spacing:-18.833707pt;}
.ws0_c01012{word-spacing:-18.698240pt;}
.ws2_c01012{word-spacing:0.000000pt;}
._6_c01012{margin-left:-3.267090pt;}
._5_c01012{margin-left:-2.368000pt;}
._0_c01012{margin-left:-1.236303pt;}
._7_c01012{width:1.205312pt;}
._10_c01012{width:2.112064pt;}
._11_c01012{width:3.818667pt;}
._b_c01012{width:4.800000pt;}
._a_c01012{width:5.696000pt;}
._c_c01012{width:6.720000pt;}
._3_c01012{width:7.680000pt;}
._1_c01012{width:8.576000pt;}
._2_c01012{width:9.822970pt;}
._13_c01012{width:12.416000pt;}
._d_c01012{width:13.696000pt;}
._e_c01012{width:15.454991pt;}
._4_c01012{width:16.512000pt;}
._12_c01012{width:21.867761pt;}
._9_c01012{width:23.380239pt;}
._8_c01012{width:24.426688pt;}
._f_c01012{width:45.952000pt;}
.fs4_c01012{font-size:34.560000pt;}
.fs2_c01012{font-size:42.880000pt;}
.fs5_c01012{font-size:53.120000pt;}
.fs0_c01012{font-size:58.880000pt;}
.fs1_c01012{font-size:64.000000pt;}
.fs3_c01012{font-size:74.880000pt;}
.y0_c01012{bottom:0.000000pt;}
.y4_c01012{bottom:51.232000pt;}
.y3_c01012{bottom:69.152000pt;}
.y30_c01012{bottom:97.152000pt;}
.y2f_c01012{bottom:101.792000pt;}
.y2e_c01012{bottom:113.472000pt;}
.y2d_c01012{bottom:129.632000pt;}
.y2c_c01012{bottom:134.266667pt;}
.y2b_c01012{bottom:145.786667pt;}
.y2a_c01012{bottom:161.946667pt;}
.y29_c01012{bottom:166.586667pt;}
.y28_c01012{bottom:178.266667pt;}
.y27_c01012{bottom:194.426667pt;}
.y26_c01012{bottom:199.066667pt;}
.y25_c01012{bottom:212.026667pt;}
.y24_c01012{bottom:399.426667pt;}
.y22_c01012{bottom:436.226667pt;}
.y23_c01012{bottom:441.506667pt;}
.y21_c01012{bottom:457.506667pt;}
.y1f_c01012{bottom:478.626667pt;}
.y20_c01012{bottom:483.906667pt;}
.y1e_c01012{bottom:499.906667pt;}
.y1d_c01012{bottom:521.053333pt;}
.y1c_c01012{bottom:542.173333pt;}
.y1b_c01012{bottom:563.293333pt;}
.y19_c01012{bottom:597.693333pt;}
.y1a_c01012{bottom:602.973333pt;}
.y18_c01012{bottom:619.133333pt;}
.y16_c01012{bottom:640.253333pt;}
.y17_c01012{bottom:645.533333pt;}
.y15_c01012{bottom:661.373333pt;}
.y14_c01012{bottom:682.333333pt;}
.y13_c01012{bottom:703.453333pt;}
.y12_c01012{bottom:724.733333pt;}
.y11_c01012{bottom:745.853333pt;}
.y10_c01012{bottom:767.013333pt;}
.yf_c01012{bottom:788.133333pt;}
.ye_c01012{bottom:822.693333pt;}
.yd_c01012{bottom:843.813333pt;}
.yc_c01012{bottom:864.933333pt;}
.yb_c01012{bottom:886.213333pt;}
.ya_c01012{bottom:907.333333pt;}
.y9_c01012{bottom:928.453333pt;}
.y8_c01012{bottom:949.573333pt;}
.y7_c01012{bottom:970.853333pt;}
.y6_c01012{bottom:991.973333pt;}
.y5_c01012{bottom:1013.280000pt;}
.y2_c01012{bottom:1044.160000pt;}
.y1_c01012{bottom:1061.920000pt;}
.h8_c01012{height:36.875520pt;}
.h6_c01012{height:38.441250pt;}
.h2_c01012{height:42.722500pt;}
.h3_c01012{height:44.648750pt;}
.h9_c01012{height:56.679040pt;}
.h4_c01012{height:57.375000pt;}
.h7_c01012{height:67.604062pt;}
.h5_c01012{height:1122.546667pt;}
.h0_c01012{height:1122.560000pt;}
.h1_c01012{height:1122.666667pt;}
.w2_c01012{width:793.740000pt;}
.w0_c01012{width:793.760000pt;}
.w1_c01012{width:794.000000pt;}
.x0_c01012{left:0.000000pt;}
.x4_c01012{left:113.472000pt;}
.xe_c01012{left:124.352000pt;}
.x1_c01012{left:151.066667pt;}
.xd_c01012{left:305.506667pt;}
.xb_c01012{left:412.366667pt;}
.xc_c01012{left:424.226667pt;}
.x5_c01012{left:458.793333pt;}
.x6_c01012{left:470.653333pt;}
.x9_c01012{left:543.913333pt;}
.xa_c01012{left:555.773333pt;}
.x7_c01012{left:626.673333pt;}
.x8_c01012{left:638.533333pt;}
.x3_c01012{left:658.213333pt;}
.x2_c01012{left:680.453333pt;}
}





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

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01013;src:url('chunks/assets/font_ee0f3369338fd786e915963a.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01013;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01013;src:url('chunks/assets/font_2bfc1b0aae962ea9fa4a72f7.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01013;src:url('chunks/assets/font_8d1a61725d7a5361d5c487e7.woff2')format("woff");}.ff5_c01013{font-family:ff5_c01013;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01013;src:url('chunks/assets/font_0abbb8d408671e3075743950.woff2')format("woff");}.ff6_c01013{font-family:ff6_c01013;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls2_c01013{letter-spacing:-0.053400px;}
.ls1_c01013{letter-spacing:0.000000px;}
.ls0_c01013{letter-spacing:0.144000px;}
.ls3_c01013{letter-spacing:0.288000px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01013{word-spacing:-20.304000px;}
.ws1_c01013{word-spacing:0.000000px;}
._0_c01013{margin-left:-1.258891px;}
._1_c01013{width:1.003560px;}
._8_c01013{width:2.028024px;}
._3_c01013{width:3.885782px;}
._2_c01013{width:5.112000px;}
._9_c01013{width:6.408000px;}
._b_c01013{width:7.560000px;}
._a_c01013{width:9.572880px;}
._7_c01013{width:11.592000px;}
._6_c01013{width:12.816000px;}
._4_c01013{width:14.040000px;}
._5_c01013{width:16.150867px;}
.fc1_c01013{color:transparent;}
.fc0_c01013{color:rgb(0,0,0);}
.fs3_c01013{font-size:59.760000px;}
.fs0_c01013{font-size:66.240000px;}
.fs2_c01013{font-size:72.000000px;}
.fs1_c01013{font-size:84.240000px;}
.y25_c01013{bottom:-15.630000px;}
.y0_c01013{bottom:0.000000px;}
.y27_c01013{bottom:5.220000px;}
.y29_c01013{bottom:10.995000px;}
.y4_c01013{bottom:57.636000px;}
.y3_c01013{bottom:77.796000px;}
.y23_c01013{bottom:125.316000px;}
.y22_c01013{bottom:149.256000px;}
.y21_c01013{bottom:172.830000px;}
.y20_c01013{bottom:196.590000px;}
.y1f_c01013{bottom:235.470000px;}
.y1e_c01013{bottom:274.170000px;}
.y1d_c01013{bottom:313.095000px;}
.y1c_c01013{bottom:336.855000px;}
.y1b_c01013{bottom:360.795000px;}
.y1a_c01013{bottom:384.555000px;}
.y19_c01013{bottom:408.315000px;}
.y18_c01013{bottom:432.075000px;}
.y28_c01013{bottom:470.220000px;}
.y17_c01013{bottom:470.955000px;}
.y16_c01013{bottom:509.655000px;}
.y15_c01013{bottom:548.535000px;}
.y24_c01013{bottom:562.545000px;}
.y14_c01013{bottom:587.445000px;}
.y13_c01013{bottom:626.145000px;}
.y12_c01013{bottom:665.025000px;}
.y11_c01013{bottom:703.725000px;}
.y10_c01013{bottom:742.605000px;}
.yf_c01013{bottom:781.305000px;}
.y26_c01013{bottom:786.705000px;}
.ye_c01013{bottom:820.185000px;}
.yd_c01013{bottom:859.110000px;}
.yc_c01013{bottom:897.810000px;}
.yb_c01013{bottom:936.690000px;}
.ya_c01013{bottom:975.390000px;}
.y9_c01013{bottom:1014.270000px;}
.y8_c01013{bottom:1052.970000px;}
.y7_c01013{bottom:1091.850000px;}
.y6_c01013{bottom:1113.270000px;}
.y5_c01013{bottom:1137.060000px;}
.y2_c01013{bottom:1174.680000px;}
.y1_c01013{bottom:1194.660000px;}
.h7_c01013{height:0.022500px;}
.h8_c01013{height:19.080000px;}
.ha_c01013{height:24.840000px;}
.h2_c01013{height:48.062812px;}
.h3_c01013{height:50.229844px;}
.h9_c01013{height:53.428008px;}
.h6_c01013{height:64.546875px;}
.h5_c01013{height:65.003906px;}
.h4_c01013{height:87.859687px;}
.h0_c01013{height:1262.880000px;}
.h1_c01013{height:1263.000000px;}
.w2_c01013{width:21.600000px;}
.w4_c01013{width:157.530000px;}
.w3_c01013{width:181.110000px;}
.w0_c01013{width:892.980000px;}
.w1_c01013{width:893.250000px;}
.x0_c01013{left:0.000000px;}
.x3_c01013{left:10.791000px;}
.x1_c01013{left:127.656000px;}
.x2_c01013{left:129.105000px;}
.x5_c01013{left:536.520000px;}
.x4_c01013{left:539.040000px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls2_c01013{letter-spacing:-0.047467pt;}
.ls1_c01013{letter-spacing:0.000000pt;}
.ls0_c01013{letter-spacing:0.128000pt;}
.ls3_c01013{letter-spacing:0.256000pt;}
.ws0_c01013{word-spacing:-18.048000pt;}
.ws1_c01013{word-spacing:0.000000pt;}
._0_c01013{margin-left:-1.119014pt;}
._1_c01013{width:0.892053pt;}
._8_c01013{width:1.802688pt;}
._3_c01013{width:3.454029pt;}
._2_c01013{width:4.544000pt;}
._9_c01013{width:5.696000pt;}
._b_c01013{width:6.720000pt;}
._a_c01013{width:8.509227pt;}
._7_c01013{width:10.304000pt;}
._6_c01013{width:11.392000pt;}
._4_c01013{width:12.480000pt;}
._5_c01013{width:14.356326pt;}
.fs3_c01013{font-size:53.120000pt;}
.fs0_c01013{font-size:58.880000pt;}
.fs2_c01013{font-size:64.000000pt;}
.fs1_c01013{font-size:74.880000pt;}
.y25_c01013{bottom:-13.893333pt;}
.y0_c01013{bottom:0.000000pt;}
.y27_c01013{bottom:4.640000pt;}
.y29_c01013{bottom:9.773333pt;}
.y4_c01013{bottom:51.232000pt;}
.y3_c01013{bottom:69.152000pt;}
.y23_c01013{bottom:111.392000pt;}
.y22_c01013{bottom:132.672000pt;}
.y21_c01013{bottom:153.626667pt;}
.y20_c01013{bottom:174.746667pt;}
.y1f_c01013{bottom:209.306667pt;}
.y1e_c01013{bottom:243.706667pt;}
.y1d_c01013{bottom:278.306667pt;}
.y1c_c01013{bottom:299.426667pt;}
.y1b_c01013{bottom:320.706667pt;}
.y1a_c01013{bottom:341.826667pt;}
.y19_c01013{bottom:362.946667pt;}
.y18_c01013{bottom:384.066667pt;}
.y28_c01013{bottom:417.973333pt;}
.y17_c01013{bottom:418.626667pt;}
.y16_c01013{bottom:453.026667pt;}
.y15_c01013{bottom:487.586667pt;}
.y24_c01013{bottom:500.040000pt;}
.y14_c01013{bottom:522.173333pt;}
.y13_c01013{bottom:556.573333pt;}
.y12_c01013{bottom:591.133333pt;}
.y11_c01013{bottom:625.533333pt;}
.y10_c01013{bottom:660.093333pt;}
.yf_c01013{bottom:694.493333pt;}
.y26_c01013{bottom:699.293333pt;}
.ye_c01013{bottom:729.053333pt;}
.yd_c01013{bottom:763.653333pt;}
.yc_c01013{bottom:798.053333pt;}
.yb_c01013{bottom:832.613333pt;}
.ya_c01013{bottom:867.013333pt;}
.y9_c01013{bottom:901.573333pt;}
.y8_c01013{bottom:935.973333pt;}
.y7_c01013{bottom:970.533333pt;}
.y6_c01013{bottom:989.573333pt;}
.y5_c01013{bottom:1010.720000pt;}
.y2_c01013{bottom:1044.160000pt;}
.y1_c01013{bottom:1061.920000pt;}
.h7_c01013{height:0.020000pt;}
.h8_c01013{height:16.960000pt;}
.ha_c01013{height:22.080000pt;}
.h2_c01013{height:42.722500pt;}
.h3_c01013{height:44.648750pt;}
.h9_c01013{height:47.491563pt;}
.h6_c01013{height:57.375000pt;}
.h5_c01013{height:57.781250pt;}
.h4_c01013{height:78.097500pt;}
.h0_c01013{height:1122.560000pt;}
.h1_c01013{height:1122.666667pt;}
.w2_c01013{width:19.200000pt;}
.w4_c01013{width:140.026667pt;}
.w3_c01013{width:160.986667pt;}
.w0_c01013{width:793.760000pt;}
.w1_c01013{width:794.000000pt;}
.x0_c01013{left:0.000000pt;}
.x3_c01013{left:9.592000pt;}
.x1_c01013{left:113.472000pt;}
.x2_c01013{left:114.760000pt;}
.x5_c01013{left:476.906667pt;}
.x4_c01013{left:479.146667pt;}
}





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

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01014;src:url('chunks/assets/font_456bf80f3046a501324cbdae.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01014;src:url('chunks/assets/font_7a9e4f1797787bd4abbbec9a.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01014;src:url('chunks/assets/font_d7b621fa714b46dcef7d695c.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01014;src:url('chunks/assets/font_0c670f0c5558f7fb75c06753.woff2')format("woff");}.ff5_c01014{font-family:ff5_c01014;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls1_c01014{letter-spacing:0.000000px;}
.ls2_c01014{letter-spacing:0.144000px;}
.ls0_c01014{letter-spacing:0.216000px;}
.ls3_c01014{letter-spacing:0.288000px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01014{word-spacing:-20.304000px;}
.ws0_c01014{word-spacing:-20.016000px;}
.ws2_c01014{word-spacing:0.000000px;}
._2_c01014{margin-left:-3.888000px;}
._3_c01014{margin-left:-2.713159px;}
._0_c01014{margin-left:-1.390841px;}
._1_c01014{width:1.512000px;}
._10_c01014{width:3.238865px;}
._f_c01014{width:4.465135px;}
._b_c01014{width:6.334865px;}
._a_c01014{width:7.848000px;}
._9_c01014{width:9.166841px;}
._6_c01014{width:10.728000px;}
._e_c01014{width:12.240000px;}
._8_c01014{width:14.544000px;}
._7_c01014{width:16.560000px;}
._4_c01014{width:18.144000px;}
._5_c01014{width:21.216024px;}
._c_c01014{width:42.840000px;}
._d_c01014{width:44.040024px;}
.fc0_c01014{color:rgb(0,0,0);}
.fs2_c01014{font-size:59.760000px;}
.fs0_c01014{font-size:66.240000px;}
.fs1_c01014{font-size:72.000000px;}
.y0_c01014{bottom:0.000000px;}
.y26_c01014{bottom:10.275000px;}
.y25_c01014{bottom:27.585000px;}
.y24_c01014{bottom:44.865000px;}
.y4_c01014{bottom:57.636000px;}
.y23_c01014{bottom:62.145000px;}
.y3_c01014{bottom:77.796000px;}
.y22_c01014{bottom:79.425000px;}
.y21_c01014{bottom:96.705000px;}
.y1f_c01014{bottom:400.935000px;}
.y1e_c01014{bottom:424.695000px;}
.y1d_c01014{bottom:448.455000px;}
.y1c_c01014{bottom:487.155000px;}
.y1b_c01014{bottom:526.035000px;}
.y20_c01014{bottom:542.940000px;}
.y1a_c01014{bottom:564.765000px;}
.y19_c01014{bottom:603.645000px;}
.y18_c01014{bottom:642.525000px;}
.y17_c01014{bottom:666.285000px;}
.y16_c01014{bottom:690.045000px;}
.y15_c01014{bottom:713.985000px;}
.y14_c01014{bottom:737.745000px;}
.y13_c01014{bottom:761.505000px;}
.y12_c01014{bottom:785.265000px;}
.y11_c01014{bottom:809.025000px;}
.y10_c01014{bottom:832.965000px;}
.yf_c01014{bottom:856.950000px;}
.ye_c01014{bottom:880.710000px;}
.yd_c01014{bottom:904.470000px;}
.yc_c01014{bottom:928.050000px;}
.yb_c01014{bottom:951.990000px;}
.ya_c01014{bottom:990.690000px;}
.y9_c01014{bottom:1029.570000px;}
.y8_c01014{bottom:1068.450000px;}
.y7_c01014{bottom:1092.210000px;}
.y6_c01014{bottom:1115.970000px;}
.y5_c01014{bottom:1139.760000px;}
.y2_c01014{bottom:1174.680000px;}
.y1_c01014{bottom:1194.660000px;}
.h2_c01014{height:48.062812px;}
.h3_c01014{height:50.229844px;}
.h7_c01014{height:53.428008px;}
.h4_c01014{height:64.546875px;}
.h5_c01014{height:65.003906px;}
.h6_c01014{height:110.385000px;}
.h0_c01014{height:1262.880000px;}
.h1_c01014{height:1263.000000px;}
.w2_c01014{width:209.190000px;}
.w0_c01014{width:892.980000px;}
.w1_c01014{width:893.250000px;}
.x0_c01014{left:0.000000px;}
.x4_c01014{left:127.656000px;}
.x6_c01014{left:129.465000px;}
.x1_c01014{left:169.950000px;}
.x5_c01014{left:352.155000px;}
.x3_c01014{left:740.490000px;}
.x2_c01014{left:765.510000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls1_c01014{letter-spacing:0.000000pt;}
.ls2_c01014{letter-spacing:0.128000pt;}
.ls0_c01014{letter-spacing:0.192000pt;}
.ls3_c01014{letter-spacing:0.256000pt;}
.ws1_c01014{word-spacing:-18.048000pt;}
.ws0_c01014{word-spacing:-17.792000pt;}
.ws2_c01014{word-spacing:0.000000pt;}
._2_c01014{margin-left:-3.456000pt;}
._3_c01014{margin-left:-2.411697pt;}
._0_c01014{margin-left:-1.236303pt;}
._1_c01014{width:1.344000pt;}
._10_c01014{width:2.878991pt;}
._f_c01014{width:3.969009pt;}
._b_c01014{width:5.630991pt;}
._a_c01014{width:6.976000pt;}
._9_c01014{width:8.148303pt;}
._6_c01014{width:9.536000pt;}
._e_c01014{width:10.880000pt;}
._8_c01014{width:12.928000pt;}
._7_c01014{width:14.720000pt;}
._4_c01014{width:16.128000pt;}
._5_c01014{width:18.858688pt;}
._c_c01014{width:38.080000pt;}
._d_c01014{width:39.146688pt;}
.fs2_c01014{font-size:53.120000pt;}
.fs0_c01014{font-size:58.880000pt;}
.fs1_c01014{font-size:64.000000pt;}
.y0_c01014{bottom:0.000000pt;}
.y26_c01014{bottom:9.133333pt;}
.y25_c01014{bottom:24.520000pt;}
.y24_c01014{bottom:39.880000pt;}
.y4_c01014{bottom:51.232000pt;}
.y23_c01014{bottom:55.240000pt;}
.y3_c01014{bottom:69.152000pt;}
.y22_c01014{bottom:70.600000pt;}
.y21_c01014{bottom:85.960000pt;}
.y1f_c01014{bottom:356.386667pt;}
.y1e_c01014{bottom:377.506667pt;}
.y1d_c01014{bottom:398.626667pt;}
.y1c_c01014{bottom:433.026667pt;}
.y1b_c01014{bottom:467.586667pt;}
.y20_c01014{bottom:482.613333pt;}
.y1a_c01014{bottom:502.013333pt;}
.y19_c01014{bottom:536.573333pt;}
.y18_c01014{bottom:571.133333pt;}
.y17_c01014{bottom:592.253333pt;}
.y16_c01014{bottom:613.373333pt;}
.y15_c01014{bottom:634.653333pt;}
.y14_c01014{bottom:655.773333pt;}
.y13_c01014{bottom:676.893333pt;}
.y12_c01014{bottom:698.013333pt;}
.y11_c01014{bottom:719.133333pt;}
.y10_c01014{bottom:740.413333pt;}
.yf_c01014{bottom:761.733333pt;}
.ye_c01014{bottom:782.853333pt;}
.yd_c01014{bottom:803.973333pt;}
.yc_c01014{bottom:824.933333pt;}
.yb_c01014{bottom:846.213333pt;}
.ya_c01014{bottom:880.613333pt;}
.y9_c01014{bottom:915.173333pt;}
.y8_c01014{bottom:949.733333pt;}
.y7_c01014{bottom:970.853333pt;}
.y6_c01014{bottom:991.973333pt;}
.y5_c01014{bottom:1013.120000pt;}
.y2_c01014{bottom:1044.160000pt;}
.y1_c01014{bottom:1061.920000pt;}
.h2_c01014{height:42.722500pt;}
.h3_c01014{height:44.648750pt;}
.h7_c01014{height:47.491563pt;}
.h4_c01014{height:57.375000pt;}
.h5_c01014{height:57.781250pt;}
.h6_c01014{height:98.120000pt;}
.h0_c01014{height:1122.560000pt;}
.h1_c01014{height:1122.666667pt;}
.w2_c01014{width:185.946667pt;}
.w0_c01014{width:793.760000pt;}
.w1_c01014{width:794.000000pt;}
.x0_c01014{left:0.000000pt;}
.x4_c01014{left:113.472000pt;}
.x6_c01014{left:115.080000pt;}
.x1_c01014{left:151.066667pt;}
.x5_c01014{left:313.026667pt;}
.x3_c01014{left:658.213333pt;}
.x2_c01014{left:680.453333pt;}
}





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

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01015;src:url('chunks/assets/font_ff22742e2f4178209d3be020.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01015;src:url('chunks/assets/font_ea8f0d1435dfcdf19178c8c8.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01015;src:url('chunks/assets/font_7f12d7d22360fb38b123973c.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;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:ff5_c01015;src:url('chunks/assets/font_0caf990570ff09a03a0d8b2f.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01015;src:url('chunks/assets/font_62dda473e697461aa88a3f02.woff2')format("woff");}.ff6_c01015{font-family:ff6_c01015;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01015;src:url('chunks/assets/font_1f2abe9e02b16eb16fcbae5b.woff2')format("woff");}.ff7_c01015{font-family:ff7_c01015;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01015;src:url('chunks/assets/font_33ca3da98e10e6895e9ff2d5.woff2')format("woff");}.ff8_c01015{font-family:ff8_c01015;line-height:1.211914;font-style:normal;font-weight: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_c01015;src:url('chunks/assets/font_4cd266860dcc9fd0e13c9939.woff2')format("woff");}.ff9_c01015{font-family:ff9_c01015;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls6_c01015{letter-spacing:-0.720000px;}
.ls4_c01015{letter-spacing:-0.576000px;}
.ls7_c01015{letter-spacing:-0.432000px;}
.ls9_c01015{letter-spacing:-0.247800px;}
.ls3_c01015{letter-spacing:-0.181200px;}
.lsa_c01015{letter-spacing:-0.053400px;}
.ls2_c01015{letter-spacing:0.000000px;}
.ls5_c01015{letter-spacing:0.144000px;}
.ls8_c01015{letter-spacing:0.150000px;}
.ls0_c01015{letter-spacing:0.288000px;}
.ls1_c01015{letter-spacing:18.144000px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01015{word-spacing:-21.035520px;}
.ws0_c01015{word-spacing:-20.016000px;}
.ws2_c01015{word-spacing:0.000000px;}
._5_c01015{margin-left:-2.485109px;}
._0_c01015{margin-left:-1.258891px;}
._2_c01015{width:1.018915px;}
._4_c01015{width:2.307326px;}
._9_c01015{width:3.579106px;}
._8_c01015{width:5.219563px;}
._b_c01015{width:6.552000px;}
._c_c01015{width:11.256000px;}
._6_c01015{width:12.792000px;}
._a_c01015{width:14.173109px;}
._3_c01015{width:15.370891px;}
._1_c01015{width:16.488000px;}
._7_c01015{width:17.965085px;}
.fc1_c01015{color:transparent;}
.fc0_c01015{color:rgb(0,0,0);}
.fs3_c01015{font-size:38.880000px;}
.fs2_c01015{font-size:48.240000px;}
.fs4_c01015{font-size:59.760000px;}
.fs0_c01015{font-size:66.240000px;}
.fs1_c01015{font-size:72.000000px;}
.y0_c01015{bottom:0.000000px;}
.y22_c01015{bottom:11.520000px;}
.y21_c01015{bottom:28.980000px;}
.y4_c01015{bottom:57.636000px;}
.y3_c01015{bottom:77.796000px;}
.y1f_c01015{bottom:109.296000px;}
.y1e_c01015{bottom:127.656000px;}
.y1d_c01015{bottom:145.836000px;}
.y1c_c01015{bottom:151.050000px;}
.y1b_c01015{bottom:165.630000px;}
.y1a_c01015{bottom:193.890000px;}
.y19_c01015{bottom:217.470000px;}
.y18_c01015{bottom:241.410000px;}
.y17_c01015{bottom:264.990000px;}
.y16_c01015{bottom:303.915000px;}
.y15_c01015{bottom:342.615000px;}
.y14_c01015{bottom:381.495000px;}
.y13_c01015{bottom:405.435000px;}
.y12_c01015{bottom:429.195000px;}
.y11_c01015{bottom:452.955000px;}
.y10_c01015{bottom:476.715000px;}
.yf_c01015{bottom:500.655000px;}
.ye_c01015{bottom:524.415000px;}
.yd_c01015{bottom:548.355000px;}
.yb_c01015{bottom:572.145000px;}
.yc_c01015{bottom:578.085000px;}
.ya_c01015{bottom:595.725000px;}
.y9_c01015{bottom:619.485000px;}
.y8_c01015{bottom:658.365000px;}
.y7_c01015{bottom:697.245000px;}
.y20_c01015{bottom:724.065000px;}
.y6_c01015{bottom:735.945000px;}
.y5_c01015{bottom:770.685000px;}
.y2_c01015{bottom:1174.680000px;}
.y1_c01015{bottom:1194.660000px;}
.h9_c01015{height:41.484960px;}
.hb_c01015{height:42.660000px;}
.h8_c01015{height:43.246406px;}
.h2_c01015{height:48.062812px;}
.h3_c01015{height:50.229844px;}
.hc_c01015{height:53.428008px;}
.ha_c01015{height:63.763920px;}
.h4_c01015{height:64.546875px;}
.h6_c01015{height:65.003906px;}
.h5_c01015{height:75.093750px;}
.h7_c01015{height:1262.865000px;}
.h0_c01015{height:1262.880000px;}
.h1_c01015{height:1263.000000px;}
.w3_c01015{width:417.135000px;}
.w2_c01015{width:892.957500px;}
.w0_c01015{width:892.980000px;}
.w1_c01015{width:893.250000px;}
.x0_c01015{left:0.000000px;}
.x1_c01015{left:127.656000px;}
.x6_c01015{left:139.896000px;}
.x7_c01015{left:238.725000px;}
.x3_c01015{left:284.047500px;}
.x4_c01015{left:297.435000px;}
.x5_c01015{left:343.695000px;}
.x2_c01015{left:657.285000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls6_c01015{letter-spacing:-0.640000pt;}
.ls4_c01015{letter-spacing:-0.512000pt;}
.ls7_c01015{letter-spacing:-0.384000pt;}
.ls9_c01015{letter-spacing:-0.220267pt;}
.ls3_c01015{letter-spacing:-0.161067pt;}
.lsa_c01015{letter-spacing:-0.047467pt;}
.ls2_c01015{letter-spacing:0.000000pt;}
.ls5_c01015{letter-spacing:0.128000pt;}
.ls8_c01015{letter-spacing:0.133333pt;}
.ls0_c01015{letter-spacing:0.256000pt;}
.ls1_c01015{letter-spacing:16.128000pt;}
.ws1_c01015{word-spacing:-18.698240pt;}
.ws0_c01015{word-spacing:-17.792000pt;}
.ws2_c01015{word-spacing:0.000000pt;}
._5_c01015{margin-left:-2.208986pt;}
._0_c01015{margin-left:-1.119014pt;}
._2_c01015{width:0.905702pt;}
._4_c01015{width:2.050957pt;}
._9_c01015{width:3.181427pt;}
._8_c01015{width:4.639612pt;}
._b_c01015{width:5.824000pt;}
._c_c01015{width:10.005333pt;}
._6_c01015{width:11.370667pt;}
._a_c01015{width:12.598319pt;}
._3_c01015{width:13.663014pt;}
._1_c01015{width:14.656000pt;}
._7_c01015{width:15.968964pt;}
.fs3_c01015{font-size:34.560000pt;}
.fs2_c01015{font-size:42.880000pt;}
.fs4_c01015{font-size:53.120000pt;}
.fs0_c01015{font-size:58.880000pt;}
.fs1_c01015{font-size:64.000000pt;}
.y0_c01015{bottom:0.000000pt;}
.y22_c01015{bottom:10.240000pt;}
.y21_c01015{bottom:25.760000pt;}
.y4_c01015{bottom:51.232000pt;}
.y3_c01015{bottom:69.152000pt;}
.y1f_c01015{bottom:97.152000pt;}
.y1e_c01015{bottom:113.472000pt;}
.y1d_c01015{bottom:129.632000pt;}
.y1c_c01015{bottom:134.266667pt;}
.y1b_c01015{bottom:147.226667pt;}
.y1a_c01015{bottom:172.346667pt;}
.y19_c01015{bottom:193.306667pt;}
.y18_c01015{bottom:214.586667pt;}
.y17_c01015{bottom:235.546667pt;}
.y16_c01015{bottom:270.146667pt;}
.y15_c01015{bottom:304.546667pt;}
.y14_c01015{bottom:339.106667pt;}
.y13_c01015{bottom:360.386667pt;}
.y12_c01015{bottom:381.506667pt;}
.y11_c01015{bottom:402.626667pt;}
.y10_c01015{bottom:423.746667pt;}
.yf_c01015{bottom:445.026667pt;}
.ye_c01015{bottom:466.146667pt;}
.yd_c01015{bottom:487.426667pt;}
.yb_c01015{bottom:508.573333pt;}
.yc_c01015{bottom:513.853333pt;}
.ya_c01015{bottom:529.533333pt;}
.y9_c01015{bottom:550.653333pt;}
.y8_c01015{bottom:585.213333pt;}
.y7_c01015{bottom:619.773333pt;}
.y20_c01015{bottom:643.613333pt;}
.y6_c01015{bottom:654.173333pt;}
.y5_c01015{bottom:685.053333pt;}
.y2_c01015{bottom:1044.160000pt;}
.y1_c01015{bottom:1061.920000pt;}
.h9_c01015{height:36.875520pt;}
.hb_c01015{height:37.920000pt;}
.h8_c01015{height:38.441250pt;}
.h2_c01015{height:42.722500pt;}
.h3_c01015{height:44.648750pt;}
.hc_c01015{height:47.491563pt;}
.ha_c01015{height:56.679040pt;}
.h4_c01015{height:57.375000pt;}
.h6_c01015{height:57.781250pt;}
.h5_c01015{height:66.750000pt;}
.h7_c01015{height:1122.546667pt;}
.h0_c01015{height:1122.560000pt;}
.h1_c01015{height:1122.666667pt;}
.w3_c01015{width:370.786667pt;}
.w2_c01015{width:793.740000pt;}
.w0_c01015{width:793.760000pt;}
.w1_c01015{width:794.000000pt;}
.x0_c01015{left:0.000000pt;}
.x1_c01015{left:113.472000pt;}
.x6_c01015{left:124.352000pt;}
.x7_c01015{left:212.200000pt;}
.x3_c01015{left:252.486667pt;}
.x4_c01015{left:264.386667pt;}
.x5_c01015{left:305.506667pt;}
.x2_c01015{left:584.253333pt;}
}





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

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01016;src:url('chunks/assets/font_2e79737b4a8bab8e9872cecd.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01016;src:url('chunks/assets/font_23079895e74276c7fd953d6e.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01016;src:url('chunks/assets/font_daf6fc5a0d08c112fe573b97.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01016;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;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:ff6_c01016;src:url('chunks/assets/font_45b43f82bd305f183ac8ec73.woff2')format("woff");}.ff6_c01016{font-family:ff6_c01016;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls4_c01016{letter-spacing:-0.720000px;}
.ls5_c01016{letter-spacing:-0.432000px;}
.ls6_c01016{letter-spacing:-0.053400px;}
.ls3_c01016{letter-spacing:0.000000px;}
.ls2_c01016{letter-spacing:0.144000px;}
.ls1_c01016{letter-spacing:7.344000px;}
.ls0_c01016{letter-spacing:27.504000px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01016{word-spacing:-20.016000px;}
.ws1_c01016{word-spacing:0.000000px;}
._e_c01016{margin-left:-4.365683px;}
._d_c01016{margin-left:-2.474317px;}
._0_c01016{margin-left:-1.390841px;}
._3_c01016{width:1.128024px;}
._8_c01016{width:2.664000px;}
._9_c01016{width:3.876000px;}
._7_c01016{width:6.192000px;}
._6_c01016{width:7.488000px;}
._2_c01016{width:9.528000px;}
._1_c01016{width:10.920000px;}
._c_c01016{width:13.558841px;}
._b_c01016{width:15.048000px;}
._5_c01016{width:26.195976px;}
._4_c01016{width:27.840000px;}
._a_c01016{width:773.400000px;}
.fc0_c01016{color:rgb(0,0,0);}
.fs2_c01016{font-size:59.760000px;}
.fs0_c01016{font-size:66.240000px;}
.fs1_c01016{font-size:72.000000px;}
.y0_c01016{bottom:0.000000px;}
.y22_c01016{bottom:5.220000px;}
.y26_c01016{bottom:6.840000px;}
.y21_c01016{bottom:22.680000px;}
.y25_c01016{bottom:24.300000px;}
.y20_c01016{bottom:39.960000px;}
.y24_c01016{bottom:41.580000px;}
.y1f_c01016{bottom:57.060000px;}
.y4_c01016{bottom:57.636000px;}
.y3_c01016{bottom:77.796000px;}
.y1d_c01016{bottom:143.496000px;}
.y1c_c01016{bottom:182.370000px;}
.y1b_c01016{bottom:206.130000px;}
.y1a_c01016{bottom:244.830000px;}
.y19_c01016{bottom:283.755000px;}
.y18_c01016{bottom:322.815000px;}
.y17_c01016{bottom:346.575000px;}
.y16_c01016{bottom:370.335000px;}
.y15_c01016{bottom:393.915000px;}
.y14_c01016{bottom:417.675000px;}
.y13_c01016{bottom:441.615000px;}
.y12_c01016{bottom:465.375000px;}
.y11_c01016{bottom:489.135000px;}
.y10_c01016{bottom:528.015000px;}
.yf_c01016{bottom:566.745000px;}
.y1e_c01016{bottom:602.565000px;}
.ye_c01016{bottom:605.625000px;}
.y23_c01016{bottom:615.345000px;}
.yd_c01016{bottom:644.325000px;}
.yc_c01016{bottom:679.245000px;}
.yb_c01016{bottom:997.170000px;}
.ya_c01016{bottom:1020.930000px;}
.y9_c01016{bottom:1044.510000px;}
.y8_c01016{bottom:1068.450000px;}
.y7_c01016{bottom:1092.390000px;}
.y6_c01016{bottom:1116.150000px;}
.y5_c01016{bottom:1139.940000px;}
.y2_c01016{bottom:1174.680000px;}
.y1_c01016{bottom:1194.660000px;}
.h2_c01016{height:48.062812px;}
.h3_c01016{height:50.229844px;}
.h8_c01016{height:53.428008px;}
.h9_c01016{height:55.260000px;}
.h4_c01016{height:64.546875px;}
.h6_c01016{height:65.003906px;}
.h7_c01016{height:70.740000px;}
.h5_c01016{height:75.093750px;}
.h0_c01016{height:1262.880000px;}
.h1_c01016{height:1263.000000px;}
.w2_c01016{width:155.175000px;}
.w3_c01016{width:198.045000px;}
.w0_c01016{width:892.980000px;}
.w1_c01016{width:893.250000px;}
.x0_c01016{left:0.000000px;}
.x4_c01016{left:127.656000px;}
.x1_c01016{left:169.950000px;}
.x6_c01016{left:258.885000px;}
.x5_c01016{left:414.255000px;}
.x7_c01016{left:437.115000px;}
.x3_c01016{left:740.490000px;}
.x2_c01016{left:765.510000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls4_c01016{letter-spacing:-0.640000pt;}
.ls5_c01016{letter-spacing:-0.384000pt;}
.ls6_c01016{letter-spacing:-0.047467pt;}
.ls3_c01016{letter-spacing:0.000000pt;}
.ls2_c01016{letter-spacing:0.128000pt;}
.ls1_c01016{letter-spacing:6.528000pt;}
.ls0_c01016{letter-spacing:24.448000pt;}
.ws0_c01016{word-spacing:-17.792000pt;}
.ws1_c01016{word-spacing:0.000000pt;}
._e_c01016{margin-left:-3.880607pt;}
._d_c01016{margin-left:-2.199393pt;}
._0_c01016{margin-left:-1.236303pt;}
._3_c01016{width:1.002688pt;}
._8_c01016{width:2.368000pt;}
._9_c01016{width:3.445333pt;}
._7_c01016{width:5.504000pt;}
._6_c01016{width:6.656000pt;}
._2_c01016{width:8.469333pt;}
._1_c01016{width:9.706667pt;}
._c_c01016{width:12.052303pt;}
._b_c01016{width:13.376000pt;}
._5_c01016{width:23.285312pt;}
._4_c01016{width:24.746667pt;}
._a_c01016{width:687.466667pt;}
.fs2_c01016{font-size:53.120000pt;}
.fs0_c01016{font-size:58.880000pt;}
.fs1_c01016{font-size:64.000000pt;}
.y0_c01016{bottom:0.000000pt;}
.y22_c01016{bottom:4.640000pt;}
.y26_c01016{bottom:6.080000pt;}
.y21_c01016{bottom:20.160000pt;}
.y25_c01016{bottom:21.600000pt;}
.y20_c01016{bottom:35.520000pt;}
.y24_c01016{bottom:36.960000pt;}
.y1f_c01016{bottom:50.720000pt;}
.y4_c01016{bottom:51.232000pt;}
.y3_c01016{bottom:69.152000pt;}
.y1d_c01016{bottom:127.552000pt;}
.y1c_c01016{bottom:162.106667pt;}
.y1b_c01016{bottom:183.226667pt;}
.y1a_c01016{bottom:217.626667pt;}
.y19_c01016{bottom:252.226667pt;}
.y18_c01016{bottom:286.946667pt;}
.y17_c01016{bottom:308.066667pt;}
.y16_c01016{bottom:329.186667pt;}
.y15_c01016{bottom:350.146667pt;}
.y14_c01016{bottom:371.266667pt;}
.y13_c01016{bottom:392.546667pt;}
.y12_c01016{bottom:413.666667pt;}
.y11_c01016{bottom:434.786667pt;}
.y10_c01016{bottom:469.346667pt;}
.yf_c01016{bottom:503.773333pt;}
.y1e_c01016{bottom:535.613333pt;}
.ye_c01016{bottom:538.333333pt;}
.y23_c01016{bottom:546.973333pt;}
.yd_c01016{bottom:572.733333pt;}
.yc_c01016{bottom:603.773333pt;}
.yb_c01016{bottom:886.373333pt;}
.ya_c01016{bottom:907.493333pt;}
.y9_c01016{bottom:928.453333pt;}
.y8_c01016{bottom:949.733333pt;}
.y7_c01016{bottom:971.013333pt;}
.y6_c01016{bottom:992.133333pt;}
.y5_c01016{bottom:1013.280000pt;}
.y2_c01016{bottom:1044.160000pt;}
.y1_c01016{bottom:1061.920000pt;}
.h2_c01016{height:42.722500pt;}
.h3_c01016{height:44.648750pt;}
.h8_c01016{height:47.491563pt;}
.h9_c01016{height:49.120000pt;}
.h4_c01016{height:57.375000pt;}
.h6_c01016{height:57.781250pt;}
.h7_c01016{height:62.880000pt;}
.h5_c01016{height:66.750000pt;}
.h0_c01016{height:1122.560000pt;}
.h1_c01016{height:1122.666667pt;}
.w2_c01016{width:137.933333pt;}
.w3_c01016{width:176.040000pt;}
.w0_c01016{width:793.760000pt;}
.w1_c01016{width:794.000000pt;}
.x0_c01016{left:0.000000pt;}
.x4_c01016{left:113.472000pt;}
.x1_c01016{left:151.066667pt;}
.x6_c01016{left:230.120000pt;}
.x5_c01016{left:368.226667pt;}
.x7_c01016{left:388.546667pt;}
.x3_c01016{left:658.213333pt;}
.x2_c01016{left:680.453333pt;}
}





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

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01017;src:url('chunks/assets/font_78afca276eb8a1d64f9aac3b.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01017;src:url('chunks/assets/font_6d456838b8303261d1b40ba3.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01017;src:url('chunks/assets/font_bb7f98212d1441eae5f3906c.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01017;src:url('chunks/assets/font_e8a70e5927f128e33cae11dd.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01017;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff6_c01017{font-family:ff6_c01017;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;}
.m0_c01017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls3_c01017{letter-spacing:-0.432000px;}
.ls2_c01017{letter-spacing:0.000000px;}
.ls0_c01017{letter-spacing:0.288000px;}
.ls1_c01017{letter-spacing:5.904000px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01017{word-spacing:-20.304000px;}
.ws1_c01017{word-spacing:-20.016000px;}
.ws2_c01017{word-spacing:0.000000px;}
._d_c01017{margin-left:-5.256000px;}
._c_c01017{margin-left:-3.816000px;}
._6_c01017{margin-left:-2.668435px;}
._0_c01017{margin-left:-1.258891px;}
._3_c01017{width:1.117181px;}
._7_c01017{width:2.778682px;}
._5_c01017{width:4.210891px;}
._4_c01017{width:5.328000px;}
._a_c01017{width:7.087762px;}
._11_c01017{width:9.861782px;}
._10_c01017{width:11.088000px;}
._f_c01017{width:16.306891px;}
._e_c01017{width:17.568000px;}
._b_c01017{width:21.672000px;}
._9_c01017{width:23.878891px;}
._8_c01017{width:25.200000px;}
._2_c01017{width:26.890819px;}
._1_c01017{width:28.128024px;}
.fc0_c01017{color:rgb(0,0,0);}
.fs2_c01017{font-size:59.760000px;}
.fs0_c01017{font-size:66.240000px;}
.fs1_c01017{font-size:72.000000px;}
.y0_c01017{bottom:0.000000px;}
.y4_c01017{bottom:57.636000px;}
.y3_c01017{bottom:77.796000px;}
.y1b_c01017{bottom:127.836000px;}
.y1a_c01017{bottom:151.770000px;}
.y19_c01017{bottom:175.710000px;}
.y18_c01017{bottom:199.470000px;}
.y17_c01017{bottom:223.230000px;}
.y16_c01017{bottom:246.990000px;}
.y15_c01017{bottom:270.750000px;}
.y14_c01017{bottom:294.555000px;}
.y13_c01017{bottom:318.315000px;}
.y12_c01017{bottom:342.075000px;}
.y11_c01017{bottom:365.835000px;}
.y10_c01017{bottom:404.715000px;}
.yf_c01017{bottom:443.595000px;}
.ye_c01017{bottom:481.215000px;}
.yd_c01017{bottom:934.530000px;}
.yc_c01017{bottom:958.110000px;}
.yb_c01017{bottom:982.050000px;}
.ya_c01017{bottom:1005.990000px;}
.y9_c01017{bottom:1029.750000px;}
.y8_c01017{bottom:1053.330000px;}
.y7_c01017{bottom:1077.090000px;}
.y6_c01017{bottom:1101.030000px;}
.y5_c01017{bottom:1139.760000px;}
.y2_c01017{bottom:1174.680000px;}
.y1_c01017{bottom:1194.660000px;}
.h2_c01017{height:48.062812px;}
.h3_c01017{height:50.229844px;}
.h5_c01017{height:64.546875px;}
.h4_c01017{height:65.003906px;}
.h6_c01017{height:75.093750px;}
.h0_c01017{height:1262.880000px;}
.h1_c01017{height:1263.000000px;}
.w0_c01017{width:892.980000px;}
.w1_c01017{width:893.250000px;}
.x0_c01017{left:0.000000px;}
.x1_c01017{left:127.656000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls3_c01017{letter-spacing:-0.384000pt;}
.ls2_c01017{letter-spacing:0.000000pt;}
.ls0_c01017{letter-spacing:0.256000pt;}
.ls1_c01017{letter-spacing:5.248000pt;}
.ws0_c01017{word-spacing:-18.048000pt;}
.ws1_c01017{word-spacing:-17.792000pt;}
.ws2_c01017{word-spacing:0.000000pt;}
._d_c01017{margin-left:-4.672000pt;}
._c_c01017{margin-left:-3.392000pt;}
._6_c01017{margin-left:-2.371942pt;}
._0_c01017{margin-left:-1.119014pt;}
._3_c01017{width:0.993050pt;}
._7_c01017{width:2.469939pt;}
._5_c01017{width:3.743014pt;}
._4_c01017{width:4.736000pt;}
._a_c01017{width:6.300233pt;}
._11_c01017{width:8.766029pt;}
._10_c01017{width:9.856000pt;}
._f_c01017{width:14.495014pt;}
._e_c01017{width:15.616000pt;}
._b_c01017{width:19.264000pt;}
._9_c01017{width:21.225681pt;}
._8_c01017{width:22.400000pt;}
._2_c01017{width:23.902950pt;}
._1_c01017{width:25.002688pt;}
.fs2_c01017{font-size:53.120000pt;}
.fs0_c01017{font-size:58.880000pt;}
.fs1_c01017{font-size:64.000000pt;}
.y0_c01017{bottom:0.000000pt;}
.y4_c01017{bottom:51.232000pt;}
.y3_c01017{bottom:69.152000pt;}
.y1b_c01017{bottom:113.632000pt;}
.y1a_c01017{bottom:134.906667pt;}
.y19_c01017{bottom:156.186667pt;}
.y18_c01017{bottom:177.306667pt;}
.y17_c01017{bottom:198.426667pt;}
.y16_c01017{bottom:219.546667pt;}
.y15_c01017{bottom:240.666667pt;}
.y14_c01017{bottom:261.826667pt;}
.y13_c01017{bottom:282.946667pt;}
.y12_c01017{bottom:304.066667pt;}
.y11_c01017{bottom:325.186667pt;}
.y10_c01017{bottom:359.746667pt;}
.yf_c01017{bottom:394.306667pt;}
.ye_c01017{bottom:427.746667pt;}
.yd_c01017{bottom:830.693333pt;}
.yc_c01017{bottom:851.653333pt;}
.yb_c01017{bottom:872.933333pt;}
.ya_c01017{bottom:894.213333pt;}
.y9_c01017{bottom:915.333333pt;}
.y8_c01017{bottom:936.293333pt;}
.y7_c01017{bottom:957.413333pt;}
.y6_c01017{bottom:978.693333pt;}
.y5_c01017{bottom:1013.120000pt;}
.y2_c01017{bottom:1044.160000pt;}
.y1_c01017{bottom:1061.920000pt;}
.h2_c01017{height:42.722500pt;}
.h3_c01017{height:44.648750pt;}
.h5_c01017{height:57.375000pt;}
.h4_c01017{height:57.781250pt;}
.h6_c01017{height:66.750000pt;}
.h0_c01017{height:1122.560000pt;}
.h1_c01017{height:1122.666667pt;}
.w0_c01017{width:793.760000pt;}
.w1_c01017{width:794.000000pt;}
.x0_c01017{left:0.000000pt;}
.x1_c01017{left:113.472000pt;}
}





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

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01018;src:url('chunks/assets/font_456bf80f3046a501324cbdae.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01018;src:url('chunks/assets/font_90aa43281aba297b809a5890.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01018;src:url('chunks/assets/font_aed00ea700ed8db8c5416e48.woff2')format("woff");}.ff4_c01018{font-family:ff4_c01018;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01018;src:url('chunks/assets/font_b45cf994c27507da67926e22.woff2')format("woff");}.ff5_c01018{font-family:ff5_c01018;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01018;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff6_c01018{font-family:ff6_c01018;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_c01018;src:url('chunks/assets/font_f24904a8c349c35d3a8beda6.woff2')format("woff");}.ff7_c01018{font-family:ff7_c01018;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01018;src:url('chunks/assets/font_9d6c83234f6484a3d72742fe.woff2')format("woff");}.ff8_c01018{font-family:ff8_c01018;line-height:1.211914;font-style:normal;font-weight: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_c01018;src:url('chunks/assets/font_bfbd1ad16f51d209463b4e8a.woff2')format("woff");}.ff9_c01018{font-family:ff9_c01018;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls2_c01018{letter-spacing:-0.432000px;}
.ls5_c01018{letter-spacing:-0.247800px;}
.ls3_c01018{letter-spacing:-0.181200px;}
.ls1_c01018{letter-spacing:0.000000px;}
.ls4_c01018{letter-spacing:0.150000px;}
.ls0_c01018{letter-spacing:10.944000px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01018{word-spacing:-19.584000px;}
.ws1_c01018{word-spacing:0.000000px;}
._a_c01018{margin-left:-3.623976px;}
._0_c01018{margin-left:-1.390841px;}
._1_c01018{width:1.015800px;}
._7_c01018{width:2.520000px;}
._d_c01018{width:6.696000px;}
._f_c01018{width:7.912200px;}
._9_c01018{width:8.939952px;}
._8_c01018{width:10.200024px;}
._4_c01018{width:11.448000px;}
._3_c01018{width:12.766841px;}
._2_c01018{width:13.896000px;}
._e_c01018{width:18.733906px;}
._6_c01018{width:21.888000px;}
._5_c01018{width:22.896000px;}
._c_c01018{width:36.610841px;}
._b_c01018{width:37.728000px;}
.fc0_c01018{color:rgb(0,0,0);}
.fs4_c01018{font-size:38.880000px;}
.fs3_c01018{font-size:48.240000px;}
.fs1_c01018{font-size:59.760000px;}
.fs0_c01018{font-size:66.240000px;}
.fs2_c01018{font-size:72.000000px;}
.y0_c01018{bottom:0.000000px;}
.y21_c01018{bottom:0.705000px;}
.y20_c01018{bottom:18.165000px;}
.y4_c01018{bottom:57.636000px;}
.y3_c01018{bottom:77.796000px;}
.y1e_c01018{bottom:109.296000px;}
.y1d_c01018{bottom:127.656000px;}
.y1c_c01018{bottom:145.836000px;}
.y1b_c01018{bottom:151.050000px;}
.y1a_c01018{bottom:165.630000px;}
.y19_c01018{bottom:203.790000px;}
.y18_c01018{bottom:242.490000px;}
.y1f_c01018{bottom:247.545000px;}
.y17_c01018{bottom:266.430000px;}
.y16_c01018{bottom:290.235000px;}
.y15_c01018{bottom:313.995000px;}
.y14_c01018{bottom:337.755000px;}
.y13_c01018{bottom:361.875000px;}
.y12_c01018{bottom:385.635000px;}
.y11_c01018{bottom:409.215000px;}
.y10_c01018{bottom:433.155000px;}
.yf_c01018{bottom:456.915000px;}
.ye_c01018{bottom:480.675000px;}
.yd_c01018{bottom:504.435000px;}
.yc_c01018{bottom:528.195000px;}
.yb_c01018{bottom:551.955000px;}
.y9_c01018{bottom:576.105000px;}
.ya_c01018{bottom:582.045000px;}
.y8_c01018{bottom:599.685000px;}
.y7_c01018{bottom:638.565000px;}
.y6_c01018{bottom:677.265000px;}
.y5_c01018{bottom:715.065000px;}
.y2_c01018{bottom:1174.680000px;}
.y1_c01018{bottom:1194.660000px;}
.hc_c01018{height:31.860000px;}
.ha_c01018{height:41.484960px;}
.h8_c01018{height:43.246406px;}
.h2_c01018{height:48.062812px;}
.h3_c01018{height:50.229844px;}
.h4_c01018{height:53.428008px;}
.hb_c01018{height:63.763920px;}
.h5_c01018{height:64.546875px;}
.h6_c01018{height:65.003906px;}
.h9_c01018{height:75.093750px;}
.h7_c01018{height:1262.865000px;}
.h0_c01018{height:1262.880000px;}
.h1_c01018{height:1263.000000px;}
.w3_c01018{width:270.570000px;}
.w2_c01018{width:892.957500px;}
.w0_c01018{width:892.980000px;}
.w1_c01018{width:893.250000px;}
.x0_c01018{left:0.000000px;}
.x4_c01018{left:127.656000px;}
.x8_c01018{left:139.896000px;}
.x1_c01018{left:169.950000px;}
.x7_c01018{left:343.695000px;}
.x9_c01018{left:515.640000px;}
.x5_c01018{left:563.662500px;}
.x6_c01018{left:577.005000px;}
.x3_c01018{left:740.490000px;}
.x2_c01018{left:765.510000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls2_c01018{letter-spacing:-0.384000pt;}
.ls5_c01018{letter-spacing:-0.220267pt;}
.ls3_c01018{letter-spacing:-0.161067pt;}
.ls1_c01018{letter-spacing:0.000000pt;}
.ls4_c01018{letter-spacing:0.133333pt;}
.ls0_c01018{letter-spacing:9.728000pt;}
.ws0_c01018{word-spacing:-17.408000pt;}
.ws1_c01018{word-spacing:0.000000pt;}
._a_c01018{margin-left:-3.221312pt;}
._0_c01018{margin-left:-1.236303pt;}
._1_c01018{width:0.902934pt;}
._7_c01018{width:2.240000pt;}
._d_c01018{width:5.952000pt;}
._f_c01018{width:7.033066pt;}
._9_c01018{width:7.946624pt;}
._8_c01018{width:9.066688pt;}
._4_c01018{width:10.176000pt;}
._3_c01018{width:11.348303pt;}
._2_c01018{width:12.352000pt;}
._e_c01018{width:16.652361pt;}
._6_c01018{width:19.456000pt;}
._5_c01018{width:20.352000pt;}
._c_c01018{width:32.542970pt;}
._b_c01018{width:33.536000pt;}
.fs4_c01018{font-size:34.560000pt;}
.fs3_c01018{font-size:42.880000pt;}
.fs1_c01018{font-size:53.120000pt;}
.fs0_c01018{font-size:58.880000pt;}
.fs2_c01018{font-size:64.000000pt;}
.y0_c01018{bottom:0.000000pt;}
.y21_c01018{bottom:0.626667pt;}
.y20_c01018{bottom:16.146667pt;}
.y4_c01018{bottom:51.232000pt;}
.y3_c01018{bottom:69.152000pt;}
.y1e_c01018{bottom:97.152000pt;}
.y1d_c01018{bottom:113.472000pt;}
.y1c_c01018{bottom:129.632000pt;}
.y1b_c01018{bottom:134.266667pt;}
.y1a_c01018{bottom:147.226667pt;}
.y19_c01018{bottom:181.146667pt;}
.y18_c01018{bottom:215.546667pt;}
.y1f_c01018{bottom:220.040000pt;}
.y17_c01018{bottom:236.826667pt;}
.y16_c01018{bottom:257.986667pt;}
.y15_c01018{bottom:279.106667pt;}
.y14_c01018{bottom:300.226667pt;}
.y13_c01018{bottom:321.666667pt;}
.y12_c01018{bottom:342.786667pt;}
.y11_c01018{bottom:363.746667pt;}
.y10_c01018{bottom:385.026667pt;}
.yf_c01018{bottom:406.146667pt;}
.ye_c01018{bottom:427.266667pt;}
.yd_c01018{bottom:448.386667pt;}
.yc_c01018{bottom:469.506667pt;}
.yb_c01018{bottom:490.626667pt;}
.y9_c01018{bottom:512.093333pt;}
.ya_c01018{bottom:517.373333pt;}
.y8_c01018{bottom:533.053333pt;}
.y7_c01018{bottom:567.613333pt;}
.y6_c01018{bottom:602.013333pt;}
.y5_c01018{bottom:635.613333pt;}
.y2_c01018{bottom:1044.160000pt;}
.y1_c01018{bottom:1061.920000pt;}
.hc_c01018{height:28.320000pt;}
.ha_c01018{height:36.875520pt;}
.h8_c01018{height:38.441250pt;}
.h2_c01018{height:42.722500pt;}
.h3_c01018{height:44.648750pt;}
.h4_c01018{height:47.491563pt;}
.hb_c01018{height:56.679040pt;}
.h5_c01018{height:57.375000pt;}
.h6_c01018{height:57.781250pt;}
.h9_c01018{height:66.750000pt;}
.h7_c01018{height:1122.546667pt;}
.h0_c01018{height:1122.560000pt;}
.h1_c01018{height:1122.666667pt;}
.w3_c01018{width:240.506667pt;}
.w2_c01018{width:793.740000pt;}
.w0_c01018{width:793.760000pt;}
.w1_c01018{width:794.000000pt;}
.x0_c01018{left:0.000000pt;}
.x4_c01018{left:113.472000pt;}
.x8_c01018{left:124.352000pt;}
.x1_c01018{left:151.066667pt;}
.x7_c01018{left:305.506667pt;}
.x9_c01018{left:458.346667pt;}
.x5_c01018{left:501.033333pt;}
.x6_c01018{left:512.893333pt;}
.x3_c01018{left:658.213333pt;}
.x2_c01018{left:680.453333pt;}
}





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

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01019;src:url('chunks/assets/font_456bf80f3046a501324cbdae.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01019;src:url('chunks/assets/font_188c9299ebac31e532aab0f5.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_fed6c0416f9b064afff4f3ae.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01019;src:url('chunks/assets/font_4b4f7d3f8461a9f6979c69b9.woff2')format("woff");}.ff5_c01019{font-family:ff5_c01019;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls3_c01019{letter-spacing:-0.432000px;}
.ls2_c01019{letter-spacing:0.000000px;}
.ls1_c01019{letter-spacing:0.216000px;}
.ls0_c01019{letter-spacing:0.288000px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01019{word-spacing:-20.016000px;}
.ws1_c01019{word-spacing:0.000000px;}
._10_c01019{margin-left:-5.318194px;}
._1_c01019{margin-left:-4.176000px;}
._3_c01019{margin-left:-3.024000px;}
._0_c01019{margin-left:-1.258891px;}
._2_c01019{width:1.008000px;}
._4_c01019{width:2.363976px;}
._a_c01019{width:4.320000px;}
._9_c01019{width:5.376024px;}
._e_c01019{width:7.306891px;}
._d_c01019{width:9.168048px;}
._8_c01019{width:10.847952px;}
._7_c01019{width:11.928024px;}
._f_c01019{width:13.536000px;}
._c_c01019{width:16.378891px;}
._b_c01019{width:17.640000px;}
._6_c01019{width:31.942915px;}
._5_c01019{width:33.264000px;}
.fc0_c01019{color:rgb(0,0,0);}
.fs0_c01019{font-size:66.240000px;}
.fs1_c01019{font-size:72.000000px;}
.y0_c01019{bottom:0.000000px;}
.y4_c01019{bottom:57.636000px;}
.y3_c01019{bottom:77.796000px;}
.y29_c01019{bottom:132.696000px;}
.y28_c01019{bottom:171.570000px;}
.y27_c01019{bottom:210.270000px;}
.y26_c01019{bottom:249.330000px;}
.y25_c01019{bottom:273.090000px;}
.y24_c01019{bottom:296.895000px;}
.y23_c01019{bottom:320.835000px;}
.y22_c01019{bottom:344.415000px;}
.y21_c01019{bottom:368.355000px;}
.y20_c01019{bottom:391.935000px;}
.y1f_c01019{bottom:415.875000px;}
.y1e_c01019{bottom:439.815000px;}
.y1d_c01019{bottom:463.395000px;}
.y1c_c01019{bottom:487.155000px;}
.y1b_c01019{bottom:526.035000px;}
.y1a_c01019{bottom:564.765000px;}
.y19_c01019{bottom:603.825000px;}
.y18_c01019{bottom:627.585000px;}
.y17_c01019{bottom:651.525000px;}
.y16_c01019{bottom:675.105000px;}
.y15_c01019{bottom:699.045000px;}
.y14_c01019{bottom:722.805000px;}
.y13_c01019{bottom:746.565000px;}
.y12_c01019{bottom:770.325000px;}
.y11_c01019{bottom:794.085000px;}
.y10_c01019{bottom:817.845000px;}
.yf_c01019{bottom:841.605000px;}
.ye_c01019{bottom:880.530000px;}
.yd_c01019{bottom:919.410000px;}
.yc_c01019{bottom:958.110000px;}
.yb_c01019{bottom:981.870000px;}
.ya_c01019{bottom:1005.990000px;}
.y9_c01019{bottom:1029.750000px;}
.y8_c01019{bottom:1053.510000px;}
.y7_c01019{bottom:1077.090000px;}
.y6_c01019{bottom:1101.030000px;}
.y5_c01019{bottom:1139.760000px;}
.y2_c01019{bottom:1174.680000px;}
.y1_c01019{bottom:1194.660000px;}
.h2_c01019{height:48.062812px;}
.h3_c01019{height:50.229844px;}
.h5_c01019{height:64.546875px;}
.h4_c01019{height:65.003906px;}
.h0_c01019{height:1262.880000px;}
.h1_c01019{height:1263.000000px;}
.w0_c01019{width:892.980000px;}
.w1_c01019{width:893.250000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:127.656000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls3_c01019{letter-spacing:-0.384000pt;}
.ls2_c01019{letter-spacing:0.000000pt;}
.ls1_c01019{letter-spacing:0.192000pt;}
.ls0_c01019{letter-spacing:0.256000pt;}
.ws0_c01019{word-spacing:-17.792000pt;}
.ws1_c01019{word-spacing:0.000000pt;}
._10_c01019{margin-left:-4.727283pt;}
._1_c01019{margin-left:-3.712000pt;}
._3_c01019{margin-left:-2.688000pt;}
._0_c01019{margin-left:-1.119014pt;}
._2_c01019{width:0.896000pt;}
._4_c01019{width:2.101312pt;}
._a_c01019{width:3.840000pt;}
._9_c01019{width:4.778688pt;}
._e_c01019{width:6.495014pt;}
._d_c01019{width:8.149376pt;}
._8_c01019{width:9.642624pt;}
._7_c01019{width:10.602688pt;}
._f_c01019{width:12.032000pt;}
._c_c01019{width:14.559014pt;}
._b_c01019{width:15.680000pt;}
._6_c01019{width:28.393702pt;}
._5_c01019{width:29.568000pt;}
.fs0_c01019{font-size:58.880000pt;}
.fs1_c01019{font-size:64.000000pt;}
.y0_c01019{bottom:0.000000pt;}
.y4_c01019{bottom:51.232000pt;}
.y3_c01019{bottom:69.152000pt;}
.y29_c01019{bottom:117.952000pt;}
.y28_c01019{bottom:152.506667pt;}
.y27_c01019{bottom:186.906667pt;}
.y26_c01019{bottom:221.626667pt;}
.y25_c01019{bottom:242.746667pt;}
.y24_c01019{bottom:263.906667pt;}
.y23_c01019{bottom:285.186667pt;}
.y22_c01019{bottom:306.146667pt;}
.y21_c01019{bottom:327.426667pt;}
.y20_c01019{bottom:348.386667pt;}
.y1f_c01019{bottom:369.666667pt;}
.y1e_c01019{bottom:390.946667pt;}
.y1d_c01019{bottom:411.906667pt;}
.y1c_c01019{bottom:433.026667pt;}
.y1b_c01019{bottom:467.586667pt;}
.y1a_c01019{bottom:502.013333pt;}
.y19_c01019{bottom:536.733333pt;}
.y18_c01019{bottom:557.853333pt;}
.y17_c01019{bottom:579.133333pt;}
.y16_c01019{bottom:600.093333pt;}
.y15_c01019{bottom:621.373333pt;}
.y14_c01019{bottom:642.493333pt;}
.y13_c01019{bottom:663.613333pt;}
.y12_c01019{bottom:684.733333pt;}
.y11_c01019{bottom:705.853333pt;}
.y10_c01019{bottom:726.973333pt;}
.yf_c01019{bottom:748.093333pt;}
.ye_c01019{bottom:782.693333pt;}
.yd_c01019{bottom:817.253333pt;}
.yc_c01019{bottom:851.653333pt;}
.yb_c01019{bottom:872.773333pt;}
.ya_c01019{bottom:894.213333pt;}
.y9_c01019{bottom:915.333333pt;}
.y8_c01019{bottom:936.453333pt;}
.y7_c01019{bottom:957.413333pt;}
.y6_c01019{bottom:978.693333pt;}
.y5_c01019{bottom:1013.120000pt;}
.y2_c01019{bottom:1044.160000pt;}
.y1_c01019{bottom:1061.920000pt;}
.h2_c01019{height:42.722500pt;}
.h3_c01019{height:44.648750pt;}
.h5_c01019{height:57.375000pt;}
.h4_c01019{height:57.781250pt;}
.h0_c01019{height:1122.560000pt;}
.h1_c01019{height:1122.666667pt;}
.w0_c01019{width:793.760000pt;}
.w1_c01019{width:794.000000pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:113.472000pt;}
}





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

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01020;src:url('chunks/assets/font_4510f3298f1c2c0ca23b5713.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01020;src:url('chunks/assets/font_7e11b366243819ff9f3534ea.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01020;src:url('chunks/assets/font_a0021d816bc70b5977db30e9.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01020;src:url('chunks/assets/font_cf059b5b91297572af75ecce.woff2')format("woff");}.ff5_c01020{font-family:ff5_c01020;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01020;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff6_c01020{font-family:ff6_c01020;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_c01020;src:url('chunks/assets/font_6692423860191587c25e1d8a.woff2')format("woff");}.ff7_c01020{font-family:ff7_c01020;line-height:1.575000;font-style:normal;font-weight: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_c01020;src:url('chunks/assets/font_9767312c6419e6ebb1280043.woff2')format("woff");}.ff8_c01020{font-family:ff8_c01020;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls4_c01020{letter-spacing:-0.247800px;}
.ls3_c01020{letter-spacing:-0.181200px;}
.ls2_c01020{letter-spacing:-0.144000px;}
.ls1_c01020{letter-spacing:0.000000px;}
.ls0_c01020{letter-spacing:0.288000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01020{word-spacing:-20.304000px;}
.ws0_c01020{word-spacing:-19.872000px;}
.ws2_c01020{word-spacing:0.000000px;}
._3_c01020{margin-left:-4.176000px;}
._b_c01020{margin-left:-3.024000px;}
._0_c01020{margin-left:-1.390841px;}
._1_c01020{width:1.236024px;}
._d_c01020{width:2.304000px;}
._2_c01020{width:3.683784px;}
._9_c01020{width:5.220408px;}
._c_c01020{width:6.371592px;}
._6_c01020{width:8.328024px;}
._7_c01020{width:9.791928px;}
._a_c01020{width:11.304000px;}
._e_c01020{width:12.744000px;}
._8_c01020{width:15.336000px;}
._12_c01020{width:16.344000px;}
._11_c01020{width:21.384000px;}
._5_c01020{width:23.073683px;}
._4_c01020{width:24.192000px;}
._10_c01020{width:25.965683px;}
._f_c01020{width:27.000000px;}
.fc0_c01020{color:rgb(0,0,0);}
.fs4_c01020{font-size:38.880000px;}
.fs3_c01020{font-size:48.240000px;}
.fs5_c01020{font-size:59.760000px;}
.fs0_c01020{font-size:66.240000px;}
.fs1_c01020{font-size:72.000000px;}
.fs2_c01020{font-size:84.240000px;}
.y0_c01020{bottom:0.000000px;}
.y2_c01020{bottom:77.796000px;}
.y2b_c01020{bottom:109.296000px;}
.y2a_c01020{bottom:127.656000px;}
.y29_c01020{bottom:132.876000px;}
.y28_c01020{bottom:174.810000px;}
.y27_c01020{bottom:198.570000px;}
.y26_c01020{bottom:222.510000px;}
.y25_c01020{bottom:246.270000px;}
.y24_c01020{bottom:285.015000px;}
.y23_c01020{bottom:308.955000px;}
.y22_c01020{bottom:332.715000px;}
.y21_c01020{bottom:356.475000px;}
.y20_c01020{bottom:380.415000px;}
.y1f_c01020{bottom:404.175000px;}
.y1e_c01020{bottom:427.935000px;}
.y1d_c01020{bottom:451.695000px;}
.y1c_c01020{bottom:475.455000px;}
.y1b_c01020{bottom:499.215000px;}
.y1a_c01020{bottom:523.155000px;}
.y19_c01020{bottom:546.915000px;}
.y18_c01020{bottom:570.705000px;}
.y17_c01020{bottom:594.465000px;}
.y16_c01020{bottom:618.405000px;}
.y15_c01020{bottom:642.165000px;}
.y13_c01020{bottom:665.925000px;}
.y14_c01020{bottom:671.865000px;}
.y12_c01020{bottom:711.105000px;}
.y11_c01020{bottom:791.385000px;}
.y10_c01020{bottom:815.325000px;}
.yf_c01020{bottom:839.085000px;}
.ye_c01020{bottom:862.890000px;}
.yd_c01020{bottom:886.650000px;}
.yc_c01020{bottom:910.590000px;}
.yb_c01020{bottom:934.350000px;}
.ya_c01020{bottom:958.110000px;}
.y9_c01020{bottom:981.870000px;}
.y8_c01020{bottom:1005.810000px;}
.y7_c01020{bottom:1029.570000px;}
.y6_c01020{bottom:1053.510000px;}
.y5_c01020{bottom:1077.090000px;}
.y4_c01020{bottom:1101.030000px;}
.y3_c01020{bottom:1139.760000px;}
.y1_c01020{bottom:1194.660000px;}
.h9_c01020{height:41.484960px;}
.h8_c01020{height:43.246406px;}
.h2_c01020{height:48.062812px;}
.h3_c01020{height:50.229844px;}
.ha_c01020{height:63.763920px;}
.h5_c01020{height:64.546875px;}
.h4_c01020{height:65.003906px;}
.h6_c01020{height:87.859687px;}
.h7_c01020{height:1262.865000px;}
.h0_c01020{height:1262.880000px;}
.h1_c01020{height:1263.000000px;}
.w2_c01020{width:892.957500px;}
.w0_c01020{width:892.980000px;}
.w1_c01020{width:893.250000px;}
.x0_c01020{left:0.000000px;}
.x3_c01020{left:127.656000px;}
.x6_c01020{left:139.896000px;}
.x1_c01020{left:169.950000px;}
.x4_c01020{left:671.482500px;}
.x5_c01020{left:684.825000px;}
.x2_c01020{left:740.490000px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls4_c01020{letter-spacing:-0.220267pt;}
.ls3_c01020{letter-spacing:-0.161067pt;}
.ls2_c01020{letter-spacing:-0.128000pt;}
.ls1_c01020{letter-spacing:0.000000pt;}
.ls0_c01020{letter-spacing:0.256000pt;}
.ws1_c01020{word-spacing:-18.048000pt;}
.ws0_c01020{word-spacing:-17.664000pt;}
.ws2_c01020{word-spacing:0.000000pt;}
._3_c01020{margin-left:-3.712000pt;}
._b_c01020{margin-left:-2.688000pt;}
._0_c01020{margin-left:-1.236303pt;}
._1_c01020{width:1.098688pt;}
._d_c01020{width:2.048000pt;}
._2_c01020{width:3.274475pt;}
._9_c01020{width:4.640363pt;}
._c_c01020{width:5.663637pt;}
._6_c01020{width:7.402688pt;}
._7_c01020{width:8.703936pt;}
._a_c01020{width:10.048000pt;}
._e_c01020{width:11.328000pt;}
._8_c01020{width:13.632000pt;}
._12_c01020{width:14.528000pt;}
._11_c01020{width:19.008000pt;}
._5_c01020{width:20.509940pt;}
._4_c01020{width:21.504000pt;}
._10_c01020{width:23.080607pt;}
._f_c01020{width:24.000000pt;}
.fs4_c01020{font-size:34.560000pt;}
.fs3_c01020{font-size:42.880000pt;}
.fs5_c01020{font-size:53.120000pt;}
.fs0_c01020{font-size:58.880000pt;}
.fs1_c01020{font-size:64.000000pt;}
.fs2_c01020{font-size:74.880000pt;}
.y0_c01020{bottom:0.000000pt;}
.y2_c01020{bottom:69.152000pt;}
.y2b_c01020{bottom:97.152000pt;}
.y2a_c01020{bottom:113.472000pt;}
.y29_c01020{bottom:118.112000pt;}
.y28_c01020{bottom:155.386667pt;}
.y27_c01020{bottom:176.506667pt;}
.y26_c01020{bottom:197.786667pt;}
.y25_c01020{bottom:218.906667pt;}
.y24_c01020{bottom:253.346667pt;}
.y23_c01020{bottom:274.626667pt;}
.y22_c01020{bottom:295.746667pt;}
.y21_c01020{bottom:316.866667pt;}
.y20_c01020{bottom:338.146667pt;}
.y1f_c01020{bottom:359.266667pt;}
.y1e_c01020{bottom:380.386667pt;}
.y1d_c01020{bottom:401.506667pt;}
.y1c_c01020{bottom:422.626667pt;}
.y1b_c01020{bottom:443.746667pt;}
.y1a_c01020{bottom:465.026667pt;}
.y19_c01020{bottom:486.146667pt;}
.y18_c01020{bottom:507.293333pt;}
.y17_c01020{bottom:528.413333pt;}
.y16_c01020{bottom:549.693333pt;}
.y15_c01020{bottom:570.813333pt;}
.y13_c01020{bottom:591.933333pt;}
.y14_c01020{bottom:597.213333pt;}
.y12_c01020{bottom:632.093333pt;}
.y11_c01020{bottom:703.453333pt;}
.y10_c01020{bottom:724.733333pt;}
.yf_c01020{bottom:745.853333pt;}
.ye_c01020{bottom:767.013333pt;}
.yd_c01020{bottom:788.133333pt;}
.yc_c01020{bottom:809.413333pt;}
.yb_c01020{bottom:830.533333pt;}
.ya_c01020{bottom:851.653333pt;}
.y9_c01020{bottom:872.773333pt;}
.y8_c01020{bottom:894.053333pt;}
.y7_c01020{bottom:915.173333pt;}
.y6_c01020{bottom:936.453333pt;}
.y5_c01020{bottom:957.413333pt;}
.y4_c01020{bottom:978.693333pt;}
.y3_c01020{bottom:1013.120000pt;}
.y1_c01020{bottom:1061.920000pt;}
.h9_c01020{height:36.875520pt;}
.h8_c01020{height:38.441250pt;}
.h2_c01020{height:42.722500pt;}
.h3_c01020{height:44.648750pt;}
.ha_c01020{height:56.679040pt;}
.h5_c01020{height:57.375000pt;}
.h4_c01020{height:57.781250pt;}
.h6_c01020{height:78.097500pt;}
.h7_c01020{height:1122.546667pt;}
.h0_c01020{height:1122.560000pt;}
.h1_c01020{height:1122.666667pt;}
.w2_c01020{width:793.740000pt;}
.w0_c01020{width:793.760000pt;}
.w1_c01020{width:794.000000pt;}
.x0_c01020{left:0.000000pt;}
.x3_c01020{left:113.472000pt;}
.x6_c01020{left:124.352000pt;}
.x1_c01020{left:151.066667pt;}
.x4_c01020{left:596.873333pt;}
.x5_c01020{left:608.733333pt;}
.x2_c01020{left:658.213333pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01021;src:url('chunks/assets/font_0459419bc98af9e0d649dc1d.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01021;src:url('chunks/assets/font_59c52e526231933b770ebfbb.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01021;src:url('chunks/assets/font_bb8d3ebd11b6022de4d19cb0.woff2')format("woff");}.ff4_c01021{font-family:ff4_c01021;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls2_c01021{letter-spacing:0.000000px;}
.ls0_c01021{letter-spacing:0.216000px;}
.ls1_c01021{letter-spacing:0.288000px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01021{word-spacing:0.000000px;}
._a_c01021{margin-left:-4.680000px;}
._9_c01021{margin-left:-3.456000px;}
._15_c01021{margin-left:-2.448000px;}
._0_c01021{margin-left:-1.258891px;}
._2_c01021{width:1.080000px;}
._6_c01021{width:2.482891px;}
._5_c01021{width:3.600000px;}
._17_c01021{width:4.608000px;}
._1_c01021{width:5.832000px;}
._3_c01021{width:6.924024px;}
._f_c01021{width:8.129520px;}
._8_c01021{width:9.213782px;}
._7_c01021{width:10.440000px;}
._4_c01021{width:12.288024px;}
._12_c01021{width:13.367952px;}
._14_c01021{width:23.184000px;}
._13_c01021{width:24.192000px;}
._d_c01021{width:25.992000px;}
._16_c01021{width:28.152000px;}
._11_c01021{width:29.482891px;}
._10_c01021{width:31.464000px;}
._c_c01021{width:33.730891px;}
._b_c01021{width:35.712000px;}
._e_c01021{width:36.864000px;}
.fc0_c01021{color:rgb(0,0,0);}
.fs2_c01021{font-size:59.760000px;}
.fs0_c01021{font-size:66.240000px;}
.fs1_c01021{font-size:72.000000px;}
.y0_c01021{bottom:0.000000px;}
.y30_c01021{bottom:18.375000px;}
.y2f_c01021{bottom:35.835000px;}
.y2e_c01021{bottom:52.965000px;}
.y4_c01021{bottom:57.636000px;}
.y3_c01021{bottom:77.796000px;}
.y2c_c01021{bottom:166.530000px;}
.y2b_c01021{bottom:190.290000px;}
.y2a_c01021{bottom:213.870000px;}
.y29_c01021{bottom:237.810000px;}
.y28_c01021{bottom:261.570000px;}
.y27_c01021{bottom:285.555000px;}
.y26_c01021{bottom:309.135000px;}
.y25_c01021{bottom:333.075000px;}
.y24_c01021{bottom:357.015000px;}
.y23_c01021{bottom:380.595000px;}
.y22_c01021{bottom:404.355000px;}
.y21_c01021{bottom:428.115000px;}
.y20_c01021{bottom:452.055000px;}
.y1f_c01021{bottom:475.815000px;}
.y1e_c01021{bottom:499.575000px;}
.y2d_c01021{bottom:520.800000px;}
.y1d_c01021{bottom:538.455000px;}
.y1c_c01021{bottom:562.215000px;}
.y1b_c01021{bottom:586.005000px;}
.y1a_c01021{bottom:609.765000px;}
.y19_c01021{bottom:633.705000px;}
.y18_c01021{bottom:657.465000px;}
.y17_c01021{bottom:681.225000px;}
.y16_c01021{bottom:704.985000px;}
.y15_c01021{bottom:728.925000px;}
.y14_c01021{bottom:752.685000px;}
.y13_c01021{bottom:776.445000px;}
.y12_c01021{bottom:800.205000px;}
.y11_c01021{bottom:824.145000px;}
.y10_c01021{bottom:847.950000px;}
.yf_c01021{bottom:886.650000px;}
.ye_c01021{bottom:910.590000px;}
.yd_c01021{bottom:934.350000px;}
.yc_c01021{bottom:958.110000px;}
.yb_c01021{bottom:981.870000px;}
.ya_c01021{bottom:1005.810000px;}
.y9_c01021{bottom:1029.570000px;}
.y8_c01021{bottom:1053.330000px;}
.y7_c01021{bottom:1092.210000px;}
.y6_c01021{bottom:1115.970000px;}
.y5_c01021{bottom:1139.760000px;}
.y2_c01021{bottom:1174.680000px;}
.y1_c01021{bottom:1194.660000px;}
.h2_c01021{height:48.062812px;}
.h3_c01021{height:50.229844px;}
.h6_c01021{height:53.428008px;}
.h4_c01021{height:64.546875px;}
.h5_c01021{height:66.645000px;}
.h0_c01021{height:1262.880000px;}
.h1_c01021{height:1263.000000px;}
.w2_c01021{width:213.510000px;}
.w0_c01021{width:892.980000px;}
.w1_c01021{width:893.250000px;}
.x0_c01021{left:0.000000px;}
.x1_c01021{left:127.656000px;}
.x2_c01021{left:564.600000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls2_c01021{letter-spacing:0.000000pt;}
.ls0_c01021{letter-spacing:0.192000pt;}
.ls1_c01021{letter-spacing:0.256000pt;}
.ws0_c01021{word-spacing:0.000000pt;}
._a_c01021{margin-left:-4.160000pt;}
._9_c01021{margin-left:-3.072000pt;}
._15_c01021{margin-left:-2.176000pt;}
._0_c01021{margin-left:-1.119014pt;}
._2_c01021{width:0.960000pt;}
._6_c01021{width:2.207014pt;}
._5_c01021{width:3.200000pt;}
._17_c01021{width:4.096000pt;}
._1_c01021{width:5.184000pt;}
._3_c01021{width:6.154688pt;}
._f_c01021{width:7.226240pt;}
._8_c01021{width:8.190029pt;}
._7_c01021{width:9.280000pt;}
._4_c01021{width:10.922688pt;}
._12_c01021{width:11.882624pt;}
._14_c01021{width:20.608000pt;}
._13_c01021{width:21.504000pt;}
._d_c01021{width:23.104000pt;}
._16_c01021{width:25.024000pt;}
._11_c01021{width:26.207014pt;}
._10_c01021{width:27.968000pt;}
._c_c01021{width:29.983014pt;}
._b_c01021{width:31.744000pt;}
._e_c01021{width:32.768000pt;}
.fs2_c01021{font-size:53.120000pt;}
.fs0_c01021{font-size:58.880000pt;}
.fs1_c01021{font-size:64.000000pt;}
.y0_c01021{bottom:0.000000pt;}
.y30_c01021{bottom:16.333333pt;}
.y2f_c01021{bottom:31.853333pt;}
.y2e_c01021{bottom:47.080000pt;}
.y4_c01021{bottom:51.232000pt;}
.y3_c01021{bottom:69.152000pt;}
.y2c_c01021{bottom:148.026667pt;}
.y2b_c01021{bottom:169.146667pt;}
.y2a_c01021{bottom:190.106667pt;}
.y29_c01021{bottom:211.386667pt;}
.y28_c01021{bottom:232.506667pt;}
.y27_c01021{bottom:253.826667pt;}
.y26_c01021{bottom:274.786667pt;}
.y25_c01021{bottom:296.066667pt;}
.y24_c01021{bottom:317.346667pt;}
.y23_c01021{bottom:338.306667pt;}
.y22_c01021{bottom:359.426667pt;}
.y21_c01021{bottom:380.546667pt;}
.y20_c01021{bottom:401.826667pt;}
.y1f_c01021{bottom:422.946667pt;}
.y1e_c01021{bottom:444.066667pt;}
.y2d_c01021{bottom:462.933333pt;}
.y1d_c01021{bottom:478.626667pt;}
.y1c_c01021{bottom:499.746667pt;}
.y1b_c01021{bottom:520.893333pt;}
.y1a_c01021{bottom:542.013333pt;}
.y19_c01021{bottom:563.293333pt;}
.y18_c01021{bottom:584.413333pt;}
.y17_c01021{bottom:605.533333pt;}
.y16_c01021{bottom:626.653333pt;}
.y15_c01021{bottom:647.933333pt;}
.y14_c01021{bottom:669.053333pt;}
.y13_c01021{bottom:690.173333pt;}
.y12_c01021{bottom:711.293333pt;}
.y11_c01021{bottom:732.573333pt;}
.y10_c01021{bottom:753.733333pt;}
.yf_c01021{bottom:788.133333pt;}
.ye_c01021{bottom:809.413333pt;}
.yd_c01021{bottom:830.533333pt;}
.yc_c01021{bottom:851.653333pt;}
.yb_c01021{bottom:872.773333pt;}
.ya_c01021{bottom:894.053333pt;}
.y9_c01021{bottom:915.173333pt;}
.y8_c01021{bottom:936.293333pt;}
.y7_c01021{bottom:970.853333pt;}
.y6_c01021{bottom:991.973333pt;}
.y5_c01021{bottom:1013.120000pt;}
.y2_c01021{bottom:1044.160000pt;}
.y1_c01021{bottom:1061.920000pt;}
.h2_c01021{height:42.722500pt;}
.h3_c01021{height:44.648750pt;}
.h6_c01021{height:47.491563pt;}
.h4_c01021{height:57.375000pt;}
.h5_c01021{height:59.240000pt;}
.h0_c01021{height:1122.560000pt;}
.h1_c01021{height:1122.666667pt;}
.w2_c01021{width:189.786667pt;}
.w0_c01021{width:793.760000pt;}
.w1_c01021{width:794.000000pt;}
.x0_c01021{left:0.000000pt;}
.x1_c01021{left:113.472000pt;}
.x2_c01021{left:501.866667pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01022;src:url('chunks/assets/font_d300184a60c7e8aead8e85fb.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01022;src:url('chunks/assets/font_db8b8530d845d1b29b15c259.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01022;src:url('chunks/assets/font_88b57dda05f9d0ac1a937e72.woff2')format("woff");}.ff4_c01022{font-family:ff4_c01022;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01022;src:url('chunks/assets/font_34d5adfb220320729c86ad09.woff2')format("woff");}.ff5_c01022{font-family:ff5_c01022;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01022;src:url('chunks/assets/font_43325832a12db1d5c6cce798.woff2')format("woff");}.ff6_c01022{font-family:ff6_c01022;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01022;src:url('chunks/assets/font_78cfeded4ad031fbbbe6041a.woff2')format("woff");}.ff7_c01022{font-family:ff7_c01022;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls6_c01022{letter-spacing:-0.432000px;}
.ls8_c01022{letter-spacing:-0.272400px;}
.ls9_c01022{letter-spacing:-0.247800px;}
.ls5_c01022{letter-spacing:-0.181200px;}
.ls3_c01022{letter-spacing:0.000000px;}
.ls0_c01022{letter-spacing:0.144000px;}
.ls7_c01022{letter-spacing:0.150000px;}
.ls2_c01022{letter-spacing:0.152400px;}
.ls1_c01022{letter-spacing:0.174240px;}
.ls4_c01022{letter-spacing:0.288000px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01022{word-spacing:-21.187920px;}
.ws0_c01022{word-spacing:-20.304000px;}
.ws2_c01022{word-spacing:0.000000px;}
._0_c01022{margin-left:-1.390841px;}
._3_c01022{width:1.008000px;}
._5_c01022{width:2.566841px;}
._9_c01022{width:4.320000px;}
._2_c01022{width:7.128000px;}
._1_c01022{width:8.352000px;}
._a_c01022{width:9.526841px;}
._7_c01022{width:10.800000px;}
._6_c01022{width:11.880000px;}
._8_c01022{width:28.152000px;}
._4_c01022{width:35.640000px;}
.fc0_c01022{color:rgb(0,0,0);}
.fs3_c01022{font-size:38.880000px;}
.fs2_c01022{font-size:48.240000px;}
.fs4_c01022{font-size:59.760000px;}
.fs0_c01022{font-size:66.240000px;}
.fs1_c01022{font-size:72.000000px;}
.y0_c01022{bottom:0.000000px;}
.y24_c01022{bottom:6.495000px;}
.y4_c01022{bottom:57.636000px;}
.y3_c01022{bottom:77.796000px;}
.y22_c01022{bottom:109.296000px;}
.y21_c01022{bottom:127.656000px;}
.y20_c01022{bottom:132.876000px;}
.y1f_c01022{bottom:145.836000px;}
.y1e_c01022{bottom:164.010000px;}
.y1d_c01022{bottom:182.190000px;}
.y1c_c01022{bottom:187.410000px;}
.y1b_c01022{bottom:200.550000px;}
.y1a_c01022{bottom:218.730000px;}
.y19_c01022{bottom:237.810000px;}
.y18_c01022{bottom:243.030000px;}
.y17_c01022{bottom:257.610000px;}
.y23_c01022{bottom:295.620000px;}
.y16_c01022{bottom:325.155000px;}
.y15_c01022{bottom:815.325000px;}
.y14_c01022{bottom:839.085000px;}
.y13_c01022{bottom:862.890000px;}
.y11_c01022{bottom:886.650000px;}
.y12_c01022{bottom:892.590000px;}
.y10_c01022{bottom:910.590000px;}
.ye_c01022{bottom:934.350000px;}
.yf_c01022{bottom:940.290000px;}
.yd_c01022{bottom:958.110000px;}
.yc_c01022{bottom:996.990000px;}
.yb_c01022{bottom:1020.750000px;}
.y9_c01022{bottom:1044.690000px;}
.ya_c01022{bottom:1050.630000px;}
.y8_c01022{bottom:1068.270000px;}
.y7_c01022{bottom:1092.210000px;}
.y6_c01022{bottom:1115.970000px;}
.y5_c01022{bottom:1139.760000px;}
.y2_c01022{bottom:1174.680000px;}
.y1_c01022{bottom:1194.660000px;}
.hb_c01022{height:20.340000px;}
.h7_c01022{height:29.482734px;}
.ha_c01022{height:41.484960px;}
.h6_c01022{height:43.246406px;}
.h2_c01022{height:48.062812px;}
.h3_c01022{height:50.229844px;}
.hc_c01022{height:53.428008px;}
.h8_c01022{height:59.789180px;}
.h9_c01022{height:63.763920px;}
.h4_c01022{height:64.546875px;}
.h5_c01022{height:1262.865000px;}
.h0_c01022{height:1262.880000px;}
.h1_c01022{height:1263.000000px;}
.w3_c01022{width:513.075000px;}
.w2_c01022{width:892.957500px;}
.w0_c01022{width:892.980000px;}
.w1_c01022{width:893.250000px;}
.x0_c01022{left:0.000000px;}
.x4_c01022{left:127.656000px;}
.xd_c01022{left:137.376000px;}
.xe_c01022{left:139.896000px;}
.xf_c01022{left:143.325000px;}
.x1_c01022{left:169.950000px;}
.xc_c01022{left:343.695000px;}
.x5_c01022{left:348.172500px;}
.x6_c01022{left:361.515000px;}
.x7_c01022{left:410.452500px;}
.x8_c01022{left:423.795000px;}
.x9_c01022{left:699.247500px;}
.xa_c01022{left:712.590000px;}
.x3_c01022{left:740.490000px;}
.xb_c01022{left:758.310000px;}
.x2_c01022{left:765.510000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls6_c01022{letter-spacing:-0.384000pt;}
.ls8_c01022{letter-spacing:-0.242133pt;}
.ls9_c01022{letter-spacing:-0.220267pt;}
.ls5_c01022{letter-spacing:-0.161067pt;}
.ls3_c01022{letter-spacing:0.000000pt;}
.ls0_c01022{letter-spacing:0.128000pt;}
.ls7_c01022{letter-spacing:0.133333pt;}
.ls2_c01022{letter-spacing:0.135467pt;}
.ls1_c01022{letter-spacing:0.154880pt;}
.ls4_c01022{letter-spacing:0.256000pt;}
.ws1_c01022{word-spacing:-18.833707pt;}
.ws0_c01022{word-spacing:-18.048000pt;}
.ws2_c01022{word-spacing:0.000000pt;}
._0_c01022{margin-left:-1.236303pt;}
._3_c01022{width:0.896000pt;}
._5_c01022{width:2.281637pt;}
._9_c01022{width:3.840000pt;}
._2_c01022{width:6.336000pt;}
._1_c01022{width:7.424000pt;}
._a_c01022{width:8.468303pt;}
._7_c01022{width:9.600000pt;}
._6_c01022{width:10.560000pt;}
._8_c01022{width:25.024000pt;}
._4_c01022{width:31.680000pt;}
.fs3_c01022{font-size:34.560000pt;}
.fs2_c01022{font-size:42.880000pt;}
.fs4_c01022{font-size:53.120000pt;}
.fs0_c01022{font-size:58.880000pt;}
.fs1_c01022{font-size:64.000000pt;}
.y0_c01022{bottom:0.000000pt;}
.y24_c01022{bottom:5.773333pt;}
.y4_c01022{bottom:51.232000pt;}
.y3_c01022{bottom:69.152000pt;}
.y22_c01022{bottom:97.152000pt;}
.y21_c01022{bottom:113.472000pt;}
.y20_c01022{bottom:118.112000pt;}
.y1f_c01022{bottom:129.632000pt;}
.y1e_c01022{bottom:145.786667pt;}
.y1d_c01022{bottom:161.946667pt;}
.y1c_c01022{bottom:166.586667pt;}
.y1b_c01022{bottom:178.266667pt;}
.y1a_c01022{bottom:194.426667pt;}
.y19_c01022{bottom:211.386667pt;}
.y18_c01022{bottom:216.026667pt;}
.y17_c01022{bottom:228.986667pt;}
.y23_c01022{bottom:262.773333pt;}
.y16_c01022{bottom:289.026667pt;}
.y15_c01022{bottom:724.733333pt;}
.y14_c01022{bottom:745.853333pt;}
.y13_c01022{bottom:767.013333pt;}
.y11_c01022{bottom:788.133333pt;}
.y12_c01022{bottom:793.413333pt;}
.y10_c01022{bottom:809.413333pt;}
.ye_c01022{bottom:830.533333pt;}
.yf_c01022{bottom:835.813333pt;}
.yd_c01022{bottom:851.653333pt;}
.yc_c01022{bottom:886.213333pt;}
.yb_c01022{bottom:907.333333pt;}
.y9_c01022{bottom:928.613333pt;}
.ya_c01022{bottom:933.893333pt;}
.y8_c01022{bottom:949.573333pt;}
.y7_c01022{bottom:970.853333pt;}
.y6_c01022{bottom:991.973333pt;}
.y5_c01022{bottom:1013.120000pt;}
.y2_c01022{bottom:1044.160000pt;}
.y1_c01022{bottom:1061.920000pt;}
.hb_c01022{height:18.080000pt;}
.h7_c01022{height:26.206875pt;}
.ha_c01022{height:36.875520pt;}
.h6_c01022{height:38.441250pt;}
.h2_c01022{height:42.722500pt;}
.h3_c01022{height:44.648750pt;}
.hc_c01022{height:47.491563pt;}
.h8_c01022{height:53.145938pt;}
.h9_c01022{height:56.679040pt;}
.h4_c01022{height:57.375000pt;}
.h5_c01022{height:1122.546667pt;}
.h0_c01022{height:1122.560000pt;}
.h1_c01022{height:1122.666667pt;}
.w3_c01022{width:456.066667pt;}
.w2_c01022{width:793.740000pt;}
.w0_c01022{width:793.760000pt;}
.w1_c01022{width:794.000000pt;}
.x0_c01022{left:0.000000pt;}
.x4_c01022{left:113.472000pt;}
.xd_c01022{left:122.112000pt;}
.xe_c01022{left:124.352000pt;}
.xf_c01022{left:127.400000pt;}
.x1_c01022{left:151.066667pt;}
.xc_c01022{left:305.506667pt;}
.x5_c01022{left:309.486667pt;}
.x6_c01022{left:321.346667pt;}
.x7_c01022{left:364.846667pt;}
.x8_c01022{left:376.706667pt;}
.x9_c01022{left:621.553333pt;}
.xa_c01022{left:633.413333pt;}
.x3_c01022{left:658.213333pt;}
.xb_c01022{left:674.053333pt;}
.x2_c01022{left:680.453333pt;}
}





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

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01023;src:url('chunks/assets/font_816dd8eeb5fcede55fe307ae.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01023;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls0_c01023{letter-spacing:0.000000px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01023{word-spacing:0.000000px;}
._0_c01023{margin-left:-1.258891px;}
.fc0_c01023{color:rgb(0,0,0);}
.fs0_c01023{font-size:66.240000px;}
.fs1_c01023{font-size:72.000000px;}
.y0_c01023{bottom:0.000000px;}
.y4_c01023{bottom:57.636000px;}
.y3_c01023{bottom:77.796000px;}
.y5_c01023{bottom:118.476000px;}
.y2_c01023{bottom:1174.680000px;}
.y1_c01023{bottom:1194.660000px;}
.h2_c01023{height:48.062812px;}
.h3_c01023{height:50.229844px;}
.h4_c01023{height:64.546875px;}
.h0_c01023{height:1262.880000px;}
.h1_c01023{height:1263.000000px;}
.w0_c01023{width:892.980000px;}
.w1_c01023{width:893.250000px;}
.x0_c01023{left:0.000000px;}
.x1_c01023{left:127.656000px;}
.x2_c01023{left:662.505000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ws0_c01023{word-spacing:0.000000pt;}
._0_c01023{margin-left:-1.119014pt;}
.fs0_c01023{font-size:58.880000pt;}
.fs1_c01023{font-size:64.000000pt;}
.y0_c01023{bottom:0.000000pt;}
.y4_c01023{bottom:51.232000pt;}
.y3_c01023{bottom:69.152000pt;}
.y5_c01023{bottom:105.312000pt;}
.y2_c01023{bottom:1044.160000pt;}
.y1_c01023{bottom:1061.920000pt;}
.h2_c01023{height:42.722500pt;}
.h3_c01023{height:44.648750pt;}
.h4_c01023{height:57.375000pt;}
.h0_c01023{height:1122.560000pt;}
.h1_c01023{height:1122.666667pt;}
.w0_c01023{width:793.760000pt;}
.w1_c01023{width:794.000000pt;}
.x0_c01023{left:0.000000pt;}
.x1_c01023{left:113.472000pt;}
.x2_c01023{left:588.893333pt;}
}





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

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01024;src:url('chunks/assets/font_ff22742e2f4178209d3be020.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01024;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls0_c01024{letter-spacing:0.000000px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:0.000000px;}
._0_c01024{margin-left:-1.390841px;}
.fc0_c01024{color:rgb(0,0,0);}
.fs0_c01024{font-size:66.240000px;}
.fs1_c01024{font-size:72.000000px;}
.y0_c01024{bottom:0.000000px;}
.y4_c01024{bottom:57.636000px;}
.y3_c01024{bottom:77.796000px;}
.y5_c01024{bottom:116.136000px;}
.y2_c01024{bottom:1174.680000px;}
.y1_c01024{bottom:1194.660000px;}
.h2_c01024{height:48.062812px;}
.h3_c01024{height:50.229844px;}
.h4_c01024{height:64.546875px;}
.h0_c01024{height:1262.880000px;}
.h1_c01024{height:1263.000000px;}
.w0_c01024{width:892.980000px;}
.w1_c01024{width:893.250000px;}
.x0_c01024{left:0.000000px;}
.x4_c01024{left:127.656000px;}
.x1_c01024{left:169.950000px;}
.x5_c01024{left:657.285000px;}
.x3_c01024{left:740.490000px;}
.x2_c01024{left:765.510000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls0_c01024{letter-spacing:0.000000pt;}
.ws0_c01024{word-spacing:0.000000pt;}
._0_c01024{margin-left:-1.236303pt;}
.fs0_c01024{font-size:58.880000pt;}
.fs1_c01024{font-size:64.000000pt;}
.y0_c01024{bottom:0.000000pt;}
.y4_c01024{bottom:51.232000pt;}
.y3_c01024{bottom:69.152000pt;}
.y5_c01024{bottom:103.232000pt;}
.y2_c01024{bottom:1044.160000pt;}
.y1_c01024{bottom:1061.920000pt;}
.h2_c01024{height:42.722500pt;}
.h3_c01024{height:44.648750pt;}
.h4_c01024{height:57.375000pt;}
.h0_c01024{height:1122.560000pt;}
.h1_c01024{height:1122.666667pt;}
.w0_c01024{width:793.760000pt;}
.w1_c01024{width:794.000000pt;}
.x0_c01024{left:0.000000pt;}
.x4_c01024{left:113.472000pt;}
.x1_c01024{left:151.066667pt;}
.x5_c01024{left:584.253333pt;}
.x3_c01024{left:658.213333pt;}
.x2_c01024{left:680.453333pt;}
}





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

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_cbe423bc4ff9385ecced807a.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01025;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls0_c01025{letter-spacing:0.000000px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01025{word-spacing:-0.072000px;}
.ws1_c01025{word-spacing:0.288000px;}
.fc0_c01025{color:rgb(0,0,0);}
.fs0_c01025{font-size:66.240000px;}
.y0_c01025{bottom:0.000000px;}
.y2_c01025{bottom:77.796000px;}
.y1_c01025{bottom:1194.660000px;}
.h2_c01025{height:48.062812px;}
.h3_c01025{height:50.229844px;}
.h0_c01025{height:1262.880000px;}
.h1_c01025{height:1263.000000px;}
.w0_c01025{width:892.980000px;}
.w1_c01025{width:893.250000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:127.656000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls0_c01025{letter-spacing:0.000000pt;}
.ws0_c01025{word-spacing:-0.064000pt;}
.ws1_c01025{word-spacing:0.256000pt;}
.fs0_c01025{font-size:58.880000pt;}
.y0_c01025{bottom:0.000000pt;}
.y2_c01025{bottom:69.152000pt;}
.y1_c01025{bottom:1061.920000pt;}
.h2_c01025{height:42.722500pt;}
.h3_c01025{height:44.648750pt;}
.h0_c01025{height:1122.560000pt;}
.h1_c01025{height:1122.666667pt;}
.w0_c01025{width:793.760000pt;}
.w1_c01025{width:794.000000pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:113.472000pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01026;src:url('chunks/assets/font_cb506d20116f6b6591c4caec.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01026;src:url('chunks/assets/font_cc8a3ad6751a21ff56f0b70e.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01026;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;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:ff5_c01026;src:url('chunks/assets/font_95f057820d91e5106092ab55.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01026;src:url('chunks/assets/font_1e5146f24bb22379f091e009.woff2')format("woff");}.ff6_c01026{font-family:ff6_c01026;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01026;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff7_c01026{font-family:ff7_c01026;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:ff8_c01026;src:url('chunks/assets/font_46e0a4af013cf2ff936b2b0f.woff2')format("woff");}.ff8_c01026{font-family:ff8_c01026;line-height:1.106934;font-style:normal;font-weight: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_c01026;src:url('chunks/assets/font_8e38eb1de67975fa664edd93.woff2')format("woff");}.ff9_c01026{font-family:ff9_c01026;line-height:1.211914;font-style:normal;font-weight: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_c01026;src:url('chunks/assets/font_b91760c619346aa98ec5699a.woff2')format("woff");}.ffa_c01026{font-family:ffa_c01026;line-height:1.181152;font-style:normal;font-weight: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_c01026;src:url('chunks/assets/font_22d0fa0a1cd6ea2ad6c0383d.woff2')format("woff");}.ffb_c01026{font-family:ffb_c01026;line-height:1.575000;font-style:normal;font-weight: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_c01026;src:url('chunks/assets/font_cf05468c0bb2cbd53598a33c.woff2')format("woff");}.ffc_c01026{font-family:ffc_c01026;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls5_c01026{letter-spacing:-0.540600px;}
.ls6_c01026{letter-spacing:-0.360000px;}
.ls8_c01026{letter-spacing:-0.272400px;}
.ls7_c01026{letter-spacing:-0.181200px;}
.ls4_c01026{letter-spacing:0.000000px;}
.ls3_c01026{letter-spacing:0.152400px;}
.ls2_c01026{letter-spacing:0.174240px;}
.ls0_c01026{letter-spacing:20.784000px;}
.ls1_c01026{letter-spacing:20.808000px;}
.sc__c01026{text-shadow:none;}
.sc1_c01026{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc1_c01026{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01026{word-spacing:-21.187920px;}
.ws2_c01026{word-spacing:-20.554560px;}
.ws0_c01026{word-spacing:-18.000000px;}
.ws1_c01026{word-spacing:-17.640000px;}
.ws4_c01026{word-spacing:0.000000px;}
._13_c01026{margin-left:-3.758351px;}
._2_c01026{margin-left:-2.695848px;}
._0_c01026{margin-left:-1.390841px;}
._1_c01026{width:1.186083px;}
._d_c01026{width:2.425941px;}
._4_c01026{width:3.744000px;}
._3_c01026{width:4.824000px;}
._6_c01026{width:9.360000px;}
._8_c01026{width:11.304000px;}
._7_c01026{width:12.648024px;}
._11_c01026{width:13.669893px;}
._e_c01026{width:22.032000px;}
._a_c01026{width:26.374841px;}
._9_c01026{width:27.576000px;}
._f_c01026{width:29.160000px;}
._5_c01026{width:39.024000px;}
._10_c01026{width:41.256000px;}
._12_c01026{width:44.042881px;}
._c_c01026{width:47.088000px;}
._b_c01026{width:48.384000px;}
.fc2_c01026{color:transparent;}
.fc1_c01026{color:rgb(238,119,0);}
.fc0_c01026{color:rgb(0,0,0);}
.fs5_c01026{font-size:38.880000px;}
.fs4_c01026{font-size:48.240000px;}
.fs6_c01026{font-size:59.760000px;}
.fs0_c01026{font-size:66.240000px;}
.fs2_c01026{font-size:72.000000px;}
.fs3_c01026{font-size:84.240000px;}
.fs1_c01026{font-size:95.760000px;}
.y0_c01026{bottom:0.000000px;}
.y6_c01026{bottom:5.040000px;}
.y11_c01026{bottom:5.220000px;}
.y13_c01026{bottom:5.235000px;}
.ye_c01026{bottom:8.820000px;}
.y31_c01026{bottom:11.865000px;}
.yd_c01026{bottom:14.760000px;}
.ya_c01026{bottom:19.095000px;}
.y30_c01026{bottom:29.370000px;}
.y5_c01026{bottom:31.140000px;}
.y10_c01026{bottom:31.320000px;}
.yc_c01026{bottom:40.860000px;}
.y8_c01026{bottom:45.000000px;}
.y2f_c01026{bottom:46.650000px;}
.y2_c01026{bottom:77.796000px;}
.y2d_c01026{bottom:109.296000px;}
.y2c_c01026{bottom:128.376000px;}
.y2b_c01026{bottom:133.596000px;}
.y2e_c01026{bottom:257.625000px;}
.y2a_c01026{bottom:275.430000px;}
.y29_c01026{bottom:299.235000px;}
.y28_c01026{bottom:322.995000px;}
.y27_c01026{bottom:346.935000px;}
.y26_c01026{bottom:370.695000px;}
.y25_c01026{bottom:394.455000px;}
.y24_c01026{bottom:418.215000px;}
.y23_c01026{bottom:442.155000px;}
.y21_c01026{bottom:465.915000px;}
.y22_c01026{bottom:471.855000px;}
.y20_c01026{bottom:489.675000px;}
.y1f_c01026{bottom:513.435000px;}
.y1e_c01026{bottom:537.375000px;}
.y1d_c01026{bottom:561.135000px;}
.y1c_c01026{bottom:584.925000px;}
.y1b_c01026{bottom:608.685000px;}
.y1a_c01026{bottom:632.445000px;}
.y19_c01026{bottom:656.385000px;}
.y18_c01026{bottom:680.145000px;}
.y17_c01026{bottom:703.905000px;}
.y16_c01026{bottom:727.665000px;}
.y15_c01026{bottom:751.605000px;}
.y14_c01026{bottom:796.785000px;}
.y12_c01026{bottom:858.915000px;}
.yf_c01026{bottom:858.930000px;}
.yb_c01026{bottom:913.470000px;}
.y9_c01026{bottom:977.535000px;}
.y7_c01026{bottom:977.550000px;}
.y4_c01026{bottom:1045.770000px;}
.y3_c01026{bottom:1131.120000px;}
.y1_c01026{bottom:1194.660000px;}
.h13_c01026{height:29.482734px;}
.h12_c01026{height:43.246406px;}
.h2_c01026{height:48.062812px;}
.h3_c01026{height:50.229844px;}
.h7_c01026{height:52.382812px;}
.h17_c01026{height:53.428008px;}
.h5_c01026{height:54.345000px;}
.hc_c01026{height:54.525000px;}
.hd_c01026{height:54.531000px;}
.he_c01026{height:54.540000px;}
.h14_c01026{height:59.789180px;}
.h16_c01026{height:60.322500px;}
.h6_c01026{height:63.550195px;}
.h15_c01026{height:63.763920px;}
.hb_c01026{height:64.065000px;}
.h10_c01026{height:64.546875px;}
.h8_c01026{height:68.205000px;}
.h9_c01026{height:68.211000px;}
.ha_c01026{height:68.220000px;}
.h4_c01026{height:69.575625px;}
.hf_c01026{height:87.859687px;}
.h11_c01026{height:1262.865000px;}
.h0_c01026{height:1262.880000px;}
.h1_c01026{height:1263.000000px;}
.w3_c01026{width:230.415000px;}
.w4_c01026{width:230.430000px;}
.w6_c01026{width:294.540000px;}
.w2_c01026{width:403.626000px;}
.w5_c01026{width:892.957500px;}
.w0_c01026{width:892.980000px;}
.w1_c01026{width:893.250000px;}
.x0_c01026{left:0.000000px;}
.x4_c01026{left:10.251000px;}
.x5_c01026{left:31.485000px;}
.x3_c01026{left:127.656000px;}
.x9_c01026{left:142.236000px;}
.x1_c01026{left:169.950000px;}
.x7_c01026{left:235.987500px;}
.x8_c01026{left:255.990000px;}
.xa_c01026{left:470.235000px;}
.x6_c01026{left:531.300000px;}
.x2_c01026{left:740.490000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls5_c01026{letter-spacing:-0.480533pt;}
.ls6_c01026{letter-spacing:-0.320000pt;}
.ls8_c01026{letter-spacing:-0.242133pt;}
.ls7_c01026{letter-spacing:-0.161067pt;}
.ls4_c01026{letter-spacing:0.000000pt;}
.ls3_c01026{letter-spacing:0.135467pt;}
.ls2_c01026{letter-spacing:0.154880pt;}
.ls0_c01026{letter-spacing:18.474667pt;}
.ls1_c01026{letter-spacing:18.496000pt;}
.ws3_c01026{word-spacing:-18.833707pt;}
.ws2_c01026{word-spacing:-18.270720pt;}
.ws0_c01026{word-spacing:-16.000000pt;}
.ws1_c01026{word-spacing:-15.680000pt;}
.ws4_c01026{word-spacing:0.000000pt;}
._13_c01026{margin-left:-3.340756pt;}
._2_c01026{margin-left:-2.396310pt;}
._0_c01026{margin-left:-1.236303pt;}
._1_c01026{width:1.054296pt;}
._d_c01026{width:2.156392pt;}
._4_c01026{width:3.328000pt;}
._3_c01026{width:4.288000pt;}
._6_c01026{width:8.320000pt;}
._8_c01026{width:10.048000pt;}
._7_c01026{width:11.242688pt;}
._11_c01026{width:12.151016pt;}
._e_c01026{width:19.584000pt;}
._a_c01026{width:23.444303pt;}
._9_c01026{width:24.512000pt;}
._f_c01026{width:25.920000pt;}
._5_c01026{width:34.688000pt;}
._10_c01026{width:36.672000pt;}
._12_c01026{width:39.149228pt;}
._c_c01026{width:41.856000pt;}
._b_c01026{width:43.008000pt;}
.fs5_c01026{font-size:34.560000pt;}
.fs4_c01026{font-size:42.880000pt;}
.fs6_c01026{font-size:53.120000pt;}
.fs0_c01026{font-size:58.880000pt;}
.fs2_c01026{font-size:64.000000pt;}
.fs3_c01026{font-size:74.880000pt;}
.fs1_c01026{font-size:85.120000pt;}
.y0_c01026{bottom:0.000000pt;}
.y6_c01026{bottom:4.480000pt;}
.y11_c01026{bottom:4.640000pt;}
.y13_c01026{bottom:4.653333pt;}
.ye_c01026{bottom:7.840000pt;}
.y31_c01026{bottom:10.546667pt;}
.yd_c01026{bottom:13.120000pt;}
.ya_c01026{bottom:16.973333pt;}
.y30_c01026{bottom:26.106667pt;}
.y5_c01026{bottom:27.680000pt;}
.y10_c01026{bottom:27.840000pt;}
.yc_c01026{bottom:36.320000pt;}
.y8_c01026{bottom:40.000000pt;}
.y2f_c01026{bottom:41.466667pt;}
.y2_c01026{bottom:69.152000pt;}
.y2d_c01026{bottom:97.152000pt;}
.y2c_c01026{bottom:114.112000pt;}
.y2b_c01026{bottom:118.752000pt;}
.y2e_c01026{bottom:229.000000pt;}
.y2a_c01026{bottom:244.826667pt;}
.y29_c01026{bottom:265.986667pt;}
.y28_c01026{bottom:287.106667pt;}
.y27_c01026{bottom:308.386667pt;}
.y26_c01026{bottom:329.506667pt;}
.y25_c01026{bottom:350.626667pt;}
.y24_c01026{bottom:371.746667pt;}
.y23_c01026{bottom:393.026667pt;}
.y21_c01026{bottom:414.146667pt;}
.y22_c01026{bottom:419.426667pt;}
.y20_c01026{bottom:435.266667pt;}
.y1f_c01026{bottom:456.386667pt;}
.y1e_c01026{bottom:477.666667pt;}
.y1d_c01026{bottom:498.786667pt;}
.y1c_c01026{bottom:519.933333pt;}
.y1b_c01026{bottom:541.053333pt;}
.y1a_c01026{bottom:562.173333pt;}
.y19_c01026{bottom:583.453333pt;}
.y18_c01026{bottom:604.573333pt;}
.y17_c01026{bottom:625.693333pt;}
.y16_c01026{bottom:646.813333pt;}
.y15_c01026{bottom:668.093333pt;}
.y14_c01026{bottom:708.253333pt;}
.y12_c01026{bottom:763.480000pt;}
.yf_c01026{bottom:763.493333pt;}
.yb_c01026{bottom:811.973333pt;}
.y9_c01026{bottom:868.920000pt;}
.y7_c01026{bottom:868.933333pt;}
.y4_c01026{bottom:929.573333pt;}
.y3_c01026{bottom:1005.440000pt;}
.y1_c01026{bottom:1061.920000pt;}
.h13_c01026{height:26.206875pt;}
.h12_c01026{height:38.441250pt;}
.h2_c01026{height:42.722500pt;}
.h3_c01026{height:44.648750pt;}
.h7_c01026{height:46.562500pt;}
.h17_c01026{height:47.491563pt;}
.h5_c01026{height:48.306667pt;}
.hc_c01026{height:48.466667pt;}
.hd_c01026{height:48.472000pt;}
.he_c01026{height:48.480000pt;}
.h14_c01026{height:53.145938pt;}
.h16_c01026{height:53.620000pt;}
.h6_c01026{height:56.489062pt;}
.h15_c01026{height:56.679040pt;}
.hb_c01026{height:56.946667pt;}
.h10_c01026{height:57.375000pt;}
.h8_c01026{height:60.626667pt;}
.h9_c01026{height:60.632000pt;}
.ha_c01026{height:60.640000pt;}
.h4_c01026{height:61.845000pt;}
.hf_c01026{height:78.097500pt;}
.h11_c01026{height:1122.546667pt;}
.h0_c01026{height:1122.560000pt;}
.h1_c01026{height:1122.666667pt;}
.w3_c01026{width:204.813333pt;}
.w4_c01026{width:204.826667pt;}
.w6_c01026{width:261.813333pt;}
.w2_c01026{width:358.778667pt;}
.w5_c01026{width:793.740000pt;}
.w0_c01026{width:793.760000pt;}
.w1_c01026{width:794.000000pt;}
.x0_c01026{left:0.000000pt;}
.x4_c01026{left:9.112000pt;}
.x5_c01026{left:27.986667pt;}
.x3_c01026{left:113.472000pt;}
.x9_c01026{left:126.432000pt;}
.x1_c01026{left:151.066667pt;}
.x7_c01026{left:209.766667pt;}
.x8_c01026{left:227.546667pt;}
.xa_c01026{left:417.986667pt;}
.x6_c01026{left:472.266667pt;}
.x2_c01026{left:658.213333pt;}
}





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

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01027;src:url('chunks/assets/font_93998aa4970c26ed59a87fc7.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01027;src:url('chunks/assets/font_85afc5dfdda5fdcae01ae001.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01027;src:url('chunks/assets/font_52042064bacda62d7dbb4a8e.woff2')format("woff");}.ff4_c01027{font-family:ff4_c01027;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01027;src:url('chunks/assets/font_6fec89fc9b2fd6cc13522925.woff2')format("woff");}.ff5_c01027{font-family:ff5_c01027;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01027;src:url('chunks/assets/font_72b3f778d2a7332e85d0aa81.woff2')format("woff");}.ff6_c01027{font-family:ff6_c01027;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls2_c01027{letter-spacing:-1.440000px;}
.ls6_c01027{letter-spacing:-0.936000px;}
.ls5_c01027{letter-spacing:-0.576000px;}
.ls9_c01027{letter-spacing:-0.272400px;}
.ls7_c01027{letter-spacing:-0.181200px;}
.ls1_c01027{letter-spacing:0.000000px;}
.ls3_c01027{letter-spacing:0.144000px;}
.ls8_c01027{letter-spacing:0.150000px;}
.ls0_c01027{letter-spacing:0.174240px;}
.ls4_c01027{letter-spacing:0.288000px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01027{word-spacing:0.000000px;}
._8_c01027{margin-left:-4.597085px;}
._7_c01027{margin-left:-3.384000px;}
._15_c01027{margin-left:-2.366194px;}
._0_c01027{margin-left:-1.258891px;}
._1_c01027{width:1.224000px;}
._2_c01027{width:2.256000px;}
._5_c01027{width:3.600000px;}
._4_c01027{width:5.074891px;}
._3_c01027{width:6.192000px;}
._c_c01027{width:7.704000px;}
._12_c01027{width:8.856000px;}
._18_c01027{width:10.872000px;}
._a_c01027{width:12.528000px;}
._b_c01027{width:13.536000px;}
._e_c01027{width:16.128000px;}
._d_c01027{width:17.424000px;}
._9_c01027{width:21.096000px;}
._6_c01027{width:24.264000px;}
._14_c01027{width:29.016000px;}
._13_c01027{width:30.024000px;}
._17_c01027{width:32.112000px;}
._16_c01027{width:33.264000px;}
._11_c01027{width:37.008000px;}
._10_c01027{width:57.888000px;}
._f_c01027{width:59.544000px;}
.fc0_c01027{color:rgb(0,0,0);}
.fs3_c01027{font-size:38.880000px;}
.fs2_c01027{font-size:48.240000px;}
.fs4_c01027{font-size:59.760000px;}
.fs0_c01027{font-size:66.240000px;}
.fs1_c01027{font-size:72.000000px;}
.y0_c01027{bottom:0.000000px;}
.y30_c01027{bottom:20.160000px;}
.y3_c01027{bottom:57.636000px;}
.y2_c01027{bottom:77.796000px;}
.y2e_c01027{bottom:110.196000px;}
.y2d_c01027{bottom:115.416000px;}
.y2c_c01027{bottom:129.996000px;}
.y2b_c01027{bottom:205.230000px;}
.y2a_c01027{bottom:228.990000px;}
.y29_c01027{bottom:252.750000px;}
.y28_c01027{bottom:276.690000px;}
.y27_c01027{bottom:300.495000px;}
.y26_c01027{bottom:339.195000px;}
.y24_c01027{bottom:363.135000px;}
.y25_c01027{bottom:369.075000px;}
.y23_c01027{bottom:386.895000px;}
.y22_c01027{bottom:410.655000px;}
.y21_c01027{bottom:434.415000px;}
.y20_c01027{bottom:458.355000px;}
.y1f_c01027{bottom:482.115000px;}
.y1e_c01027{bottom:505.875000px;}
.y1d_c01027{bottom:529.635000px;}
.y1c_c01027{bottom:553.575000px;}
.y1b_c01027{bottom:577.365000px;}
.y1a_c01027{bottom:601.125000px;}
.y19_c01027{bottom:624.885000px;}
.y18_c01027{bottom:648.645000px;}
.y17_c01027{bottom:687.525000px;}
.y2f_c01027{bottom:695.265000px;}
.y16_c01027{bottom:711.285000px;}
.y15_c01027{bottom:735.225000px;}
.y14_c01027{bottom:758.985000px;}
.y13_c01027{bottom:782.745000px;}
.y12_c01027{bottom:806.505000px;}
.y11_c01027{bottom:830.265000px;}
.y10_c01027{bottom:854.250000px;}
.yf_c01027{bottom:878.010000px;}
.ye_c01027{bottom:901.770000px;}
.yd_c01027{bottom:925.530000px;}
.yc_c01027{bottom:949.470000px;}
.yb_c01027{bottom:973.230000px;}
.ya_c01027{bottom:996.990000px;}
.y9_c01027{bottom:1020.750000px;}
.y8_c01027{bottom:1044.690000px;}
.y7_c01027{bottom:1068.450000px;}
.y6_c01027{bottom:1092.210000px;}
.y5_c01027{bottom:1115.970000px;}
.y4_c01027{bottom:1139.940000px;}
.y1_c01027{bottom:1194.660000px;}
.h7_c01027{height:29.482734px;}
.h9_c01027{height:33.840000px;}
.h6_c01027{height:43.246406px;}
.h2_c01027{height:48.062812px;}
.h3_c01027{height:50.229844px;}
.ha_c01027{height:53.428008px;}
.h8_c01027{height:63.763920px;}
.h4_c01027{height:64.546875px;}
.h5_c01027{height:1262.865000px;}
.h0_c01027{height:1262.880000px;}
.h1_c01027{height:1263.000000px;}
.w3_c01027{width:273.075000px;}
.w2_c01027{width:892.957500px;}
.w0_c01027{width:892.980000px;}
.w1_c01027{width:893.250000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:127.656000px;}
.x8_c01027{left:128.925000px;}
.x7_c01027{left:142.236000px;}
.x6_c01027{left:343.695000px;}
.x4_c01027{left:397.132500px;}
.x2_c01027{left:411.015000px;}
.x3_c01027{left:412.455000px;}
.x5_c01027{left:417.135000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls2_c01027{letter-spacing:-1.280000pt;}
.ls6_c01027{letter-spacing:-0.832000pt;}
.ls5_c01027{letter-spacing:-0.512000pt;}
.ls9_c01027{letter-spacing:-0.242133pt;}
.ls7_c01027{letter-spacing:-0.161067pt;}
.ls1_c01027{letter-spacing:0.000000pt;}
.ls3_c01027{letter-spacing:0.128000pt;}
.ls8_c01027{letter-spacing:0.133333pt;}
.ls0_c01027{letter-spacing:0.154880pt;}
.ls4_c01027{letter-spacing:0.256000pt;}
.ws0_c01027{word-spacing:0.000000pt;}
._8_c01027{margin-left:-4.086298pt;}
._7_c01027{margin-left:-3.008000pt;}
._15_c01027{margin-left:-2.103283pt;}
._0_c01027{margin-left:-1.119014pt;}
._1_c01027{width:1.088000pt;}
._2_c01027{width:2.005333pt;}
._5_c01027{width:3.200000pt;}
._4_c01027{width:4.511014pt;}
._3_c01027{width:5.504000pt;}
._c_c01027{width:6.848000pt;}
._12_c01027{width:7.872000pt;}
._18_c01027{width:9.664000pt;}
._a_c01027{width:11.136000pt;}
._b_c01027{width:12.032000pt;}
._e_c01027{width:14.336000pt;}
._d_c01027{width:15.488000pt;}
._9_c01027{width:18.752000pt;}
._6_c01027{width:21.568000pt;}
._14_c01027{width:25.792000pt;}
._13_c01027{width:26.688000pt;}
._17_c01027{width:28.544000pt;}
._16_c01027{width:29.568000pt;}
._11_c01027{width:32.896000pt;}
._10_c01027{width:51.456000pt;}
._f_c01027{width:52.928000pt;}
.fs3_c01027{font-size:34.560000pt;}
.fs2_c01027{font-size:42.880000pt;}
.fs4_c01027{font-size:53.120000pt;}
.fs0_c01027{font-size:58.880000pt;}
.fs1_c01027{font-size:64.000000pt;}
.y0_c01027{bottom:0.000000pt;}
.y30_c01027{bottom:17.920000pt;}
.y3_c01027{bottom:51.232000pt;}
.y2_c01027{bottom:69.152000pt;}
.y2e_c01027{bottom:97.952000pt;}
.y2d_c01027{bottom:102.592000pt;}
.y2c_c01027{bottom:115.552000pt;}
.y2b_c01027{bottom:182.426667pt;}
.y2a_c01027{bottom:203.546667pt;}
.y29_c01027{bottom:224.666667pt;}
.y28_c01027{bottom:245.946667pt;}
.y27_c01027{bottom:267.106667pt;}
.y26_c01027{bottom:301.506667pt;}
.y24_c01027{bottom:322.786667pt;}
.y25_c01027{bottom:328.066667pt;}
.y23_c01027{bottom:343.906667pt;}
.y22_c01027{bottom:365.026667pt;}
.y21_c01027{bottom:386.146667pt;}
.y20_c01027{bottom:407.426667pt;}
.y1f_c01027{bottom:428.546667pt;}
.y1e_c01027{bottom:449.666667pt;}
.y1d_c01027{bottom:470.786667pt;}
.y1c_c01027{bottom:492.066667pt;}
.y1b_c01027{bottom:513.213333pt;}
.y1a_c01027{bottom:534.333333pt;}
.y19_c01027{bottom:555.453333pt;}
.y18_c01027{bottom:576.573333pt;}
.y17_c01027{bottom:611.133333pt;}
.y2f_c01027{bottom:618.013333pt;}
.y16_c01027{bottom:632.253333pt;}
.y15_c01027{bottom:653.533333pt;}
.y14_c01027{bottom:674.653333pt;}
.y13_c01027{bottom:695.773333pt;}
.y12_c01027{bottom:716.893333pt;}
.y11_c01027{bottom:738.013333pt;}
.y10_c01027{bottom:759.333333pt;}
.yf_c01027{bottom:780.453333pt;}
.ye_c01027{bottom:801.573333pt;}
.yd_c01027{bottom:822.693333pt;}
.yc_c01027{bottom:843.973333pt;}
.yb_c01027{bottom:865.093333pt;}
.ya_c01027{bottom:886.213333pt;}
.y9_c01027{bottom:907.333333pt;}
.y8_c01027{bottom:928.613333pt;}
.y7_c01027{bottom:949.733333pt;}
.y6_c01027{bottom:970.853333pt;}
.y5_c01027{bottom:991.973333pt;}
.y4_c01027{bottom:1013.280000pt;}
.y1_c01027{bottom:1061.920000pt;}
.h7_c01027{height:26.206875pt;}
.h9_c01027{height:30.080000pt;}
.h6_c01027{height:38.441250pt;}
.h2_c01027{height:42.722500pt;}
.h3_c01027{height:44.648750pt;}
.ha_c01027{height:47.491563pt;}
.h8_c01027{height:56.679040pt;}
.h4_c01027{height:57.375000pt;}
.h5_c01027{height:1122.546667pt;}
.h0_c01027{height:1122.560000pt;}
.h1_c01027{height:1122.666667pt;}
.w3_c01027{width:242.733333pt;}
.w2_c01027{width:793.740000pt;}
.w0_c01027{width:793.760000pt;}
.w1_c01027{width:794.000000pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:113.472000pt;}
.x8_c01027{left:114.600000pt;}
.x7_c01027{left:126.432000pt;}
.x6_c01027{left:305.506667pt;}
.x4_c01027{left:353.006667pt;}
.x2_c01027{left:365.346667pt;}
.x3_c01027{left:366.626667pt;}
.x5_c01027{left:370.786667pt;}
}





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

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01028;src:url('chunks/assets/font_ef5b3ac1c976fb5a331e98f9.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01028;src:url('chunks/assets/font_3772579e3b30e14f98706353.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01028;src:url('chunks/assets/font_878742323aa50cbb59663656.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls2_c01028{letter-spacing:-0.936000px;}
.ls1_c01028{letter-spacing:-0.720000px;}
.ls6_c01028{letter-spacing:-0.432000px;}
.ls5_c01028{letter-spacing:-0.144000px;}
.ls7_c01028{letter-spacing:-0.053400px;}
.ls0_c01028{letter-spacing:0.000000px;}
.ls3_c01028{letter-spacing:0.144000px;}
.ls4_c01028{letter-spacing:0.288000px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01028{word-spacing:-19.872000px;}
.ws2_c01028{word-spacing:-19.584000px;}
.ws0_c01028{word-spacing:-19.296000px;}
.ws3_c01028{word-spacing:0.000000px;}
._a_c01028{margin-left:-3.573683px;}
._6_c01028{margin-left:-2.497159px;}
._0_c01028{margin-left:-1.390841px;}
._1_c01028{width:1.102841px;}
._2_c01028{width:2.185183px;}
._7_c01028{width:3.528000px;}
._3_c01028{width:4.680000px;}
._4_c01028{width:6.048000px;}
._c_c01028{width:7.189183px;}
._8_c01028{width:8.568000px;}
._5_c01028{width:10.728000px;}
._9_c01028{width:12.168000px;}
._b_c01028{width:18.792000px;}
._e_c01028{width:33.048000px;}
._d_c01028{width:34.056000px;}
.fc0_c01028{color:rgb(0,0,0);}
.fs2_c01028{font-size:59.760000px;}
.fs0_c01028{font-size:66.240000px;}
.fs1_c01028{font-size:72.000000px;}
.y0_c01028{bottom:0.000000px;}
.y3_c01028{bottom:57.636000px;}
.y2_c01028{bottom:77.796000px;}
.y1e_c01028{bottom:199.110000px;}
.y1d_c01028{bottom:231.150000px;}
.y1c_c01028{bottom:553.575000px;}
.y1b_c01028{bottom:577.365000px;}
.y1a_c01028{bottom:601.125000px;}
.y19_c01028{bottom:624.885000px;}
.y18_c01028{bottom:648.645000px;}
.y17_c01028{bottom:672.585000px;}
.y16_c01028{bottom:696.345000px;}
.y15_c01028{bottom:720.105000px;}
.y14_c01028{bottom:743.865000px;}
.y13_c01028{bottom:767.805000px;}
.y12_c01028{bottom:791.565000px;}
.y11_c01028{bottom:815.325000px;}
.y10_c01028{bottom:839.085000px;}
.yf_c01028{bottom:863.070000px;}
.ye_c01028{bottom:886.830000px;}
.yd_c01028{bottom:910.590000px;}
.yc_c01028{bottom:934.350000px;}
.yb_c01028{bottom:958.290000px;}
.ya_c01028{bottom:982.050000px;}
.y9_c01028{bottom:1005.810000px;}
.y8_c01028{bottom:1029.570000px;}
.y7_c01028{bottom:1053.510000px;}
.y6_c01028{bottom:1077.270000px;}
.y5_c01028{bottom:1115.970000px;}
.y4_c01028{bottom:1139.940000px;}
.y1_c01028{bottom:1194.660000px;}
.h2_c01028{height:48.062812px;}
.h3_c01028{height:50.229844px;}
.h5_c01028{height:53.428008px;}
.h4_c01028{height:64.546875px;}
.h0_c01028{height:1262.880000px;}
.h1_c01028{height:1263.000000px;}
.w0_c01028{width:892.980000px;}
.w1_c01028{width:893.250000px;}
.x0_c01028{left:0.000000px;}
.x3_c01028{left:127.656000px;}
.x1_c01028{left:169.950000px;}
.x4_c01028{left:701.970000px;}
.x2_c01028{left:740.490000px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls2_c01028{letter-spacing:-0.832000pt;}
.ls1_c01028{letter-spacing:-0.640000pt;}
.ls6_c01028{letter-spacing:-0.384000pt;}
.ls5_c01028{letter-spacing:-0.128000pt;}
.ls7_c01028{letter-spacing:-0.047467pt;}
.ls0_c01028{letter-spacing:0.000000pt;}
.ls3_c01028{letter-spacing:0.128000pt;}
.ls4_c01028{letter-spacing:0.256000pt;}
.ws1_c01028{word-spacing:-17.664000pt;}
.ws2_c01028{word-spacing:-17.408000pt;}
.ws0_c01028{word-spacing:-17.152000pt;}
.ws3_c01028{word-spacing:0.000000pt;}
._a_c01028{margin-left:-3.176607pt;}
._6_c01028{margin-left:-2.219697pt;}
._0_c01028{margin-left:-1.236303pt;}
._1_c01028{width:0.980303pt;}
._2_c01028{width:1.942385pt;}
._7_c01028{width:3.136000pt;}
._3_c01028{width:4.160000pt;}
._4_c01028{width:5.376000pt;}
._c_c01028{width:6.390385pt;}
._8_c01028{width:7.616000pt;}
._5_c01028{width:9.536000pt;}
._9_c01028{width:10.816000pt;}
._b_c01028{width:16.704000pt;}
._e_c01028{width:29.376000pt;}
._d_c01028{width:30.272000pt;}
.fs2_c01028{font-size:53.120000pt;}
.fs0_c01028{font-size:58.880000pt;}
.fs1_c01028{font-size:64.000000pt;}
.y0_c01028{bottom:0.000000pt;}
.y3_c01028{bottom:51.232000pt;}
.y2_c01028{bottom:69.152000pt;}
.y1e_c01028{bottom:176.986667pt;}
.y1d_c01028{bottom:205.466667pt;}
.y1c_c01028{bottom:492.066667pt;}
.y1b_c01028{bottom:513.213333pt;}
.y1a_c01028{bottom:534.333333pt;}
.y19_c01028{bottom:555.453333pt;}
.y18_c01028{bottom:576.573333pt;}
.y17_c01028{bottom:597.853333pt;}
.y16_c01028{bottom:618.973333pt;}
.y15_c01028{bottom:640.093333pt;}
.y14_c01028{bottom:661.213333pt;}
.y13_c01028{bottom:682.493333pt;}
.y12_c01028{bottom:703.613333pt;}
.y11_c01028{bottom:724.733333pt;}
.y10_c01028{bottom:745.853333pt;}
.yf_c01028{bottom:767.173333pt;}
.ye_c01028{bottom:788.293333pt;}
.yd_c01028{bottom:809.413333pt;}
.yc_c01028{bottom:830.533333pt;}
.yb_c01028{bottom:851.813333pt;}
.ya_c01028{bottom:872.933333pt;}
.y9_c01028{bottom:894.053333pt;}
.y8_c01028{bottom:915.173333pt;}
.y7_c01028{bottom:936.453333pt;}
.y6_c01028{bottom:957.573333pt;}
.y5_c01028{bottom:991.973333pt;}
.y4_c01028{bottom:1013.280000pt;}
.y1_c01028{bottom:1061.920000pt;}
.h2_c01028{height:42.722500pt;}
.h3_c01028{height:44.648750pt;}
.h5_c01028{height:47.491563pt;}
.h4_c01028{height:57.375000pt;}
.h0_c01028{height:1122.560000pt;}
.h1_c01028{height:1122.666667pt;}
.w0_c01028{width:793.760000pt;}
.w1_c01028{width:794.000000pt;}
.x0_c01028{left:0.000000pt;}
.x3_c01028{left:113.472000pt;}
.x1_c01028{left:151.066667pt;}
.x4_c01028{left:623.973333pt;}
.x2_c01028{left:658.213333pt;}
}





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

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01029;src:url('chunks/assets/font_ef5b3ac1c976fb5a331e98f9.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01029;src:url('chunks/assets/font_f4a36e4a3179cd88aec083b8.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01029;src:url('chunks/assets/font_6d92f111f0170757f3aefc63.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls3_c01029{letter-spacing:-0.432000px;}
.ls2_c01029{letter-spacing:-0.216000px;}
.ls0_c01029{letter-spacing:0.000000px;}
.ls4_c01029{letter-spacing:0.144000px;}
.ls1_c01029{letter-spacing:0.288000px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01029{word-spacing:-20.304000px;}
.ws1_c01029{word-spacing:-19.800000px;}
.ws2_c01029{word-spacing:0.000000px;}
._7_c01029{margin-left:-5.616000px;}
._6_c01029{margin-left:-4.392000px;}
._8_c01029{margin-left:-2.664000px;}
._0_c01029{margin-left:-1.258891px;}
._5_c01029{width:1.571976px;}
._10_c01029{width:2.577902px;}
._a_c01029{width:3.720024px;}
._b_c01029{width:5.256000px;}
._f_c01029{width:10.080000px;}
._4_c01029{width:12.024000px;}
._3_c01029{width:13.176000px;}
._11_c01029{width:14.256000px;}
._12_c01029{width:15.336000px;}
._2_c01029{width:17.280000px;}
._9_c01029{width:18.586915px;}
._1_c01029{width:21.384000px;}
._d_c01029{width:26.136000px;}
._c_c01029{width:34.848000px;}
._e_c01029{width:37.728000px;}
.fc0_c01029{color:rgb(0,0,0);}
.fs2_c01029{font-size:54.000000px;}
.fs0_c01029{font-size:66.240000px;}
.fs1_c01029{font-size:72.000000px;}
.y0_c01029{bottom:0.000000px;}
.y2f_c01029{bottom:7.740000px;}
.y3_c01029{bottom:57.636000px;}
.y2_c01029{bottom:77.796000px;}
.y2d_c01029{bottom:133.776000px;}
.y2c_c01029{bottom:157.530000px;}
.y2b_c01029{bottom:181.470000px;}
.y2a_c01029{bottom:205.230000px;}
.y29_c01029{bottom:228.990000px;}
.y28_c01029{bottom:252.750000px;}
.y27_c01029{bottom:276.690000px;}
.y26_c01029{bottom:315.435000px;}
.y25_c01029{bottom:339.195000px;}
.y24_c01029{bottom:363.315000px;}
.y23_c01029{bottom:386.895000px;}
.y22_c01029{bottom:410.655000px;}
.y21_c01029{bottom:434.415000px;}
.y20_c01029{bottom:458.355000px;}
.y1f_c01029{bottom:482.115000px;}
.y1e_c01029{bottom:505.875000px;}
.y1d_c01029{bottom:529.635000px;}
.y1c_c01029{bottom:553.575000px;}
.y1b_c01029{bottom:592.305000px;}
.y1a_c01029{bottom:616.065000px;}
.y19_c01029{bottom:640.005000px;}
.y18_c01029{bottom:663.765000px;}
.y17_c01029{bottom:687.525000px;}
.y16_c01029{bottom:711.285000px;}
.y2e_c01029{bottom:731.985000px;}
.y15_c01029{bottom:735.225000px;}
.y14_c01029{bottom:758.985000px;}
.y13_c01029{bottom:782.745000px;}
.y12_c01029{bottom:806.505000px;}
.y11_c01029{bottom:830.265000px;}
.y10_c01029{bottom:854.250000px;}
.yf_c01029{bottom:878.010000px;}
.ye_c01029{bottom:901.770000px;}
.yd_c01029{bottom:925.530000px;}
.yc_c01029{bottom:949.470000px;}
.yb_c01029{bottom:973.230000px;}
.ya_c01029{bottom:996.990000px;}
.y9_c01029{bottom:1020.750000px;}
.y8_c01029{bottom:1044.690000px;}
.y7_c01029{bottom:1068.450000px;}
.y6_c01029{bottom:1092.210000px;}
.y5_c01029{bottom:1115.970000px;}
.y4_c01029{bottom:1139.940000px;}
.y1_c01029{bottom:1194.660000px;}
.h5_c01029{height:20.160000px;}
.h2_c01029{height:48.062812px;}
.h3_c01029{height:50.229844px;}
.h6_c01029{height:64.371094px;}
.h4_c01029{height:64.546875px;}
.h0_c01029{height:1262.880000px;}
.h1_c01029{height:1263.000000px;}
.w2_c01029{width:221.610000px;}
.w0_c01029{width:892.980000px;}
.w1_c01029{width:893.250000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:127.656000px;}
.x2_c01029{left:579.540000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls3_c01029{letter-spacing:-0.384000pt;}
.ls2_c01029{letter-spacing:-0.192000pt;}
.ls0_c01029{letter-spacing:0.000000pt;}
.ls4_c01029{letter-spacing:0.128000pt;}
.ls1_c01029{letter-spacing:0.256000pt;}
.ws0_c01029{word-spacing:-18.048000pt;}
.ws1_c01029{word-spacing:-17.600000pt;}
.ws2_c01029{word-spacing:0.000000pt;}
._7_c01029{margin-left:-4.992000pt;}
._6_c01029{margin-left:-3.904000pt;}
._8_c01029{margin-left:-2.368000pt;}
._0_c01029{margin-left:-1.119014pt;}
._5_c01029{width:1.397312pt;}
._10_c01029{width:2.291469pt;}
._a_c01029{width:3.306688pt;}
._b_c01029{width:4.672000pt;}
._f_c01029{width:8.960000pt;}
._4_c01029{width:10.688000pt;}
._3_c01029{width:11.712000pt;}
._11_c01029{width:12.672000pt;}
._12_c01029{width:13.632000pt;}
._2_c01029{width:15.360000pt;}
._9_c01029{width:16.521702pt;}
._1_c01029{width:19.008000pt;}
._d_c01029{width:23.232000pt;}
._c_c01029{width:30.976000pt;}
._e_c01029{width:33.536000pt;}
.fs2_c01029{font-size:48.000000pt;}
.fs0_c01029{font-size:58.880000pt;}
.fs1_c01029{font-size:64.000000pt;}
.y0_c01029{bottom:0.000000pt;}
.y2f_c01029{bottom:6.880000pt;}
.y3_c01029{bottom:51.232000pt;}
.y2_c01029{bottom:69.152000pt;}
.y2d_c01029{bottom:118.912000pt;}
.y2c_c01029{bottom:140.026667pt;}
.y2b_c01029{bottom:161.306667pt;}
.y2a_c01029{bottom:182.426667pt;}
.y29_c01029{bottom:203.546667pt;}
.y28_c01029{bottom:224.666667pt;}
.y27_c01029{bottom:245.946667pt;}
.y26_c01029{bottom:280.386667pt;}
.y25_c01029{bottom:301.506667pt;}
.y24_c01029{bottom:322.946667pt;}
.y23_c01029{bottom:343.906667pt;}
.y22_c01029{bottom:365.026667pt;}
.y21_c01029{bottom:386.146667pt;}
.y20_c01029{bottom:407.426667pt;}
.y1f_c01029{bottom:428.546667pt;}
.y1e_c01029{bottom:449.666667pt;}
.y1d_c01029{bottom:470.786667pt;}
.y1c_c01029{bottom:492.066667pt;}
.y1b_c01029{bottom:526.493333pt;}
.y1a_c01029{bottom:547.613333pt;}
.y19_c01029{bottom:568.893333pt;}
.y18_c01029{bottom:590.013333pt;}
.y17_c01029{bottom:611.133333pt;}
.y16_c01029{bottom:632.253333pt;}
.y2e_c01029{bottom:650.653333pt;}
.y15_c01029{bottom:653.533333pt;}
.y14_c01029{bottom:674.653333pt;}
.y13_c01029{bottom:695.773333pt;}
.y12_c01029{bottom:716.893333pt;}
.y11_c01029{bottom:738.013333pt;}
.y10_c01029{bottom:759.333333pt;}
.yf_c01029{bottom:780.453333pt;}
.ye_c01029{bottom:801.573333pt;}
.yd_c01029{bottom:822.693333pt;}
.yc_c01029{bottom:843.973333pt;}
.yb_c01029{bottom:865.093333pt;}
.ya_c01029{bottom:886.213333pt;}
.y9_c01029{bottom:907.333333pt;}
.y8_c01029{bottom:928.613333pt;}
.y7_c01029{bottom:949.733333pt;}
.y6_c01029{bottom:970.853333pt;}
.y5_c01029{bottom:991.973333pt;}
.y4_c01029{bottom:1013.280000pt;}
.y1_c01029{bottom:1061.920000pt;}
.h5_c01029{height:17.920000pt;}
.h2_c01029{height:42.722500pt;}
.h3_c01029{height:44.648750pt;}
.h6_c01029{height:57.218750pt;}
.h4_c01029{height:57.375000pt;}
.h0_c01029{height:1122.560000pt;}
.h1_c01029{height:1122.666667pt;}
.w2_c01029{width:196.986667pt;}
.w0_c01029{width:793.760000pt;}
.w1_c01029{width:794.000000pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:113.472000pt;}
.x2_c01029{left:515.146667pt;}
}





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

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01030;src:url('chunks/assets/font_28078edc8a5c3c7322d18fe3.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01030;src:url('chunks/assets/font_0580feed6c82962a39d8c186.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01030;src:url('chunks/assets/font_0b550a248a650edc2f1b695c.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01030;src:url('chunks/assets/font_f58d864927e7e9e4fef39ebc.woff2')format("woff");}.ff5_c01030{font-family:ff5_c01030;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls5_c01030{letter-spacing:-0.576000px;}
.ls7_c01030{letter-spacing:-0.432000px;}
.ls9_c01030{letter-spacing:-0.272400px;}
.ls6_c01030{letter-spacing:-0.181200px;}
.ls4_c01030{letter-spacing:0.000000px;}
.ls0_c01030{letter-spacing:0.144000px;}
.ls8_c01030{letter-spacing:0.150000px;}
.ls2_c01030{letter-spacing:0.216000px;}
.ls1_c01030{letter-spacing:0.288000px;}
.ls3_c01030{letter-spacing:5.934240px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01030{word-spacing:-19.440000px;}
.ws1_c01030{word-spacing:0.000000px;}
._9_c01030{margin-left:-4.215865px;}
._1_c01030{margin-left:-2.834317px;}
._0_c01030{margin-left:-1.390841px;}
._2_c01030{width:1.030841px;}
._4_c01030{width:3.051452px;}
._7_c01030{width:4.222676px;}
._5_c01030{width:5.400000px;}
._6_c01030{width:6.457159px;}
._e_c01030{width:8.712000px;}
._3_c01030{width:10.296000px;}
._f_c01030{width:11.376000px;}
._10_c01030{width:12.600000px;}
._d_c01030{width:15.192000px;}
._c_c01030{width:16.488000px;}
._8_c01030{width:18.864000px;}
._b_c01030{width:21.213683px;}
._a_c01030{width:22.536000px;}
.fc0_c01030{color:rgb(0,0,0);}
.fs3_c01030{font-size:38.880000px;}
.fs2_c01030{font-size:48.240000px;}
.fs4_c01030{font-size:59.760000px;}
.fs0_c01030{font-size:66.240000px;}
.fs1_c01030{font-size:72.000000px;}
.y0_c01030{bottom:0.000000px;}
.y3_c01030{bottom:57.636000px;}
.y2_c01030{bottom:77.796000px;}
.y31_c01030{bottom:109.296000px;}
.y30_c01030{bottom:128.376000px;}
.y2f_c01030{bottom:133.596000px;}
.y2e_c01030{bottom:148.176000px;}
.y2d_c01030{bottom:172.650000px;}
.y2c_c01030{bottom:196.410000px;}
.y2b_c01030{bottom:220.170000px;}
.y2a_c01030{bottom:243.930000px;}
.y29_c01030{bottom:267.870000px;}
.y28_c01030{bottom:291.675000px;}
.y27_c01030{bottom:315.435000px;}
.y26_c01030{bottom:339.195000px;}
.y25_c01030{bottom:363.135000px;}
.y24_c01030{bottom:386.895000px;}
.y22_c01030{bottom:425.595000px;}
.y23_c01030{bottom:431.535000px;}
.y21_c01030{bottom:449.535000px;}
.y20_c01030{bottom:473.295000px;}
.y1f_c01030{bottom:497.055000px;}
.y1e_c01030{bottom:520.815000px;}
.y1d_c01030{bottom:544.755000px;}
.y1c_c01030{bottom:568.545000px;}
.y1b_c01030{bottom:592.305000px;}
.y1a_c01030{bottom:616.065000px;}
.y19_c01030{bottom:640.005000px;}
.y18_c01030{bottom:663.765000px;}
.y17_c01030{bottom:687.525000px;}
.y16_c01030{bottom:711.285000px;}
.y15_c01030{bottom:735.225000px;}
.y14_c01030{bottom:758.985000px;}
.y13_c01030{bottom:782.745000px;}
.y12_c01030{bottom:806.505000px;}
.y11_c01030{bottom:830.265000px;}
.y10_c01030{bottom:854.250000px;}
.yf_c01030{bottom:878.010000px;}
.ye_c01030{bottom:901.770000px;}
.yd_c01030{bottom:925.530000px;}
.yc_c01030{bottom:949.470000px;}
.yb_c01030{bottom:973.230000px;}
.ya_c01030{bottom:996.990000px;}
.y9_c01030{bottom:1020.750000px;}
.y8_c01030{bottom:1044.690000px;}
.y7_c01030{bottom:1068.450000px;}
.y6_c01030{bottom:1092.210000px;}
.y5_c01030{bottom:1115.970000px;}
.y4_c01030{bottom:1139.940000px;}
.y1_c01030{bottom:1194.660000px;}
.h7_c01030{height:29.482734px;}
.h6_c01030{height:43.246406px;}
.h2_c01030{height:48.062812px;}
.h3_c01030{height:50.229844px;}
.h8_c01030{height:63.763920px;}
.h4_c01030{height:64.546875px;}
.h5_c01030{height:1262.865000px;}
.h0_c01030{height:1262.880000px;}
.h1_c01030{height:1263.000000px;}
.w2_c01030{width:892.957500px;}
.w0_c01030{width:892.980000px;}
.w1_c01030{width:893.250000px;}
.x0_c01030{left:0.000000px;}
.x3_c01030{left:127.656000px;}
.x7_c01030{left:142.236000px;}
.x1_c01030{left:169.950000px;}
.x4_c01030{left:192.787500px;}
.x5_c01030{left:212.790000px;}
.x6_c01030{left:343.695000px;}
.x2_c01030{left:740.490000px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls5_c01030{letter-spacing:-0.512000pt;}
.ls7_c01030{letter-spacing:-0.384000pt;}
.ls9_c01030{letter-spacing:-0.242133pt;}
.ls6_c01030{letter-spacing:-0.161067pt;}
.ls4_c01030{letter-spacing:0.000000pt;}
.ls0_c01030{letter-spacing:0.128000pt;}
.ls8_c01030{letter-spacing:0.133333pt;}
.ls2_c01030{letter-spacing:0.192000pt;}
.ls1_c01030{letter-spacing:0.256000pt;}
.ls3_c01030{letter-spacing:5.274880pt;}
.ws0_c01030{word-spacing:-17.280000pt;}
.ws1_c01030{word-spacing:0.000000pt;}
._9_c01030{margin-left:-3.747436pt;}
._1_c01030{margin-left:-2.519393pt;}
._0_c01030{margin-left:-1.236303pt;}
._2_c01030{width:0.916303pt;}
._4_c01030{width:2.712402pt;}
._7_c01030{width:3.753490pt;}
._5_c01030{width:4.800000pt;}
._6_c01030{width:5.739697pt;}
._e_c01030{width:7.744000pt;}
._3_c01030{width:9.152000pt;}
._f_c01030{width:10.112000pt;}
._10_c01030{width:11.200000pt;}
._d_c01030{width:13.504000pt;}
._c_c01030{width:14.656000pt;}
._8_c01030{width:16.768000pt;}
._b_c01030{width:18.856607pt;}
._a_c01030{width:20.032000pt;}
.fs3_c01030{font-size:34.560000pt;}
.fs2_c01030{font-size:42.880000pt;}
.fs4_c01030{font-size:53.120000pt;}
.fs0_c01030{font-size:58.880000pt;}
.fs1_c01030{font-size:64.000000pt;}
.y0_c01030{bottom:0.000000pt;}
.y3_c01030{bottom:51.232000pt;}
.y2_c01030{bottom:69.152000pt;}
.y31_c01030{bottom:97.152000pt;}
.y30_c01030{bottom:114.112000pt;}
.y2f_c01030{bottom:118.752000pt;}
.y2e_c01030{bottom:131.712000pt;}
.y2d_c01030{bottom:153.466667pt;}
.y2c_c01030{bottom:174.586667pt;}
.y2b_c01030{bottom:195.706667pt;}
.y2a_c01030{bottom:216.826667pt;}
.y29_c01030{bottom:238.106667pt;}
.y28_c01030{bottom:259.266667pt;}
.y27_c01030{bottom:280.386667pt;}
.y26_c01030{bottom:301.506667pt;}
.y25_c01030{bottom:322.786667pt;}
.y24_c01030{bottom:343.906667pt;}
.y22_c01030{bottom:378.306667pt;}
.y23_c01030{bottom:383.586667pt;}
.y21_c01030{bottom:399.586667pt;}
.y20_c01030{bottom:420.706667pt;}
.y1f_c01030{bottom:441.826667pt;}
.y1e_c01030{bottom:462.946667pt;}
.y1d_c01030{bottom:484.226667pt;}
.y1c_c01030{bottom:505.373333pt;}
.y1b_c01030{bottom:526.493333pt;}
.y1a_c01030{bottom:547.613333pt;}
.y19_c01030{bottom:568.893333pt;}
.y18_c01030{bottom:590.013333pt;}
.y17_c01030{bottom:611.133333pt;}
.y16_c01030{bottom:632.253333pt;}
.y15_c01030{bottom:653.533333pt;}
.y14_c01030{bottom:674.653333pt;}
.y13_c01030{bottom:695.773333pt;}
.y12_c01030{bottom:716.893333pt;}
.y11_c01030{bottom:738.013333pt;}
.y10_c01030{bottom:759.333333pt;}
.yf_c01030{bottom:780.453333pt;}
.ye_c01030{bottom:801.573333pt;}
.yd_c01030{bottom:822.693333pt;}
.yc_c01030{bottom:843.973333pt;}
.yb_c01030{bottom:865.093333pt;}
.ya_c01030{bottom:886.213333pt;}
.y9_c01030{bottom:907.333333pt;}
.y8_c01030{bottom:928.613333pt;}
.y7_c01030{bottom:949.733333pt;}
.y6_c01030{bottom:970.853333pt;}
.y5_c01030{bottom:991.973333pt;}
.y4_c01030{bottom:1013.280000pt;}
.y1_c01030{bottom:1061.920000pt;}
.h7_c01030{height:26.206875pt;}
.h6_c01030{height:38.441250pt;}
.h2_c01030{height:42.722500pt;}
.h3_c01030{height:44.648750pt;}
.h8_c01030{height:56.679040pt;}
.h4_c01030{height:57.375000pt;}
.h5_c01030{height:1122.546667pt;}
.h0_c01030{height:1122.560000pt;}
.h1_c01030{height:1122.666667pt;}
.w2_c01030{width:793.740000pt;}
.w0_c01030{width:793.760000pt;}
.w1_c01030{width:794.000000pt;}
.x0_c01030{left:0.000000pt;}
.x3_c01030{left:113.472000pt;}
.x7_c01030{left:126.432000pt;}
.x1_c01030{left:151.066667pt;}
.x4_c01030{left:171.366667pt;}
.x5_c01030{left:189.146667pt;}
.x6_c01030{left:305.506667pt;}
.x2_c01030{left:658.213333pt;}
}





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

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01031;src:url('chunks/assets/font_15192160bc451ea0b93f8b4f.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01031;src:url('chunks/assets/font_d64064fa76cbdf1ead14415d.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01031;src:url('chunks/assets/font_f0fef784e971a9f91d512ebc.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls1_c01031{letter-spacing:-0.432000px;}
.ls3_c01031{letter-spacing:-0.053400px;}
.ls0_c01031{letter-spacing:0.000000px;}
.ls2_c01031{letter-spacing:0.288000px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01031{word-spacing:0.000000px;}
._c_c01031{margin-left:-4.176000px;}
._3_c01031{margin-left:-2.880000px;}
._0_c01031{margin-left:-1.258891px;}
._2_c01031{width:1.198915px;}
._1_c01031{width:2.376000px;}
._9_c01031{width:3.377333px;}
._7_c01031{width:4.608000px;}
._6_c01031{width:5.808024px;}
._8_c01031{width:6.912000px;}
._e_c01031{width:8.367278px;}
._b_c01031{width:11.606146px;}
._a_c01031{width:13.042915px;}
._5_c01031{width:15.984000px;}
._4_c01031{width:17.496000px;}
._d_c01031{width:22.104000px;}
.fc0_c01031{color:rgb(0,0,0);}
.fs2_c01031{font-size:59.760000px;}
.fs0_c01031{font-size:66.240000px;}
.fs1_c01031{font-size:72.000000px;}
.y0_c01031{bottom:0.000000px;}
.y3_c01031{bottom:57.636000px;}
.y2_c01031{bottom:77.796000px;}
.y1e_c01031{bottom:129.996000px;}
.y1d_c01031{bottom:153.930000px;}
.y1c_c01031{bottom:177.690000px;}
.y1b_c01031{bottom:201.450000px;}
.y1a_c01031{bottom:225.210000px;}
.y19_c01031{bottom:248.970000px;}
.y18_c01031{bottom:272.910000px;}
.y17_c01031{bottom:296.715000px;}
.y16_c01031{bottom:335.595000px;}
.y15_c01031{bottom:359.355000px;}
.y14_c01031{bottom:383.115000px;}
.y13_c01031{bottom:406.875000px;}
.y12_c01031{bottom:430.635000px;}
.y11_c01031{bottom:454.575000px;}
.y10_c01031{bottom:489.675000px;}
.yf_c01031{bottom:521.535000px;}
.ye_c01031{bottom:886.830000px;}
.yd_c01031{bottom:910.590000px;}
.yc_c01031{bottom:934.350000px;}
.yb_c01031{bottom:958.290000px;}
.ya_c01031{bottom:982.050000px;}
.y9_c01031{bottom:1005.810000px;}
.y8_c01031{bottom:1029.570000px;}
.y7_c01031{bottom:1053.510000px;}
.y6_c01031{bottom:1092.210000px;}
.y5_c01031{bottom:1115.970000px;}
.y4_c01031{bottom:1139.940000px;}
.y1_c01031{bottom:1194.660000px;}
.h2_c01031{height:48.062812px;}
.h3_c01031{height:50.229844px;}
.h5_c01031{height:53.428008px;}
.h4_c01031{height:64.546875px;}
.h0_c01031{height:1262.880000px;}
.h1_c01031{height:1263.000000px;}
.w0_c01031{width:892.980000px;}
.w1_c01031{width:893.250000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:127.656000px;}
.x2_c01031{left:703.050000px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls1_c01031{letter-spacing:-0.384000pt;}
.ls3_c01031{letter-spacing:-0.047467pt;}
.ls0_c01031{letter-spacing:0.000000pt;}
.ls2_c01031{letter-spacing:0.256000pt;}
.ws0_c01031{word-spacing:0.000000pt;}
._c_c01031{margin-left:-3.712000pt;}
._3_c01031{margin-left:-2.560000pt;}
._0_c01031{margin-left:-1.119014pt;}
._2_c01031{width:1.065702pt;}
._1_c01031{width:2.112000pt;}
._9_c01031{width:3.002074pt;}
._7_c01031{width:4.096000pt;}
._6_c01031{width:5.162688pt;}
._8_c01031{width:6.144000pt;}
._e_c01031{width:7.437581pt;}
._b_c01031{width:10.316574pt;}
._a_c01031{width:11.593702pt;}
._5_c01031{width:14.208000pt;}
._4_c01031{width:15.552000pt;}
._d_c01031{width:19.648000pt;}
.fs2_c01031{font-size:53.120000pt;}
.fs0_c01031{font-size:58.880000pt;}
.fs1_c01031{font-size:64.000000pt;}
.y0_c01031{bottom:0.000000pt;}
.y3_c01031{bottom:51.232000pt;}
.y2_c01031{bottom:69.152000pt;}
.y1e_c01031{bottom:115.552000pt;}
.y1d_c01031{bottom:136.826667pt;}
.y1c_c01031{bottom:157.946667pt;}
.y1b_c01031{bottom:179.066667pt;}
.y1a_c01031{bottom:200.186667pt;}
.y19_c01031{bottom:221.306667pt;}
.y18_c01031{bottom:242.586667pt;}
.y17_c01031{bottom:263.746667pt;}
.y16_c01031{bottom:298.306667pt;}
.y15_c01031{bottom:319.426667pt;}
.y14_c01031{bottom:340.546667pt;}
.y13_c01031{bottom:361.666667pt;}
.y12_c01031{bottom:382.786667pt;}
.y11_c01031{bottom:404.066667pt;}
.y10_c01031{bottom:435.266667pt;}
.yf_c01031{bottom:463.586667pt;}
.ye_c01031{bottom:788.293333pt;}
.yd_c01031{bottom:809.413333pt;}
.yc_c01031{bottom:830.533333pt;}
.yb_c01031{bottom:851.813333pt;}
.ya_c01031{bottom:872.933333pt;}
.y9_c01031{bottom:894.053333pt;}
.y8_c01031{bottom:915.173333pt;}
.y7_c01031{bottom:936.453333pt;}
.y6_c01031{bottom:970.853333pt;}
.y5_c01031{bottom:991.973333pt;}
.y4_c01031{bottom:1013.280000pt;}
.y1_c01031{bottom:1061.920000pt;}
.h2_c01031{height:42.722500pt;}
.h3_c01031{height:44.648750pt;}
.h5_c01031{height:47.491563pt;}
.h4_c01031{height:57.375000pt;}
.h0_c01031{height:1122.560000pt;}
.h1_c01031{height:1122.666667pt;}
.w0_c01031{width:793.760000pt;}
.w1_c01031{width:794.000000pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:113.472000pt;}
.x2_c01031{left:624.933333pt;}
}





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

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01032;src:url('chunks/assets/font_082909ad05adc9489a77fdeb.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_00d106c85db38a8b2ed0a959.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_0ec0100322308a558ac36f90.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls6_c01032{letter-spacing:-0.720000px;}
.ls1_c01032{letter-spacing:-0.576000px;}
.ls2_c01032{letter-spacing:-0.432000px;}
.ls5_c01032{letter-spacing:-0.216000px;}
.ls0_c01032{letter-spacing:0.000000px;}
.ls4_c01032{letter-spacing:0.288000px;}
.ls3_c01032{letter-spacing:0.864000px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01032{word-spacing:-20.880000px;}
.ws1_c01032{word-spacing:-20.304000px;}
.ws2_c01032{word-spacing:-19.800000px;}
.ws3_c01032{word-spacing:-19.296000px;}
.ws4_c01032{word-spacing:0.000000px;}
._6_c01032{margin-left:-4.744587px;}
._5_c01032{margin-left:-3.600000px;}
._12_c01032{margin-left:-2.520000px;}
._0_c01032{margin-left:-1.390841px;}
._2_c01032{width:1.008000px;}
._4_c01032{width:2.664000px;}
._11_c01032{width:4.320000px;}
._7_c01032{width:5.688000px;}
._8_c01032{width:7.272000px;}
._9_c01032{width:9.432000px;}
._a_c01032{width:10.798865px;}
._1_c01032{width:11.808000px;}
._f_c01032{width:12.816000px;}
._3_c01032{width:13.980024px;}
._e_c01032{width:15.142841px;}
._d_c01032{width:17.064000px;}
._14_c01032{width:21.528000px;}
._10_c01032{width:22.536000px;}
._13_c01032{width:27.696024px;}
._c_c01032{width:31.104000px;}
._b_c01032{width:32.112000px;}
._16_c01032{width:34.344000px;}
._18_c01032{width:51.408000px;}
._17_c01032{width:52.560000px;}
._15_c01032{width:54.144000px;}
.fc0_c01032{color:rgb(0,0,0);}
.fs2_c01032{font-size:59.760000px;}
.fs0_c01032{font-size:66.240000px;}
.fs1_c01032{font-size:72.000000px;}
.y0_c01032{bottom:0.000000px;}
.y2e_c01032{bottom:7.725000px;}
.y3_c01032{bottom:57.636000px;}
.y2_c01032{bottom:77.796000px;}
.y2c_c01032{bottom:142.596000px;}
.y2b_c01032{bottom:166.350000px;}
.y2a_c01032{bottom:190.290000px;}
.y29_c01032{bottom:214.050000px;}
.y28_c01032{bottom:237.810000px;}
.y2d_c01032{bottom:256.905000px;}
.y27_c01032{bottom:276.690000px;}
.y26_c01032{bottom:300.495000px;}
.y25_c01032{bottom:324.255000px;}
.y24_c01032{bottom:348.015000px;}
.y23_c01032{bottom:371.955000px;}
.y22_c01032{bottom:395.715000px;}
.y21_c01032{bottom:419.475000px;}
.y20_c01032{bottom:443.235000px;}
.y1f_c01032{bottom:466.995000px;}
.y1e_c01032{bottom:490.935000px;}
.y1d_c01032{bottom:514.695000px;}
.y1c_c01032{bottom:538.455000px;}
.y1b_c01032{bottom:562.215000px;}
.y1a_c01032{bottom:586.185000px;}
.y19_c01032{bottom:609.945000px;}
.y18_c01032{bottom:633.705000px;}
.y17_c01032{bottom:657.465000px;}
.y16_c01032{bottom:681.405000px;}
.y15_c01032{bottom:705.165000px;}
.y14_c01032{bottom:728.925000px;}
.y13_c01032{bottom:752.685000px;}
.y12_c01032{bottom:776.625000px;}
.y11_c01032{bottom:800.385000px;}
.y10_c01032{bottom:839.085000px;}
.yf_c01032{bottom:863.070000px;}
.ye_c01032{bottom:886.830000px;}
.yd_c01032{bottom:910.590000px;}
.yc_c01032{bottom:934.350000px;}
.yb_c01032{bottom:973.230000px;}
.ya_c01032{bottom:996.990000px;}
.y9_c01032{bottom:1020.750000px;}
.y8_c01032{bottom:1044.690000px;}
.y7_c01032{bottom:1068.450000px;}
.y6_c01032{bottom:1092.210000px;}
.y5_c01032{bottom:1115.970000px;}
.y4_c01032{bottom:1139.940000px;}
.y1_c01032{bottom:1194.660000px;}
.h5_c01032{height:21.600000px;}
.h2_c01032{height:48.062812px;}
.h3_c01032{height:50.229844px;}
.h6_c01032{height:53.428008px;}
.h4_c01032{height:64.546875px;}
.h0_c01032{height:1262.880000px;}
.h1_c01032{height:1263.000000px;}
.w2_c01032{width:370.515000px;}
.w0_c01032{width:892.980000px;}
.w1_c01032{width:893.250000px;}
.x0_c01032{left:0.000000px;}
.x3_c01032{left:127.656000px;}
.x1_c01032{left:169.950000px;}
.x4_c01032{left:394.275000px;}
.x2_c01032{left:740.490000px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls6_c01032{letter-spacing:-0.640000pt;}
.ls1_c01032{letter-spacing:-0.512000pt;}
.ls2_c01032{letter-spacing:-0.384000pt;}
.ls5_c01032{letter-spacing:-0.192000pt;}
.ls0_c01032{letter-spacing:0.000000pt;}
.ls4_c01032{letter-spacing:0.256000pt;}
.ls3_c01032{letter-spacing:0.768000pt;}
.ws0_c01032{word-spacing:-18.560000pt;}
.ws1_c01032{word-spacing:-18.048000pt;}
.ws2_c01032{word-spacing:-17.600000pt;}
.ws3_c01032{word-spacing:-17.152000pt;}
.ws4_c01032{word-spacing:0.000000pt;}
._6_c01032{margin-left:-4.217411pt;}
._5_c01032{margin-left:-3.200000pt;}
._12_c01032{margin-left:-2.240000pt;}
._0_c01032{margin-left:-1.236303pt;}
._2_c01032{width:0.896000pt;}
._4_c01032{width:2.368000pt;}
._11_c01032{width:3.840000pt;}
._7_c01032{width:5.056000pt;}
._8_c01032{width:6.464000pt;}
._9_c01032{width:8.384000pt;}
._a_c01032{width:9.598991pt;}
._1_c01032{width:10.496000pt;}
._f_c01032{width:11.392000pt;}
._3_c01032{width:12.426688pt;}
._e_c01032{width:13.460303pt;}
._d_c01032{width:15.168000pt;}
._14_c01032{width:19.136000pt;}
._10_c01032{width:20.032000pt;}
._13_c01032{width:24.618688pt;}
._c_c01032{width:27.648000pt;}
._b_c01032{width:28.544000pt;}
._16_c01032{width:30.528000pt;}
._18_c01032{width:45.696000pt;}
._17_c01032{width:46.720000pt;}
._15_c01032{width:48.128000pt;}
.fs2_c01032{font-size:53.120000pt;}
.fs0_c01032{font-size:58.880000pt;}
.fs1_c01032{font-size:64.000000pt;}
.y0_c01032{bottom:0.000000pt;}
.y2e_c01032{bottom:6.866667pt;}
.y3_c01032{bottom:51.232000pt;}
.y2_c01032{bottom:69.152000pt;}
.y2c_c01032{bottom:126.752000pt;}
.y2b_c01032{bottom:147.866667pt;}
.y2a_c01032{bottom:169.146667pt;}
.y29_c01032{bottom:190.266667pt;}
.y28_c01032{bottom:211.386667pt;}
.y2d_c01032{bottom:228.360000pt;}
.y27_c01032{bottom:245.946667pt;}
.y26_c01032{bottom:267.106667pt;}
.y25_c01032{bottom:288.226667pt;}
.y24_c01032{bottom:309.346667pt;}
.y23_c01032{bottom:330.626667pt;}
.y22_c01032{bottom:351.746667pt;}
.y21_c01032{bottom:372.866667pt;}
.y20_c01032{bottom:393.986667pt;}
.y1f_c01032{bottom:415.106667pt;}
.y1e_c01032{bottom:436.386667pt;}
.y1d_c01032{bottom:457.506667pt;}
.y1c_c01032{bottom:478.626667pt;}
.y1b_c01032{bottom:499.746667pt;}
.y1a_c01032{bottom:521.053333pt;}
.y19_c01032{bottom:542.173333pt;}
.y18_c01032{bottom:563.293333pt;}
.y17_c01032{bottom:584.413333pt;}
.y16_c01032{bottom:605.693333pt;}
.y15_c01032{bottom:626.813333pt;}
.y14_c01032{bottom:647.933333pt;}
.y13_c01032{bottom:669.053333pt;}
.y12_c01032{bottom:690.333333pt;}
.y11_c01032{bottom:711.453333pt;}
.y10_c01032{bottom:745.853333pt;}
.yf_c01032{bottom:767.173333pt;}
.ye_c01032{bottom:788.293333pt;}
.yd_c01032{bottom:809.413333pt;}
.yc_c01032{bottom:830.533333pt;}
.yb_c01032{bottom:865.093333pt;}
.ya_c01032{bottom:886.213333pt;}
.y9_c01032{bottom:907.333333pt;}
.y8_c01032{bottom:928.613333pt;}
.y7_c01032{bottom:949.733333pt;}
.y6_c01032{bottom:970.853333pt;}
.y5_c01032{bottom:991.973333pt;}
.y4_c01032{bottom:1013.280000pt;}
.y1_c01032{bottom:1061.920000pt;}
.h5_c01032{height:19.200000pt;}
.h2_c01032{height:42.722500pt;}
.h3_c01032{height:44.648750pt;}
.h6_c01032{height:47.491563pt;}
.h4_c01032{height:57.375000pt;}
.h0_c01032{height:1122.560000pt;}
.h1_c01032{height:1122.666667pt;}
.w2_c01032{width:329.346667pt;}
.w0_c01032{width:793.760000pt;}
.w1_c01032{width:794.000000pt;}
.x0_c01032{left:0.000000pt;}
.x3_c01032{left:113.472000pt;}
.x1_c01032{left:151.066667pt;}
.x4_c01032{left:350.466667pt;}
.x2_c01032{left:658.213333pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01033;src:url('chunks/assets/font_b7ebb7852ce4b216a8e6ba85.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01033;src:url('chunks/assets/font_5f0e5d9444ae1eff477ca81b.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01033;src:url('chunks/assets/font_7beb0e6ceddd069692ea2234.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls2_c01033{letter-spacing:-0.720000px;}
.ls1_c01033{letter-spacing:0.000000px;}
.ls0_c01033{letter-spacing:0.288000px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01033{word-spacing:-20.304000px;}
.ws1_c01033{word-spacing:0.000000px;}
._17_c01033{margin-left:-5.328000px;}
._10_c01033{margin-left:-4.320000px;}
._16_c01033{margin-left:-3.217061px;}
._0_c01033{margin-left:-1.258891px;}
._8_c01033{width:1.008000px;}
._13_c01033{width:2.949782px;}
._b_c01033{width:3.960000px;}
._5_c01033{width:5.112000px;}
._2_c01033{width:6.582456px;}
._1_c01033{width:8.352000px;}
._4_c01033{width:9.538891px;}
._3_c01033{width:10.872000px;}
._a_c01033{width:12.528000px;}
._14_c01033{width:17.544024px;}
._15_c01033{width:18.887904px;}
._9_c01033{width:21.312000px;}
._c_c01033{width:22.392000px;}
._7_c01033{width:26.064000px;}
._6_c01033{width:27.504000px;}
._f_c01033{width:28.512000px;}
._e_c01033{width:29.736000px;}
._19_c01033{width:30.788674px;}
._18_c01033{width:32.040000px;}
._1a_c01033{width:33.096024px;}
._d_c01033{width:36.792000px;}
._12_c01033{width:56.386915px;}
._11_c01033{width:57.816000px;}
.fc0_c01033{color:rgb(0,0,0);}
.fs2_c01033{font-size:59.760000px;}
.fs0_c01033{font-size:66.240000px;}
.fs1_c01033{font-size:72.000000px;}
.y0_c01033{bottom:0.000000px;}
.y2c_c01033{bottom:42.120000px;}
.y3_c01033{bottom:57.636000px;}
.y2_c01033{bottom:77.796000px;}
.y2a_c01033{bottom:175.170000px;}
.y29_c01033{bottom:214.050000px;}
.y28_c01033{bottom:237.810000px;}
.y27_c01033{bottom:261.570000px;}
.y26_c01033{bottom:285.375000px;}
.y25_c01033{bottom:309.315000px;}
.y24_c01033{bottom:348.015000px;}
.y23_c01033{bottom:371.955000px;}
.y22_c01033{bottom:395.715000px;}
.y21_c01033{bottom:419.475000px;}
.y20_c01033{bottom:443.235000px;}
.y1f_c01033{bottom:466.995000px;}
.y1e_c01033{bottom:490.935000px;}
.y1d_c01033{bottom:514.695000px;}
.y1c_c01033{bottom:538.455000px;}
.y1b_c01033{bottom:562.215000px;}
.y1a_c01033{bottom:601.125000px;}
.y19_c01033{bottom:624.885000px;}
.y2b_c01033{bottom:633.705000px;}
.y18_c01033{bottom:648.645000px;}
.y17_c01033{bottom:672.585000px;}
.y16_c01033{bottom:696.345000px;}
.y15_c01033{bottom:720.105000px;}
.y14_c01033{bottom:743.865000px;}
.y13_c01033{bottom:767.805000px;}
.y12_c01033{bottom:791.565000px;}
.y11_c01033{bottom:815.325000px;}
.y10_c01033{bottom:839.085000px;}
.yf_c01033{bottom:863.070000px;}
.ye_c01033{bottom:886.830000px;}
.yd_c01033{bottom:910.590000px;}
.yc_c01033{bottom:934.350000px;}
.yb_c01033{bottom:958.290000px;}
.ya_c01033{bottom:982.050000px;}
.y9_c01033{bottom:1005.810000px;}
.y8_c01033{bottom:1029.570000px;}
.y7_c01033{bottom:1053.510000px;}
.y6_c01033{bottom:1077.270000px;}
.y5_c01033{bottom:1115.970000px;}
.y4_c01033{bottom:1139.940000px;}
.y1_c01033{bottom:1194.660000px;}
.h2_c01033{height:48.062812px;}
.h3_c01033{height:50.229844px;}
.h6_c01033{height:53.428008px;}
.h5_c01033{height:55.980000px;}
.h4_c01033{height:64.546875px;}
.h0_c01033{height:1262.880000px;}
.h1_c01033{height:1263.000000px;}
.w2_c01033{width:288.060000px;}
.w0_c01033{width:892.980000px;}
.w1_c01033{width:893.250000px;}
.x0_c01033{left:0.000000px;}
.x1_c01033{left:127.656000px;}
.x2_c01033{left:466.635000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls2_c01033{letter-spacing:-0.640000pt;}
.ls1_c01033{letter-spacing:0.000000pt;}
.ls0_c01033{letter-spacing:0.256000pt;}
.ws0_c01033{word-spacing:-18.048000pt;}
.ws1_c01033{word-spacing:0.000000pt;}
._17_c01033{margin-left:-4.736000pt;}
._10_c01033{margin-left:-3.840000pt;}
._16_c01033{margin-left:-2.859610pt;}
._0_c01033{margin-left:-1.119014pt;}
._8_c01033{width:0.896000pt;}
._13_c01033{width:2.622029pt;}
._b_c01033{width:3.520000pt;}
._5_c01033{width:4.544000pt;}
._2_c01033{width:5.851072pt;}
._1_c01033{width:7.424000pt;}
._4_c01033{width:8.479014pt;}
._3_c01033{width:9.664000pt;}
._a_c01033{width:11.136000pt;}
._14_c01033{width:15.594688pt;}
._15_c01033{width:16.789248pt;}
._9_c01033{width:18.944000pt;}
._c_c01033{width:19.904000pt;}
._7_c01033{width:23.168000pt;}
._6_c01033{width:24.448000pt;}
._f_c01033{width:25.344000pt;}
._e_c01033{width:26.432000pt;}
._19_c01033{width:27.367710pt;}
._18_c01033{width:28.480000pt;}
._1a_c01033{width:29.418688pt;}
._d_c01033{width:32.704000pt;}
._12_c01033{width:50.121702pt;}
._11_c01033{width:51.392000pt;}
.fs2_c01033{font-size:53.120000pt;}
.fs0_c01033{font-size:58.880000pt;}
.fs1_c01033{font-size:64.000000pt;}
.y0_c01033{bottom:0.000000pt;}
.y2c_c01033{bottom:37.440000pt;}
.y3_c01033{bottom:51.232000pt;}
.y2_c01033{bottom:69.152000pt;}
.y2a_c01033{bottom:155.706667pt;}
.y29_c01033{bottom:190.266667pt;}
.y28_c01033{bottom:211.386667pt;}
.y27_c01033{bottom:232.506667pt;}
.y26_c01033{bottom:253.666667pt;}
.y25_c01033{bottom:274.946667pt;}
.y24_c01033{bottom:309.346667pt;}
.y23_c01033{bottom:330.626667pt;}
.y22_c01033{bottom:351.746667pt;}
.y21_c01033{bottom:372.866667pt;}
.y20_c01033{bottom:393.986667pt;}
.y1f_c01033{bottom:415.106667pt;}
.y1e_c01033{bottom:436.386667pt;}
.y1d_c01033{bottom:457.506667pt;}
.y1c_c01033{bottom:478.626667pt;}
.y1b_c01033{bottom:499.746667pt;}
.y1a_c01033{bottom:534.333333pt;}
.y19_c01033{bottom:555.453333pt;}
.y2b_c01033{bottom:563.293333pt;}
.y18_c01033{bottom:576.573333pt;}
.y17_c01033{bottom:597.853333pt;}
.y16_c01033{bottom:618.973333pt;}
.y15_c01033{bottom:640.093333pt;}
.y14_c01033{bottom:661.213333pt;}
.y13_c01033{bottom:682.493333pt;}
.y12_c01033{bottom:703.613333pt;}
.y11_c01033{bottom:724.733333pt;}
.y10_c01033{bottom:745.853333pt;}
.yf_c01033{bottom:767.173333pt;}
.ye_c01033{bottom:788.293333pt;}
.yd_c01033{bottom:809.413333pt;}
.yc_c01033{bottom:830.533333pt;}
.yb_c01033{bottom:851.813333pt;}
.ya_c01033{bottom:872.933333pt;}
.y9_c01033{bottom:894.053333pt;}
.y8_c01033{bottom:915.173333pt;}
.y7_c01033{bottom:936.453333pt;}
.y6_c01033{bottom:957.573333pt;}
.y5_c01033{bottom:991.973333pt;}
.y4_c01033{bottom:1013.280000pt;}
.y1_c01033{bottom:1061.920000pt;}
.h2_c01033{height:42.722500pt;}
.h3_c01033{height:44.648750pt;}
.h6_c01033{height:47.491563pt;}
.h5_c01033{height:49.760000pt;}
.h4_c01033{height:57.375000pt;}
.h0_c01033{height:1122.560000pt;}
.h1_c01033{height:1122.666667pt;}
.w2_c01033{width:256.053333pt;}
.w0_c01033{width:793.760000pt;}
.w1_c01033{width:794.000000pt;}
.x0_c01033{left:0.000000pt;}
.x1_c01033{left:113.472000pt;}
.x2_c01033{left:414.786667pt;}
}





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

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01034;src:url('chunks/assets/font_a2898063b20f2d2589b08373.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01034;src:url('chunks/assets/font_02d3bd2b9d00a83b85b0f11d.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01034;src:url('chunks/assets/font_db36342142ed50b5ce998bf7.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls3_c01034{letter-spacing:-0.864000px;}
.ls1_c01034{letter-spacing:-0.576000px;}
.ls0_c01034{letter-spacing:0.000000px;}
.ls2_c01034{letter-spacing:0.144000px;}
.ls4_c01034{letter-spacing:0.259800px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01034{word-spacing:-19.152000px;}
.ws1_c01034{word-spacing:-16.873080px;}
.ws2_c01034{word-spacing:0.000000px;}
._f_c01034{margin-left:-4.680000px;}
._8_c01034{margin-left:-2.425159px;}
._0_c01034{margin-left:-1.390841px;}
._3_c01034{width:1.030841px;}
._7_c01034{width:2.100000px;}
._5_c01034{width:3.312000px;}
._4_c01034{width:5.040000px;}
._6_c01034{width:6.336000px;}
._c_c01034{width:7.431500px;}
._b_c01034{width:8.496000px;}
._d_c01034{width:9.792000px;}
._a_c01034{width:11.878865px;}
._9_c01034{width:12.960000px;}
._11_c01034{width:16.272000px;}
._13_c01034{width:18.720000px;}
._2_c01034{width:24.192000px;}
._1_c01034{width:25.416000px;}
._10_c01034{width:34.174817px;}
._e_c01034{width:35.256024px;}
._12_c01034{width:41.688000px;}
._14_c01034{width:844.140000px;}
.fc0_c01034{color:rgb(0,0,0);}
.fs2_c01034{font-size:59.760000px;}
.fs0_c01034{font-size:66.240000px;}
.fs1_c01034{font-size:72.000000px;}
.y0_c01034{bottom:0.000000px;}
.y24_c01034{bottom:2.355000px;}
.y23_c01034{bottom:19.815000px;}
.y26_c01034{bottom:32.235000px;}
.y3_c01034{bottom:57.636000px;}
.y2_c01034{bottom:77.796000px;}
.y21_c01034{bottom:389.415000px;}
.y25_c01034{bottom:407.580000px;}
.y20_c01034{bottom:428.295000px;}
.y1f_c01034{bottom:466.995000px;}
.y1e_c01034{bottom:490.935000px;}
.y1d_c01034{bottom:514.695000px;}
.y1c_c01034{bottom:538.455000px;}
.y1b_c01034{bottom:562.215000px;}
.y1a_c01034{bottom:586.185000px;}
.y19_c01034{bottom:609.945000px;}
.y18_c01034{bottom:633.705000px;}
.y17_c01034{bottom:657.465000px;}
.y16_c01034{bottom:681.405000px;}
.y15_c01034{bottom:705.165000px;}
.y14_c01034{bottom:728.925000px;}
.y13_c01034{bottom:752.685000px;}
.y12_c01034{bottom:776.625000px;}
.y11_c01034{bottom:800.385000px;}
.y10_c01034{bottom:824.145000px;}
.yf_c01034{bottom:847.950000px;}
.ye_c01034{bottom:871.890000px;}
.yd_c01034{bottom:910.590000px;}
.y22_c01034{bottom:910.935000px;}
.yc_c01034{bottom:949.470000px;}
.yb_c01034{bottom:973.230000px;}
.ya_c01034{bottom:996.990000px;}
.y9_c01034{bottom:1020.750000px;}
.y8_c01034{bottom:1044.690000px;}
.y7_c01034{bottom:1068.450000px;}
.y6_c01034{bottom:1092.210000px;}
.y5_c01034{bottom:1115.970000px;}
.y4_c01034{bottom:1139.940000px;}
.y1_c01034{bottom:1194.660000px;}
.h5_c01034{height:33.480000px;}
.h7_c01034{height:46.080000px;}
.h2_c01034{height:48.062812px;}
.h3_c01034{height:50.229844px;}
.h6_c01034{height:53.428008px;}
.h4_c01034{height:64.546875px;}
.h0_c01034{height:1262.880000px;}
.h1_c01034{height:1263.000000px;}
.w2_c01034{width:179.670000px;}
.w3_c01034{width:283.530000px;}
.w0_c01034{width:892.980000px;}
.w1_c01034{width:893.250000px;}
.x0_c01034{left:0.000000px;}
.x3_c01034{left:127.656000px;}
.x1_c01034{left:169.950000px;}
.x4_c01034{left:319.755000px;}
.x5_c01034{left:496.920000px;}
.x2_c01034{left:740.490000px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls3_c01034{letter-spacing:-0.768000pt;}
.ls1_c01034{letter-spacing:-0.512000pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ls2_c01034{letter-spacing:0.128000pt;}
.ls4_c01034{letter-spacing:0.230933pt;}
.ws0_c01034{word-spacing:-17.024000pt;}
.ws1_c01034{word-spacing:-14.998293pt;}
.ws2_c01034{word-spacing:0.000000pt;}
._f_c01034{margin-left:-4.160000pt;}
._8_c01034{margin-left:-2.155697pt;}
._0_c01034{margin-left:-1.236303pt;}
._3_c01034{width:0.916303pt;}
._7_c01034{width:1.866667pt;}
._5_c01034{width:2.944000pt;}
._4_c01034{width:4.480000pt;}
._6_c01034{width:5.632000pt;}
._c_c01034{width:6.605778pt;}
._b_c01034{width:7.552000pt;}
._d_c01034{width:8.704000pt;}
._a_c01034{width:10.558991pt;}
._9_c01034{width:11.520000pt;}
._11_c01034{width:14.464000pt;}
._13_c01034{width:16.640000pt;}
._2_c01034{width:21.504000pt;}
._1_c01034{width:22.592000pt;}
._10_c01034{width:30.377615pt;}
._e_c01034{width:31.338688pt;}
._12_c01034{width:37.056000pt;}
._14_c01034{width:750.346667pt;}
.fs2_c01034{font-size:53.120000pt;}
.fs0_c01034{font-size:58.880000pt;}
.fs1_c01034{font-size:64.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y24_c01034{bottom:2.093333pt;}
.y23_c01034{bottom:17.613333pt;}
.y26_c01034{bottom:28.653333pt;}
.y3_c01034{bottom:51.232000pt;}
.y2_c01034{bottom:69.152000pt;}
.y21_c01034{bottom:346.146667pt;}
.y25_c01034{bottom:362.293333pt;}
.y20_c01034{bottom:380.706667pt;}
.y1f_c01034{bottom:415.106667pt;}
.y1e_c01034{bottom:436.386667pt;}
.y1d_c01034{bottom:457.506667pt;}
.y1c_c01034{bottom:478.626667pt;}
.y1b_c01034{bottom:499.746667pt;}
.y1a_c01034{bottom:521.053333pt;}
.y19_c01034{bottom:542.173333pt;}
.y18_c01034{bottom:563.293333pt;}
.y17_c01034{bottom:584.413333pt;}
.y16_c01034{bottom:605.693333pt;}
.y15_c01034{bottom:626.813333pt;}
.y14_c01034{bottom:647.933333pt;}
.y13_c01034{bottom:669.053333pt;}
.y12_c01034{bottom:690.333333pt;}
.y11_c01034{bottom:711.453333pt;}
.y10_c01034{bottom:732.573333pt;}
.yf_c01034{bottom:753.733333pt;}
.ye_c01034{bottom:775.013333pt;}
.yd_c01034{bottom:809.413333pt;}
.y22_c01034{bottom:809.720000pt;}
.yc_c01034{bottom:843.973333pt;}
.yb_c01034{bottom:865.093333pt;}
.ya_c01034{bottom:886.213333pt;}
.y9_c01034{bottom:907.333333pt;}
.y8_c01034{bottom:928.613333pt;}
.y7_c01034{bottom:949.733333pt;}
.y6_c01034{bottom:970.853333pt;}
.y5_c01034{bottom:991.973333pt;}
.y4_c01034{bottom:1013.280000pt;}
.y1_c01034{bottom:1061.920000pt;}
.h5_c01034{height:29.760000pt;}
.h7_c01034{height:40.960000pt;}
.h2_c01034{height:42.722500pt;}
.h3_c01034{height:44.648750pt;}
.h6_c01034{height:47.491563pt;}
.h4_c01034{height:57.375000pt;}
.h0_c01034{height:1122.560000pt;}
.h1_c01034{height:1122.666667pt;}
.w2_c01034{width:159.706667pt;}
.w3_c01034{width:252.026667pt;}
.w0_c01034{width:793.760000pt;}
.w1_c01034{width:794.000000pt;}
.x0_c01034{left:0.000000pt;}
.x3_c01034{left:113.472000pt;}
.x1_c01034{left:151.066667pt;}
.x4_c01034{left:284.226667pt;}
.x5_c01034{left:441.706667pt;}
.x2_c01034{left:658.213333pt;}
}





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

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01035;src:url('chunks/assets/font_56a5a7ce984dd2eb2a7c9f3a.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01035;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01035;src:url('chunks/assets/font_5e46a0baa00ad317710e40fe.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01035;src:url('chunks/assets/font_c329d8df55a85ab22bfdbdb6.woff2')format("woff");}.ff5_c01035{font-family:ff5_c01035;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls4_c01035{letter-spacing:-0.720000px;}
.ls2_c01035{letter-spacing:-0.576000px;}
.ls3_c01035{letter-spacing:-0.504000px;}
.ls6_c01035{letter-spacing:-0.432000px;}
.ls5_c01035{letter-spacing:-0.144000px;}
.ls1_c01035{letter-spacing:0.000000px;}
.ls7_c01035{letter-spacing:0.144000px;}
.ls0_c01035{letter-spacing:0.288000px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01035{word-spacing:-20.304000px;}
.ws3_c01035{word-spacing:-20.016000px;}
.ws2_c01035{word-spacing:-19.872000px;}
.ws1_c01035{word-spacing:-19.512000px;}
.ws4_c01035{word-spacing:0.000000px;}
._9_c01035{margin-left:-4.640530px;}
._8_c01035{margin-left:-3.517157px;}
._5_c01035{margin-left:-2.293085px;}
._0_c01035{margin-left:-1.258891px;}
._3_c01035{width:1.047326px;}
._19_c01035{width:2.064024px;}
._4_c01035{width:3.120000px;}
._16_c01035{width:4.621133px;}
._15_c01035{width:6.370891px;}
._b_c01035{width:7.776000px;}
._2_c01035{width:9.682891px;}
._1_c01035{width:10.872000px;}
._c_c01035{width:12.240000px;}
._13_c01035{width:13.536000px;}
._14_c01035{width:14.952024px;}
._7_c01035{width:16.056000px;}
._6_c01035{width:17.352000px;}
._12_c01035{width:24.984000px;}
._10_c01035{width:25.992000px;}
._11_c01035{width:26.995565px;}
._e_c01035{width:28.656000px;}
._18_c01035{width:40.680000px;}
._17_c01035{width:41.736024px;}
._d_c01035{width:72.864000px;}
._a_c01035{width:76.872000px;}
._f_c01035{width:85.032000px;}
.fc0_c01035{color:rgb(0,0,0);}
.fs3_c01035{font-size:59.760000px;}
.fs0_c01035{font-size:66.240000px;}
.fs2_c01035{font-size:72.000000px;}
.fs1_c01035{font-size:84.240000px;}
.y0_c01035{bottom:0.000000px;}
.y30_c01035{bottom:18.360000px;}
.y3_c01035{bottom:57.636000px;}
.y2_c01035{bottom:77.796000px;}
.y2e_c01035{bottom:124.776000px;}
.y2d_c01035{bottom:148.536000px;}
.y2c_c01035{bottom:172.290000px;}
.y2b_c01035{bottom:196.050000px;}
.y2a_c01035{bottom:219.810000px;}
.y29_c01035{bottom:243.750000px;}
.y28_c01035{bottom:267.510000px;}
.y27_c01035{bottom:291.315000px;}
.y26_c01035{bottom:315.075000px;}
.y25_c01035{bottom:339.015000px;}
.y24_c01035{bottom:362.775000px;}
.y23_c01035{bottom:386.535000px;}
.y22_c01035{bottom:410.295000px;}
.y21_c01035{bottom:434.235000px;}
.y20_c01035{bottom:457.995000px;}
.y1f_c01035{bottom:481.755000px;}
.y1e_c01035{bottom:505.515000px;}
.y1d_c01035{bottom:544.395000px;}
.y1c_c01035{bottom:568.185000px;}
.y2f_c01035{bottom:568.365000px;}
.y1b_c01035{bottom:591.945000px;}
.y1a_c01035{bottom:615.885000px;}
.y19_c01035{bottom:639.645000px;}
.y18_c01035{bottom:663.405000px;}
.y17_c01035{bottom:687.165000px;}
.y16_c01035{bottom:711.105000px;}
.y15_c01035{bottom:734.865000px;}
.y14_c01035{bottom:758.625000px;}
.y13_c01035{bottom:782.385000px;}
.y12_c01035{bottom:806.325000px;}
.y11_c01035{bottom:830.085000px;}
.y10_c01035{bottom:853.890000px;}
.yf_c01035{bottom:877.650000px;}
.ye_c01035{bottom:901.410000px;}
.yd_c01035{bottom:925.350000px;}
.yc_c01035{bottom:949.110000px;}
.yb_c01035{bottom:972.870000px;}
.ya_c01035{bottom:996.630000px;}
.y9_c01035{bottom:1020.570000px;}
.y8_c01035{bottom:1044.330000px;}
.y7_c01035{bottom:1068.090000px;}
.y6_c01035{bottom:1091.850000px;}
.y5_c01035{bottom:1113.270000px;}
.y4_c01035{bottom:1137.240000px;}
.y1_c01035{bottom:1194.660000px;}
.h6_c01035{height:32.220000px;}
.h2_c01035{height:48.062812px;}
.h3_c01035{height:50.229844px;}
.h7_c01035{height:53.428008px;}
.h5_c01035{height:64.546875px;}
.h4_c01035{height:87.859687px;}
.h0_c01035{height:1262.880000px;}
.h1_c01035{height:1263.000000px;}
.w2_c01035{width:428.835000px;}
.w0_c01035{width:892.980000px;}
.w1_c01035{width:893.250000px;}
.x0_c01035{left:0.000000px;}
.x1_c01035{left:127.656000px;}
.x2_c01035{left:335.775000px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls4_c01035{letter-spacing:-0.640000pt;}
.ls2_c01035{letter-spacing:-0.512000pt;}
.ls3_c01035{letter-spacing:-0.448000pt;}
.ls6_c01035{letter-spacing:-0.384000pt;}
.ls5_c01035{letter-spacing:-0.128000pt;}
.ls1_c01035{letter-spacing:0.000000pt;}
.ls7_c01035{letter-spacing:0.128000pt;}
.ls0_c01035{letter-spacing:0.256000pt;}
.ws0_c01035{word-spacing:-18.048000pt;}
.ws3_c01035{word-spacing:-17.792000pt;}
.ws2_c01035{word-spacing:-17.664000pt;}
.ws1_c01035{word-spacing:-17.344000pt;}
.ws4_c01035{word-spacing:0.000000pt;}
._9_c01035{margin-left:-4.124915pt;}
._8_c01035{margin-left:-3.126362pt;}
._5_c01035{margin-left:-2.038298pt;}
._0_c01035{margin-left:-1.119014pt;}
._3_c01035{width:0.930957pt;}
._19_c01035{width:1.834688pt;}
._4_c01035{width:2.773333pt;}
._16_c01035{width:4.107674pt;}
._15_c01035{width:5.663014pt;}
._b_c01035{width:6.912000pt;}
._2_c01035{width:8.607014pt;}
._1_c01035{width:9.664000pt;}
._c_c01035{width:10.880000pt;}
._13_c01035{width:12.032000pt;}
._14_c01035{width:13.290688pt;}
._7_c01035{width:14.272000pt;}
._6_c01035{width:15.424000pt;}
._12_c01035{width:22.208000pt;}
._10_c01035{width:23.104000pt;}
._11_c01035{width:23.996058pt;}
._e_c01035{width:25.472000pt;}
._18_c01035{width:36.160000pt;}
._17_c01035{width:37.098688pt;}
._d_c01035{width:64.768000pt;}
._a_c01035{width:68.330667pt;}
._f_c01035{width:75.584000pt;}
.fs3_c01035{font-size:53.120000pt;}
.fs0_c01035{font-size:58.880000pt;}
.fs2_c01035{font-size:64.000000pt;}
.fs1_c01035{font-size:74.880000pt;}
.y0_c01035{bottom:0.000000pt;}
.y30_c01035{bottom:16.320000pt;}
.y3_c01035{bottom:51.232000pt;}
.y2_c01035{bottom:69.152000pt;}
.y2e_c01035{bottom:110.912000pt;}
.y2d_c01035{bottom:132.032000pt;}
.y2c_c01035{bottom:153.146667pt;}
.y2b_c01035{bottom:174.266667pt;}
.y2a_c01035{bottom:195.386667pt;}
.y29_c01035{bottom:216.666667pt;}
.y28_c01035{bottom:237.786667pt;}
.y27_c01035{bottom:258.946667pt;}
.y26_c01035{bottom:280.066667pt;}
.y25_c01035{bottom:301.346667pt;}
.y24_c01035{bottom:322.466667pt;}
.y23_c01035{bottom:343.586667pt;}
.y22_c01035{bottom:364.706667pt;}
.y21_c01035{bottom:385.986667pt;}
.y20_c01035{bottom:407.106667pt;}
.y1f_c01035{bottom:428.226667pt;}
.y1e_c01035{bottom:449.346667pt;}
.y1d_c01035{bottom:483.906667pt;}
.y1c_c01035{bottom:505.053333pt;}
.y2f_c01035{bottom:505.213333pt;}
.y1b_c01035{bottom:526.173333pt;}
.y1a_c01035{bottom:547.453333pt;}
.y19_c01035{bottom:568.573333pt;}
.y18_c01035{bottom:589.693333pt;}
.y17_c01035{bottom:610.813333pt;}
.y16_c01035{bottom:632.093333pt;}
.y15_c01035{bottom:653.213333pt;}
.y14_c01035{bottom:674.333333pt;}
.y13_c01035{bottom:695.453333pt;}
.y12_c01035{bottom:716.733333pt;}
.y11_c01035{bottom:737.853333pt;}
.y10_c01035{bottom:759.013333pt;}
.yf_c01035{bottom:780.133333pt;}
.ye_c01035{bottom:801.253333pt;}
.yd_c01035{bottom:822.533333pt;}
.yc_c01035{bottom:843.653333pt;}
.yb_c01035{bottom:864.773333pt;}
.ya_c01035{bottom:885.893333pt;}
.y9_c01035{bottom:907.173333pt;}
.y8_c01035{bottom:928.293333pt;}
.y7_c01035{bottom:949.413333pt;}
.y6_c01035{bottom:970.533333pt;}
.y5_c01035{bottom:989.573333pt;}
.y4_c01035{bottom:1010.880000pt;}
.y1_c01035{bottom:1061.920000pt;}
.h6_c01035{height:28.640000pt;}
.h2_c01035{height:42.722500pt;}
.h3_c01035{height:44.648750pt;}
.h7_c01035{height:47.491563pt;}
.h5_c01035{height:57.375000pt;}
.h4_c01035{height:78.097500pt;}
.h0_c01035{height:1122.560000pt;}
.h1_c01035{height:1122.666667pt;}
.w2_c01035{width:381.186667pt;}
.w0_c01035{width:793.760000pt;}
.w1_c01035{width:794.000000pt;}
.x0_c01035{left:0.000000pt;}
.x1_c01035{left:113.472000pt;}
.x2_c01035{left:298.466667pt;}
}





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

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01036;src:url('chunks/assets/font_e1e26edcc9c1d50d01cf7600.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01036;src:url('chunks/assets/font_dd5f5d456faeacc3b450bbe3.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01036;src:url('chunks/assets/font_f5d48823599836e921475824.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls1_c01036{letter-spacing:-0.720000px;}
.ls3_c01036{letter-spacing:-0.432000px;}
.ls2_c01036{letter-spacing:-0.053400px;}
.ls0_c01036{letter-spacing:0.000000px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01036{word-spacing:0.000000px;}
._6_c01036{margin-left:-4.648009px;}
._3_c01036{margin-left:-3.343991px;}
._0_c01036{margin-left:-1.390841px;}
._2_c01036{width:1.283904px;}
._1_c01036{width:2.928024px;}
._5_c01036{width:4.032000px;}
._9_c01036{width:7.353683px;}
._a_c01036{width:8.496000px;}
._4_c01036{width:9.576000px;}
._7_c01036{width:10.727153px;}
._d_c01036{width:12.325789px;}
._8_c01036{width:13.752000px;}
._e_c01036{width:15.552000px;}
._11_c01036{width:24.552000px;}
._10_c01036{width:26.172000px;}
._f_c01036{width:27.864000px;}
._c_c01036{width:44.064000px;}
._b_c01036{width:45.216000px;}
.fc0_c01036{color:rgb(0,0,0);}
.fs2_c01036{font-size:59.760000px;}
.fs0_c01036{font-size:66.240000px;}
.fs1_c01036{font-size:72.000000px;}
.y0_c01036{bottom:0.000000px;}
.y22_c01036{bottom:9.711000px;}
.y3_c01036{bottom:57.636000px;}
.y2_c01036{bottom:77.796000px;}
.y20_c01036{bottom:117.936000px;}
.y21_c01036{bottom:119.205000px;}
.y1f_c01036{bottom:141.876000px;}
.y1e_c01036{bottom:165.630000px;}
.y1d_c01036{bottom:189.390000px;}
.y1c_c01036{bottom:213.150000px;}
.y1b_c01036{bottom:236.910000px;}
.y1a_c01036{bottom:260.850000px;}
.y19_c01036{bottom:284.655000px;}
.y18_c01036{bottom:308.415000px;}
.y17_c01036{bottom:332.175000px;}
.y16_c01036{bottom:356.115000px;}
.y15_c01036{bottom:379.875000px;}
.y14_c01036{bottom:403.635000px;}
.y13_c01036{bottom:427.395000px;}
.y12_c01036{bottom:451.335000px;}
.y11_c01036{bottom:475.095000px;}
.y10_c01036{bottom:498.855000px;}
.yf_c01036{bottom:533.955000px;}
.ye_c01036{bottom:566.025000px;}
.yd_c01036{bottom:925.530000px;}
.yc_c01036{bottom:949.470000px;}
.yb_c01036{bottom:973.230000px;}
.ya_c01036{bottom:996.990000px;}
.y9_c01036{bottom:1020.750000px;}
.y8_c01036{bottom:1044.690000px;}
.y7_c01036{bottom:1068.450000px;}
.y6_c01036{bottom:1092.210000px;}
.y5_c01036{bottom:1115.970000px;}
.y4_c01036{bottom:1139.940000px;}
.y1_c01036{bottom:1194.660000px;}
.h6_c01036{height:23.580000px;}
.h2_c01036{height:48.062812px;}
.h3_c01036{height:50.229844px;}
.h5_c01036{height:53.428008px;}
.h4_c01036{height:64.546875px;}
.h0_c01036{height:1262.880000px;}
.h1_c01036{height:1263.000000px;}
.w2_c01036{width:126.000000px;}
.w0_c01036{width:892.980000px;}
.w1_c01036{width:893.250000px;}
.x0_c01036{left:0.000000px;}
.x3_c01036{left:127.656000px;}
.x1_c01036{left:169.950000px;}
.x5_c01036{left:266.970000px;}
.x4_c01036{left:704.130000px;}
.x2_c01036{left:740.490000px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls1_c01036{letter-spacing:-0.640000pt;}
.ls3_c01036{letter-spacing:-0.384000pt;}
.ls2_c01036{letter-spacing:-0.047467pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ws0_c01036{word-spacing:0.000000pt;}
._6_c01036{margin-left:-4.131564pt;}
._3_c01036{margin-left:-2.972436pt;}
._0_c01036{margin-left:-1.236303pt;}
._2_c01036{width:1.141248pt;}
._1_c01036{width:2.602688pt;}
._5_c01036{width:3.584000pt;}
._9_c01036{width:6.536607pt;}
._a_c01036{width:7.552000pt;}
._4_c01036{width:8.512000pt;}
._7_c01036{width:9.535247pt;}
._d_c01036{width:10.956257pt;}
._8_c01036{width:12.224000pt;}
._e_c01036{width:13.824000pt;}
._11_c01036{width:21.824000pt;}
._10_c01036{width:23.264000pt;}
._f_c01036{width:24.768000pt;}
._c_c01036{width:39.168000pt;}
._b_c01036{width:40.192000pt;}
.fs2_c01036{font-size:53.120000pt;}
.fs0_c01036{font-size:58.880000pt;}
.fs1_c01036{font-size:64.000000pt;}
.y0_c01036{bottom:0.000000pt;}
.y22_c01036{bottom:8.632000pt;}
.y3_c01036{bottom:51.232000pt;}
.y2_c01036{bottom:69.152000pt;}
.y20_c01036{bottom:104.832000pt;}
.y21_c01036{bottom:105.960000pt;}
.y1f_c01036{bottom:126.112000pt;}
.y1e_c01036{bottom:147.226667pt;}
.y1d_c01036{bottom:168.346667pt;}
.y1c_c01036{bottom:189.466667pt;}
.y1b_c01036{bottom:210.586667pt;}
.y1a_c01036{bottom:231.866667pt;}
.y19_c01036{bottom:253.026667pt;}
.y18_c01036{bottom:274.146667pt;}
.y17_c01036{bottom:295.266667pt;}
.y16_c01036{bottom:316.546667pt;}
.y15_c01036{bottom:337.666667pt;}
.y14_c01036{bottom:358.786667pt;}
.y13_c01036{bottom:379.906667pt;}
.y12_c01036{bottom:401.186667pt;}
.y11_c01036{bottom:422.306667pt;}
.y10_c01036{bottom:443.426667pt;}
.yf_c01036{bottom:474.626667pt;}
.ye_c01036{bottom:503.133333pt;}
.yd_c01036{bottom:822.693333pt;}
.yc_c01036{bottom:843.973333pt;}
.yb_c01036{bottom:865.093333pt;}
.ya_c01036{bottom:886.213333pt;}
.y9_c01036{bottom:907.333333pt;}
.y8_c01036{bottom:928.613333pt;}
.y7_c01036{bottom:949.733333pt;}
.y6_c01036{bottom:970.853333pt;}
.y5_c01036{bottom:991.973333pt;}
.y4_c01036{bottom:1013.280000pt;}
.y1_c01036{bottom:1061.920000pt;}
.h6_c01036{height:20.960000pt;}
.h2_c01036{height:42.722500pt;}
.h3_c01036{height:44.648750pt;}
.h5_c01036{height:47.491563pt;}
.h4_c01036{height:57.375000pt;}
.h0_c01036{height:1122.560000pt;}
.h1_c01036{height:1122.666667pt;}
.w2_c01036{width:112.000000pt;}
.w0_c01036{width:793.760000pt;}
.w1_c01036{width:794.000000pt;}
.x0_c01036{left:0.000000pt;}
.x3_c01036{left:113.472000pt;}
.x1_c01036{left:151.066667pt;}
.x5_c01036{left:237.306667pt;}
.x4_c01036{left:625.893333pt;}
.x2_c01036{left:658.213333pt;}
}





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

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01037;src:url('chunks/assets/font_2fcd1dcd0f1c8fa34c48c807.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01037;src:url('chunks/assets/font_a9b6190869aa11b532bb48ed.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01037;src:url('chunks/assets/font_fbbe466b1deab7f0b157dcb7.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.ls3_c01037{letter-spacing:-0.432000px;}
.ls1_c01037{letter-spacing:-0.144000px;}
.ls0_c01037{letter-spacing:0.000000px;}
.ls4_c01037{letter-spacing:0.144000px;}
.ls2_c01037{letter-spacing:0.288000px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01037{word-spacing:-19.872000px;}
.ws1_c01037{word-spacing:0.000000px;}
._a_c01037{margin-left:-4.897181px;}
._9_c01037{margin-left:-3.551976px;}
._1b_c01037{margin-left:-2.304000px;}
._0_c01037{margin-left:-1.258891px;}
._4_c01037{width:1.154218px;}
._3_c01037{width:2.182867px;}
._6_c01037{width:3.564072px;}
._2_c01037{width:5.074891px;}
._1_c01037{width:6.192000px;}
._5_c01037{width:8.928000px;}
._c_c01037{width:10.267589px;}
._d_c01037{width:11.736000px;}
._e_c01037{width:13.869806px;}
._1a_c01037{width:16.344000px;}
._15_c01037{width:17.496000px;}
._b_c01037{width:18.754891px;}
._14_c01037{width:21.024000px;}
._13_c01037{width:22.464000px;}
._f_c01037{width:24.048000px;}
._12_c01037{width:25.079976px;}
._11_c01037{width:26.616024px;}
._1c_c01037{width:27.704650px;}
._10_c01037{width:28.944000px;}
._8_c01037{width:30.344674px;}
._7_c01037{width:31.392000px;}
._19_c01037{width:63.072000px;}
._16_c01037{width:65.088000px;}
._17_c01037{width:66.574915px;}
._18_c01037{width:67.678819px;}
.fc0_c01037{color:rgb(0,0,0);}
.fs2_c01037{font-size:59.760000px;}
.fs0_c01037{font-size:66.240000px;}
.fs1_c01037{font-size:72.000000px;}
.y0_c01037{bottom:0.000000px;}
.y2f_c01037{bottom:12.045000px;}
.y3_c01037{bottom:57.636000px;}
.y2_c01037{bottom:77.796000px;}
.y2d_c01037{bottom:148.716000px;}
.y2e_c01037{bottom:161.325000px;}
.y2c_c01037{bottom:172.650000px;}
.y2b_c01037{bottom:196.410000px;}
.y2a_c01037{bottom:220.170000px;}
.y29_c01037{bottom:243.930000px;}
.y28_c01037{bottom:267.870000px;}
.y27_c01037{bottom:291.675000px;}
.y26_c01037{bottom:315.435000px;}
.y25_c01037{bottom:339.195000px;}
.y24_c01037{bottom:363.135000px;}
.y23_c01037{bottom:386.895000px;}
.y22_c01037{bottom:410.655000px;}
.y21_c01037{bottom:434.415000px;}
.y20_c01037{bottom:458.355000px;}
.y1f_c01037{bottom:482.115000px;}
.y1e_c01037{bottom:505.875000px;}
.y1d_c01037{bottom:529.635000px;}
.y1c_c01037{bottom:553.575000px;}
.y1b_c01037{bottom:577.365000px;}
.y1a_c01037{bottom:601.125000px;}
.y19_c01037{bottom:624.885000px;}
.y18_c01037{bottom:648.645000px;}
.y17_c01037{bottom:672.585000px;}
.y16_c01037{bottom:696.345000px;}
.y15_c01037{bottom:720.105000px;}
.y14_c01037{bottom:743.865000px;}
.y13_c01037{bottom:767.805000px;}
.y12_c01037{bottom:791.565000px;}
.y11_c01037{bottom:815.325000px;}
.y10_c01037{bottom:839.085000px;}
.yf_c01037{bottom:863.070000px;}
.ye_c01037{bottom:886.830000px;}
.yd_c01037{bottom:925.530000px;}
.yc_c01037{bottom:949.470000px;}
.yb_c01037{bottom:973.230000px;}
.ya_c01037{bottom:996.990000px;}
.y9_c01037{bottom:1020.750000px;}
.y8_c01037{bottom:1044.690000px;}
.y7_c01037{bottom:1068.450000px;}
.y6_c01037{bottom:1092.210000px;}
.y5_c01037{bottom:1115.970000px;}
.y4_c01037{bottom:1139.940000px;}
.y1_c01037{bottom:1194.660000px;}
.h5_c01037{height:25.920000px;}
.h2_c01037{height:48.062812px;}
.h3_c01037{height:50.229844px;}
.h6_c01037{height:53.428008px;}
.h4_c01037{height:64.546875px;}
.h0_c01037{height:1262.880000px;}
.h1_c01037{height:1263.000000px;}
.w2_c01037{width:266.970000px;}
.w0_c01037{width:892.980000px;}
.w1_c01037{width:893.250000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:127.656000px;}
.x2_c01037{left:497.820000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls3_c01037{letter-spacing:-0.384000pt;}
.ls1_c01037{letter-spacing:-0.128000pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ls4_c01037{letter-spacing:0.128000pt;}
.ls2_c01037{letter-spacing:0.256000pt;}
.ws0_c01037{word-spacing:-17.664000pt;}
.ws1_c01037{word-spacing:0.000000pt;}
._a_c01037{margin-left:-4.353050pt;}
._9_c01037{margin-left:-3.157312pt;}
._1b_c01037{margin-left:-2.048000pt;}
._0_c01037{margin-left:-1.119014pt;}
._4_c01037{width:1.025971pt;}
._3_c01037{width:1.940326pt;}
._6_c01037{width:3.168064pt;}
._2_c01037{width:4.511014pt;}
._1_c01037{width:5.504000pt;}
._5_c01037{width:7.936000pt;}
._c_c01037{width:9.126746pt;}
._d_c01037{width:10.432000pt;}
._e_c01037{width:12.328717pt;}
._1a_c01037{width:14.528000pt;}
._15_c01037{width:15.552000pt;}
._b_c01037{width:16.671014pt;}
._14_c01037{width:18.688000pt;}
._13_c01037{width:19.968000pt;}
._f_c01037{width:21.376000pt;}
._12_c01037{width:22.293312pt;}
._11_c01037{width:23.658688pt;}
._1c_c01037{width:24.626355pt;}
._10_c01037{width:25.728000pt;}
._8_c01037{width:26.973043pt;}
._7_c01037{width:27.904000pt;}
._19_c01037{width:56.064000pt;}
._16_c01037{width:57.856000pt;}
._17_c01037{width:59.177702pt;}
._18_c01037{width:60.158950pt;}
.fs2_c01037{font-size:53.120000pt;}
.fs0_c01037{font-size:58.880000pt;}
.fs1_c01037{font-size:64.000000pt;}
.y0_c01037{bottom:0.000000pt;}
.y2f_c01037{bottom:10.706667pt;}
.y3_c01037{bottom:51.232000pt;}
.y2_c01037{bottom:69.152000pt;}
.y2d_c01037{bottom:132.192000pt;}
.y2e_c01037{bottom:143.400000pt;}
.y2c_c01037{bottom:153.466667pt;}
.y2b_c01037{bottom:174.586667pt;}
.y2a_c01037{bottom:195.706667pt;}
.y29_c01037{bottom:216.826667pt;}
.y28_c01037{bottom:238.106667pt;}
.y27_c01037{bottom:259.266667pt;}
.y26_c01037{bottom:280.386667pt;}
.y25_c01037{bottom:301.506667pt;}
.y24_c01037{bottom:322.786667pt;}
.y23_c01037{bottom:343.906667pt;}
.y22_c01037{bottom:365.026667pt;}
.y21_c01037{bottom:386.146667pt;}
.y20_c01037{bottom:407.426667pt;}
.y1f_c01037{bottom:428.546667pt;}
.y1e_c01037{bottom:449.666667pt;}
.y1d_c01037{bottom:470.786667pt;}
.y1c_c01037{bottom:492.066667pt;}
.y1b_c01037{bottom:513.213333pt;}
.y1a_c01037{bottom:534.333333pt;}
.y19_c01037{bottom:555.453333pt;}
.y18_c01037{bottom:576.573333pt;}
.y17_c01037{bottom:597.853333pt;}
.y16_c01037{bottom:618.973333pt;}
.y15_c01037{bottom:640.093333pt;}
.y14_c01037{bottom:661.213333pt;}
.y13_c01037{bottom:682.493333pt;}
.y12_c01037{bottom:703.613333pt;}
.y11_c01037{bottom:724.733333pt;}
.y10_c01037{bottom:745.853333pt;}
.yf_c01037{bottom:767.173333pt;}
.ye_c01037{bottom:788.293333pt;}
.yd_c01037{bottom:822.693333pt;}
.yc_c01037{bottom:843.973333pt;}
.yb_c01037{bottom:865.093333pt;}
.ya_c01037{bottom:886.213333pt;}
.y9_c01037{bottom:907.333333pt;}
.y8_c01037{bottom:928.613333pt;}
.y7_c01037{bottom:949.733333pt;}
.y6_c01037{bottom:970.853333pt;}
.y5_c01037{bottom:991.973333pt;}
.y4_c01037{bottom:1013.280000pt;}
.y1_c01037{bottom:1061.920000pt;}
.h5_c01037{height:23.040000pt;}
.h2_c01037{height:42.722500pt;}
.h3_c01037{height:44.648750pt;}
.h6_c01037{height:47.491563pt;}
.h4_c01037{height:57.375000pt;}
.h0_c01037{height:1122.560000pt;}
.h1_c01037{height:1122.666667pt;}
.w2_c01037{width:237.306667pt;}
.w0_c01037{width:793.760000pt;}
.w1_c01037{width:794.000000pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:113.472000pt;}
.x2_c01037{left:442.506667pt;}
}





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

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01038;src:url('chunks/assets/font_e1e26edcc9c1d50d01cf7600.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01038;src:url('chunks/assets/font_ca990d0cdbe8a247fe460864.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01038;src:url('chunks/assets/font_4dcf5de2aea353ffeb7d6275.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls1_c01038{letter-spacing:-0.432000px;}
.ls2_c01038{letter-spacing:-0.144000px;}
.ls0_c01038{letter-spacing:0.000000px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01038{word-spacing:-19.872000px;}
.ws1_c01038{word-spacing:0.000000px;}
._11_c01038{margin-left:-3.456000px;}
._0_c01038{margin-left:-1.390841px;}
._4_c01038{width:1.104048px;}
._3_c01038{width:2.567952px;}
._5_c01038{width:3.732120px;}
._6_c01038{width:4.763880px;}
._e_c01038{width:5.976000px;}
._d_c01038{width:7.128000px;}
._8_c01038{width:9.648000px;}
._7_c01038{width:11.880000px;}
._12_c01038{width:13.968000px;}
._13_c01038{width:16.632000px;}
._14_c01038{width:17.784000px;}
._17_c01038{width:19.008000px;}
._a_c01038{width:21.744000px;}
._2_c01038{width:22.980024px;}
._1_c01038{width:24.120000px;}
._9_c01038{width:26.712000px;}
._10_c01038{width:28.080000px;}
._f_c01038{width:29.088000px;}
._c_c01038{width:31.176000px;}
._b_c01038{width:32.184000px;}
._16_c01038{width:36.216000px;}
._15_c01038{width:56.376000px;}
.fc0_c01038{color:rgb(0,0,0);}
.fs2_c01038{font-size:59.760000px;}
.fs0_c01038{font-size:66.240000px;}
.fs1_c01038{font-size:72.000000px;}
.y0_c01038{bottom:0.000000px;}
.y31_c01038{bottom:18.390000px;}
.y2f_c01038{bottom:37.800000px;}
.y3_c01038{bottom:57.636000px;}
.y2_c01038{bottom:77.796000px;}
.y2d_c01038{bottom:118.836000px;}
.y2c_c01038{bottom:142.596000px;}
.y2b_c01038{bottom:166.350000px;}
.y2a_c01038{bottom:190.290000px;}
.y29_c01038{bottom:214.050000px;}
.y28_c01038{bottom:237.810000px;}
.y30_c01038{bottom:264.645000px;}
.y27_c01038{bottom:276.690000px;}
.y26_c01038{bottom:300.495000px;}
.y25_c01038{bottom:324.255000px;}
.y24_c01038{bottom:348.015000px;}
.y23_c01038{bottom:371.955000px;}
.y22_c01038{bottom:395.715000px;}
.y21_c01038{bottom:419.475000px;}
.y20_c01038{bottom:443.235000px;}
.y1f_c01038{bottom:466.995000px;}
.y1e_c01038{bottom:490.935000px;}
.y1d_c01038{bottom:514.695000px;}
.y1c_c01038{bottom:538.455000px;}
.y1b_c01038{bottom:562.215000px;}
.y1a_c01038{bottom:586.185000px;}
.y19_c01038{bottom:609.945000px;}
.y18_c01038{bottom:633.705000px;}
.y17_c01038{bottom:672.585000px;}
.y2e_c01038{bottom:685.185000px;}
.y16_c01038{bottom:696.345000px;}
.y15_c01038{bottom:720.105000px;}
.y14_c01038{bottom:743.865000px;}
.y13_c01038{bottom:767.805000px;}
.y12_c01038{bottom:791.565000px;}
.y11_c01038{bottom:815.325000px;}
.y10_c01038{bottom:839.085000px;}
.yf_c01038{bottom:863.070000px;}
.ye_c01038{bottom:886.830000px;}
.yd_c01038{bottom:910.590000px;}
.yc_c01038{bottom:934.350000px;}
.yb_c01038{bottom:958.290000px;}
.ya_c01038{bottom:982.050000px;}
.y9_c01038{bottom:1005.810000px;}
.y8_c01038{bottom:1029.570000px;}
.y7_c01038{bottom:1053.510000px;}
.y6_c01038{bottom:1077.270000px;}
.y5_c01038{bottom:1115.970000px;}
.y4_c01038{bottom:1139.940000px;}
.y1_c01038{bottom:1194.660000px;}
.h7_c01038{height:32.242500px;}
.h2_c01038{height:48.062812px;}
.h3_c01038{height:50.229844px;}
.h5_c01038{height:51.660000px;}
.h6_c01038{height:53.428008px;}
.h4_c01038{height:64.546875px;}
.h0_c01038{height:1262.880000px;}
.h1_c01038{height:1263.000000px;}
.w3_c01038{width:241.575000px;}
.w2_c01038{width:247.710000px;}
.w0_c01038{width:892.980000px;}
.w1_c01038{width:893.250000px;}
.x0_c01038{left:0.000000px;}
.x3_c01038{left:127.656000px;}
.x1_c01038{left:169.950000px;}
.x4_c01038{left:380.775000px;}
.x5_c01038{left:388.875000px;}
.x6_c01038{left:519.600000px;}
.x2_c01038{left:740.490000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls1_c01038{letter-spacing:-0.384000pt;}
.ls2_c01038{letter-spacing:-0.128000pt;}
.ls0_c01038{letter-spacing:0.000000pt;}
.ws0_c01038{word-spacing:-17.664000pt;}
.ws1_c01038{word-spacing:0.000000pt;}
._11_c01038{margin-left:-3.072000pt;}
._0_c01038{margin-left:-1.236303pt;}
._4_c01038{width:0.981376pt;}
._3_c01038{width:2.282624pt;}
._5_c01038{width:3.317440pt;}
._6_c01038{width:4.234560pt;}
._e_c01038{width:5.312000pt;}
._d_c01038{width:6.336000pt;}
._8_c01038{width:8.576000pt;}
._7_c01038{width:10.560000pt;}
._12_c01038{width:12.416000pt;}
._13_c01038{width:14.784000pt;}
._14_c01038{width:15.808000pt;}
._17_c01038{width:16.896000pt;}
._a_c01038{width:19.328000pt;}
._2_c01038{width:20.426688pt;}
._1_c01038{width:21.440000pt;}
._9_c01038{width:23.744000pt;}
._10_c01038{width:24.960000pt;}
._f_c01038{width:25.856000pt;}
._c_c01038{width:27.712000pt;}
._b_c01038{width:28.608000pt;}
._16_c01038{width:32.192000pt;}
._15_c01038{width:50.112000pt;}
.fs2_c01038{font-size:53.120000pt;}
.fs0_c01038{font-size:58.880000pt;}
.fs1_c01038{font-size:64.000000pt;}
.y0_c01038{bottom:0.000000pt;}
.y31_c01038{bottom:16.346667pt;}
.y2f_c01038{bottom:33.600000pt;}
.y3_c01038{bottom:51.232000pt;}
.y2_c01038{bottom:69.152000pt;}
.y2d_c01038{bottom:105.632000pt;}
.y2c_c01038{bottom:126.752000pt;}
.y2b_c01038{bottom:147.866667pt;}
.y2a_c01038{bottom:169.146667pt;}
.y29_c01038{bottom:190.266667pt;}
.y28_c01038{bottom:211.386667pt;}
.y30_c01038{bottom:235.240000pt;}
.y27_c01038{bottom:245.946667pt;}
.y26_c01038{bottom:267.106667pt;}
.y25_c01038{bottom:288.226667pt;}
.y24_c01038{bottom:309.346667pt;}
.y23_c01038{bottom:330.626667pt;}
.y22_c01038{bottom:351.746667pt;}
.y21_c01038{bottom:372.866667pt;}
.y20_c01038{bottom:393.986667pt;}
.y1f_c01038{bottom:415.106667pt;}
.y1e_c01038{bottom:436.386667pt;}
.y1d_c01038{bottom:457.506667pt;}
.y1c_c01038{bottom:478.626667pt;}
.y1b_c01038{bottom:499.746667pt;}
.y1a_c01038{bottom:521.053333pt;}
.y19_c01038{bottom:542.173333pt;}
.y18_c01038{bottom:563.293333pt;}
.y17_c01038{bottom:597.853333pt;}
.y2e_c01038{bottom:609.053333pt;}
.y16_c01038{bottom:618.973333pt;}
.y15_c01038{bottom:640.093333pt;}
.y14_c01038{bottom:661.213333pt;}
.y13_c01038{bottom:682.493333pt;}
.y12_c01038{bottom:703.613333pt;}
.y11_c01038{bottom:724.733333pt;}
.y10_c01038{bottom:745.853333pt;}
.yf_c01038{bottom:767.173333pt;}
.ye_c01038{bottom:788.293333pt;}
.yd_c01038{bottom:809.413333pt;}
.yc_c01038{bottom:830.533333pt;}
.yb_c01038{bottom:851.813333pt;}
.ya_c01038{bottom:872.933333pt;}
.y9_c01038{bottom:894.053333pt;}
.y8_c01038{bottom:915.173333pt;}
.y7_c01038{bottom:936.453333pt;}
.y6_c01038{bottom:957.573333pt;}
.y5_c01038{bottom:991.973333pt;}
.y4_c01038{bottom:1013.280000pt;}
.y1_c01038{bottom:1061.920000pt;}
.h7_c01038{height:28.660000pt;}
.h2_c01038{height:42.722500pt;}
.h3_c01038{height:44.648750pt;}
.h5_c01038{height:45.920000pt;}
.h6_c01038{height:47.491563pt;}
.h4_c01038{height:57.375000pt;}
.h0_c01038{height:1122.560000pt;}
.h1_c01038{height:1122.666667pt;}
.w3_c01038{width:214.733333pt;}
.w2_c01038{width:220.186667pt;}
.w0_c01038{width:793.760000pt;}
.w1_c01038{width:794.000000pt;}
.x0_c01038{left:0.000000pt;}
.x3_c01038{left:113.472000pt;}
.x1_c01038{left:151.066667pt;}
.x4_c01038{left:338.466667pt;}
.x5_c01038{left:345.666667pt;}
.x6_c01038{left:461.866667pt;}
.x2_c01038{left:658.213333pt;}
}





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

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01039;src:url('chunks/assets/font_e1e26edcc9c1d50d01cf7600.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01039;src:url('chunks/assets/font_f5695d286c71606f00316325.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01039;src:url('chunks/assets/font_25c9f51141a89a47a3e76e9d.woff2')format("woff");}.ff4_c01039{font-family:ff4_c01039;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.ls2_c01039{letter-spacing:-0.576000px;}
.ls3_c01039{letter-spacing:-0.053400px;}
.ls0_c01039{letter-spacing:0.000000px;}
.ls1_c01039{letter-spacing:0.288000px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01039{word-spacing:-20.304000px;}
.ws1_c01039{word-spacing:0.000000px;}
._e_c01039{margin-left:-3.672000px;}
._0_c01039{margin-left:-1.258891px;}
._2_c01039{width:1.236024px;}
._7_c01039{width:2.547302px;}
._9_c01039{width:4.392000px;}
._8_c01039{width:5.544000px;}
._f_c01039{width:6.559589px;}
._4_c01039{width:7.799976px;}
._3_c01039{width:9.336024px;}
._c_c01039{width:10.872000px;}
._d_c01039{width:11.928024px;}
._1_c01039{width:13.824000px;}
._b_c01039{width:14.971565px;}
._a_c01039{width:16.056000px;}
._6_c01039{width:23.722891px;}
._5_c01039{width:24.912000px;}
.fc0_c01039{color:rgb(0,0,0);}
.fs2_c01039{font-size:59.760000px;}
.fs0_c01039{font-size:66.240000px;}
.fs1_c01039{font-size:72.000000px;}
.y0_c01039{bottom:0.000000px;}
.y3_c01039{bottom:57.636000px;}
.y2_c01039{bottom:77.796000px;}
.y19_c01039{bottom:226.470000px;}
.y18_c01039{bottom:250.410000px;}
.y17_c01039{bottom:274.170000px;}
.y16_c01039{bottom:297.975000px;}
.y15_c01039{bottom:321.735000px;}
.y14_c01039{bottom:345.675000px;}
.y13_c01039{bottom:369.435000px;}
.y12_c01039{bottom:404.535000px;}
.y11_c01039{bottom:436.575000px;}
.y10_c01039{bottom:839.085000px;}
.yf_c01039{bottom:863.070000px;}
.ye_c01039{bottom:886.830000px;}
.yd_c01039{bottom:910.590000px;}
.yc_c01039{bottom:934.350000px;}
.yb_c01039{bottom:958.290000px;}
.ya_c01039{bottom:982.050000px;}
.y9_c01039{bottom:1005.810000px;}
.y8_c01039{bottom:1044.690000px;}
.y7_c01039{bottom:1068.450000px;}
.y6_c01039{bottom:1092.210000px;}
.y5_c01039{bottom:1115.970000px;}
.y4_c01039{bottom:1139.940000px;}
.y1_c01039{bottom:1194.660000px;}
.h2_c01039{height:48.062812px;}
.h3_c01039{height:50.229844px;}
.h5_c01039{height:53.428008px;}
.h4_c01039{height:64.546875px;}
.h0_c01039{height:1262.880000px;}
.h1_c01039{height:1263.000000px;}
.w0_c01039{width:892.980000px;}
.w1_c01039{width:893.250000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:127.656000px;}
.x2_c01039{left:704.130000px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls2_c01039{letter-spacing:-0.512000pt;}
.ls3_c01039{letter-spacing:-0.047467pt;}
.ls0_c01039{letter-spacing:0.000000pt;}
.ls1_c01039{letter-spacing:0.256000pt;}
.ws0_c01039{word-spacing:-18.048000pt;}
.ws1_c01039{word-spacing:0.000000pt;}
._e_c01039{margin-left:-3.264000pt;}
._0_c01039{margin-left:-1.119014pt;}
._2_c01039{width:1.098688pt;}
._7_c01039{width:2.264269pt;}
._9_c01039{width:3.904000pt;}
._8_c01039{width:4.928000pt;}
._f_c01039{width:5.830746pt;}
._4_c01039{width:6.933312pt;}
._3_c01039{width:8.298688pt;}
._c_c01039{width:9.664000pt;}
._d_c01039{width:10.602688pt;}
._1_c01039{width:12.288000pt;}
._b_c01039{width:13.308058pt;}
._a_c01039{width:14.272000pt;}
._6_c01039{width:21.087014pt;}
._5_c01039{width:22.144000pt;}
.fs2_c01039{font-size:53.120000pt;}
.fs0_c01039{font-size:58.880000pt;}
.fs1_c01039{font-size:64.000000pt;}
.y0_c01039{bottom:0.000000pt;}
.y3_c01039{bottom:51.232000pt;}
.y2_c01039{bottom:69.152000pt;}
.y19_c01039{bottom:201.306667pt;}
.y18_c01039{bottom:222.586667pt;}
.y17_c01039{bottom:243.706667pt;}
.y16_c01039{bottom:264.866667pt;}
.y15_c01039{bottom:285.986667pt;}
.y14_c01039{bottom:307.266667pt;}
.y13_c01039{bottom:328.386667pt;}
.y12_c01039{bottom:359.586667pt;}
.y11_c01039{bottom:388.066667pt;}
.y10_c01039{bottom:745.853333pt;}
.yf_c01039{bottom:767.173333pt;}
.ye_c01039{bottom:788.293333pt;}
.yd_c01039{bottom:809.413333pt;}
.yc_c01039{bottom:830.533333pt;}
.yb_c01039{bottom:851.813333pt;}
.ya_c01039{bottom:872.933333pt;}
.y9_c01039{bottom:894.053333pt;}
.y8_c01039{bottom:928.613333pt;}
.y7_c01039{bottom:949.733333pt;}
.y6_c01039{bottom:970.853333pt;}
.y5_c01039{bottom:991.973333pt;}
.y4_c01039{bottom:1013.280000pt;}
.y1_c01039{bottom:1061.920000pt;}
.h2_c01039{height:42.722500pt;}
.h3_c01039{height:44.648750pt;}
.h5_c01039{height:47.491563pt;}
.h4_c01039{height:57.375000pt;}
.h0_c01039{height:1122.560000pt;}
.h1_c01039{height:1122.666667pt;}
.w0_c01039{width:793.760000pt;}
.w1_c01039{width:794.000000pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:113.472000pt;}
.x2_c01039{left:625.893333pt;}
}





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

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01040;src:url('chunks/assets/font_dd6eeb740ea8816b6ecd86a9.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01040;src:url('chunks/assets/font_ca63c4e4beb5df783c2e847d.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01040;src:url('chunks/assets/font_619a18cf8ad626d2c7d28e90.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls5_c01040{letter-spacing:-0.720000px;}
.ls4_c01040{letter-spacing:-0.576000px;}
.ls6_c01040{letter-spacing:-0.432000px;}
.ls1_c01040{letter-spacing:0.000000px;}
.ls3_c01040{letter-spacing:0.144000px;}
.ls2_c01040{letter-spacing:0.288000px;}
.ls0_c01040{letter-spacing:16.704000px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01040{word-spacing:-20.304000px;}
.ws1_c01040{word-spacing:0.000000px;}
._8_c01040{margin-left:-4.725025px;}
._7_c01040{margin-left:-3.719302px;}
._1_c01040{margin-left:-2.406928px;}
._0_c01040{margin-left:-1.390841px;}
._2_c01040{width:1.102841px;}
._9_c01040{width:2.137159px;}
._d_c01040{width:3.550841px;}
._a_c01040{width:4.824000px;}
._b_c01040{width:5.832000px;}
._f_c01040{width:8.640000px;}
._4_c01040{width:10.728000px;}
._3_c01040{width:11.808000px;}
._c_c01040{width:13.152024px;}
._6_c01040{width:16.632000px;}
._5_c01040{width:17.640000px;}
._e_c01040{width:18.792000px;}
._12_c01040{width:21.694841px;}
._11_c01040{width:22.752000px;}
._15_c01040{width:24.348024px;}
._19_c01040{width:29.016000px;}
._13_c01040{width:31.464000px;}
._18_c01040{width:32.520024px;}
._16_c01040{width:38.736000px;}
._14_c01040{width:51.048000px;}
._17_c01040{width:55.656000px;}
._10_c01040{width:57.240000px;}
._1a_c01040{width:63.000000px;}
.fc0_c01040{color:rgb(0,0,0);}
.fs2_c01040{font-size:59.760000px;}
.fs0_c01040{font-size:66.240000px;}
.fs1_c01040{font-size:72.000000px;}
.y0_c01040{bottom:0.000000px;}
.y31_c01040{bottom:8.631000px;}
.y3_c01040{bottom:57.636000px;}
.y2_c01040{bottom:77.796000px;}
.y2f_c01040{bottom:116.136000px;}
.y30_c01040{bottom:124.245000px;}
.y2e_c01040{bottom:140.076000px;}
.y2d_c01040{bottom:163.830000px;}
.y2c_c01040{bottom:187.590000px;}
.y2b_c01040{bottom:211.350000px;}
.y2a_c01040{bottom:235.290000px;}
.y29_c01040{bottom:259.050000px;}
.y28_c01040{bottom:282.855000px;}
.y27_c01040{bottom:306.615000px;}
.y26_c01040{bottom:330.375000px;}
.y25_c01040{bottom:354.315000px;}
.y24_c01040{bottom:378.075000px;}
.y23_c01040{bottom:401.835000px;}
.y22_c01040{bottom:425.595000px;}
.y21_c01040{bottom:449.535000px;}
.y20_c01040{bottom:473.295000px;}
.y1f_c01040{bottom:497.055000px;}
.y1e_c01040{bottom:520.815000px;}
.y1d_c01040{bottom:544.755000px;}
.y1c_c01040{bottom:568.545000px;}
.y1b_c01040{bottom:592.305000px;}
.y1a_c01040{bottom:616.065000px;}
.y19_c01040{bottom:640.005000px;}
.y18_c01040{bottom:663.765000px;}
.y17_c01040{bottom:687.525000px;}
.y16_c01040{bottom:711.285000px;}
.y15_c01040{bottom:735.225000px;}
.y14_c01040{bottom:758.985000px;}
.y13_c01040{bottom:782.925000px;}
.y12_c01040{bottom:806.685000px;}
.y11_c01040{bottom:830.265000px;}
.y10_c01040{bottom:854.250000px;}
.yf_c01040{bottom:878.010000px;}
.ye_c01040{bottom:901.770000px;}
.yd_c01040{bottom:925.530000px;}
.yc_c01040{bottom:949.470000px;}
.yb_c01040{bottom:973.230000px;}
.ya_c01040{bottom:996.990000px;}
.y9_c01040{bottom:1020.750000px;}
.y8_c01040{bottom:1044.690000px;}
.y7_c01040{bottom:1068.450000px;}
.y6_c01040{bottom:1092.210000px;}
.y5_c01040{bottom:1115.970000px;}
.y4_c01040{bottom:1139.940000px;}
.y1_c01040{bottom:1194.660000px;}
.h5_c01040{height:22.500000px;}
.h2_c01040{height:48.062812px;}
.h3_c01040{height:50.229844px;}
.h6_c01040{height:53.428008px;}
.h4_c01040{height:64.546875px;}
.h0_c01040{height:1262.880000px;}
.h1_c01040{height:1263.000000px;}
.w2_c01040{width:338.475000px;}
.w0_c01040{width:892.980000px;}
.w1_c01040{width:893.250000px;}
.x0_c01040{left:0.000000px;}
.x3_c01040{left:127.656000px;}
.x1_c01040{left:169.950000px;}
.x4_c01040{left:423.075000px;}
.x2_c01040{left:740.490000px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls5_c01040{letter-spacing:-0.640000pt;}
.ls4_c01040{letter-spacing:-0.512000pt;}
.ls6_c01040{letter-spacing:-0.384000pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.ls3_c01040{letter-spacing:0.128000pt;}
.ls2_c01040{letter-spacing:0.256000pt;}
.ls0_c01040{letter-spacing:14.848000pt;}
.ws0_c01040{word-spacing:-18.048000pt;}
.ws1_c01040{word-spacing:0.000000pt;}
._8_c01040{margin-left:-4.200022pt;}
._7_c01040{margin-left:-3.306046pt;}
._1_c01040{margin-left:-2.139492pt;}
._0_c01040{margin-left:-1.236303pt;}
._2_c01040{width:0.980303pt;}
._9_c01040{width:1.899697pt;}
._d_c01040{width:3.156303pt;}
._a_c01040{width:4.288000pt;}
._b_c01040{width:5.184000pt;}
._f_c01040{width:7.680000pt;}
._4_c01040{width:9.536000pt;}
._3_c01040{width:10.496000pt;}
._c_c01040{width:11.690688pt;}
._6_c01040{width:14.784000pt;}
._5_c01040{width:15.680000pt;}
._e_c01040{width:16.704000pt;}
._12_c01040{width:19.284303pt;}
._11_c01040{width:20.224000pt;}
._15_c01040{width:21.642688pt;}
._19_c01040{width:25.792000pt;}
._13_c01040{width:27.968000pt;}
._18_c01040{width:28.906688pt;}
._16_c01040{width:34.432000pt;}
._14_c01040{width:45.376000pt;}
._17_c01040{width:49.472000pt;}
._10_c01040{width:50.880000pt;}
._1a_c01040{width:56.000000pt;}
.fs2_c01040{font-size:53.120000pt;}
.fs0_c01040{font-size:58.880000pt;}
.fs1_c01040{font-size:64.000000pt;}
.y0_c01040{bottom:0.000000pt;}
.y31_c01040{bottom:7.672000pt;}
.y3_c01040{bottom:51.232000pt;}
.y2_c01040{bottom:69.152000pt;}
.y2f_c01040{bottom:103.232000pt;}
.y30_c01040{bottom:110.440000pt;}
.y2e_c01040{bottom:124.512000pt;}
.y2d_c01040{bottom:145.626667pt;}
.y2c_c01040{bottom:166.746667pt;}
.y2b_c01040{bottom:187.866667pt;}
.y2a_c01040{bottom:209.146667pt;}
.y29_c01040{bottom:230.266667pt;}
.y28_c01040{bottom:251.426667pt;}
.y27_c01040{bottom:272.546667pt;}
.y26_c01040{bottom:293.666667pt;}
.y25_c01040{bottom:314.946667pt;}
.y24_c01040{bottom:336.066667pt;}
.y23_c01040{bottom:357.186667pt;}
.y22_c01040{bottom:378.306667pt;}
.y21_c01040{bottom:399.586667pt;}
.y20_c01040{bottom:420.706667pt;}
.y1f_c01040{bottom:441.826667pt;}
.y1e_c01040{bottom:462.946667pt;}
.y1d_c01040{bottom:484.226667pt;}
.y1c_c01040{bottom:505.373333pt;}
.y1b_c01040{bottom:526.493333pt;}
.y1a_c01040{bottom:547.613333pt;}
.y19_c01040{bottom:568.893333pt;}
.y18_c01040{bottom:590.013333pt;}
.y17_c01040{bottom:611.133333pt;}
.y16_c01040{bottom:632.253333pt;}
.y15_c01040{bottom:653.533333pt;}
.y14_c01040{bottom:674.653333pt;}
.y13_c01040{bottom:695.933333pt;}
.y12_c01040{bottom:717.053333pt;}
.y11_c01040{bottom:738.013333pt;}
.y10_c01040{bottom:759.333333pt;}
.yf_c01040{bottom:780.453333pt;}
.ye_c01040{bottom:801.573333pt;}
.yd_c01040{bottom:822.693333pt;}
.yc_c01040{bottom:843.973333pt;}
.yb_c01040{bottom:865.093333pt;}
.ya_c01040{bottom:886.213333pt;}
.y9_c01040{bottom:907.333333pt;}
.y8_c01040{bottom:928.613333pt;}
.y7_c01040{bottom:949.733333pt;}
.y6_c01040{bottom:970.853333pt;}
.y5_c01040{bottom:991.973333pt;}
.y4_c01040{bottom:1013.280000pt;}
.y1_c01040{bottom:1061.920000pt;}
.h5_c01040{height:20.000000pt;}
.h2_c01040{height:42.722500pt;}
.h3_c01040{height:44.648750pt;}
.h6_c01040{height:47.491563pt;}
.h4_c01040{height:57.375000pt;}
.h0_c01040{height:1122.560000pt;}
.h1_c01040{height:1122.666667pt;}
.w2_c01040{width:300.866667pt;}
.w0_c01040{width:793.760000pt;}
.w1_c01040{width:794.000000pt;}
.x0_c01040{left:0.000000pt;}
.x3_c01040{left:113.472000pt;}
.x1_c01040{left:151.066667pt;}
.x4_c01040{left:376.066667pt;}
.x2_c01040{left:658.213333pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01041;src:url('chunks/assets/font_22357073245a924abd5aa32f.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01041;src:url('chunks/assets/font_89b83b58905932089312a121.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;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:ff5_c01041;src:url('chunks/assets/font_83d41a58ba0c8e51f5d8cfa6.woff2')format("woff");}.ff5_c01041{font-family:ff5_c01041;line-height:1.104492;font-style:normal;font-weight: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_c01041;src:url('chunks/assets/font_05c3df74b5b8ce8b6124d2e6.woff2')format("woff");}.ff6_c01041{font-family:ff6_c01041;line-height:1.575000;font-style:normal;font-weight: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_c01041;src:url('chunks/assets/font_3789407316e03c204d905e05.woff2')format("woff");}.ff7_c01041{font-family:ff7_c01041;line-height:1.211914;font-style:normal;font-weight: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_c01041;src:url('chunks/assets/font_463d6043ec1bd63e4a64eaef.woff2')format("woff");}.ff8_c01041{font-family:ff8_c01041;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls4_c01041{letter-spacing:-0.432000px;}
.ls7_c01041{letter-spacing:-0.272400px;}
.ls8_c01041{letter-spacing:-0.247800px;}
.ls3_c01041{letter-spacing:-0.181200px;}
.ls9_c01041{letter-spacing:-0.152400px;}
.ls2_c01041{letter-spacing:0.000000px;}
.ls5_c01041{letter-spacing:0.144000px;}
.ls6_c01041{letter-spacing:0.150000px;}
.ls1_c01041{letter-spacing:0.152400px;}
.ls0_c01041{letter-spacing:10.974240px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01041{word-spacing:-21.187920px;}
.ws1_c01041{word-spacing:-21.035520px;}
.ws0_c01041{word-spacing:-20.016000px;}
.ws3_c01041{word-spacing:0.000000px;}
._e_c01041{margin-left:-4.193367px;}
._4_c01041{margin-left:-3.024000px;}
._0_c01041{margin-left:-1.258891px;}
._1_c01041{width:1.205323px;}
._3_c01041{width:2.525813px;}
._9_c01041{width:3.718301px;}
._c_c01041{width:5.832000px;}
._6_c01041{width:6.840000px;}
._5_c01041{width:8.064000px;}
._b_c01041{width:11.952000px;}
._a_c01041{width:13.104000px;}
._d_c01041{width:14.451744px;}
._8_c01041{width:15.730891px;}
._7_c01041{width:17.064000px;}
._2_c01041{width:23.112000px;}
.fc0_c01041{color:rgb(0,0,0);}
.fs4_c01041{font-size:38.880000px;}
.fs2_c01041{font-size:48.240000px;}
.fs5_c01041{font-size:59.760000px;}
.fs0_c01041{font-size:66.240000px;}
.fs1_c01041{font-size:72.000000px;}
.fs3_c01041{font-size:84.240000px;}
.y0_c01041{bottom:0.000000px;}
.y3_c01041{bottom:57.636000px;}
.y2_c01041{bottom:77.796000px;}
.y28_c01041{bottom:109.296000px;}
.y27_c01041{bottom:127.476000px;}
.y26_c01041{bottom:132.696000px;}
.y25_c01041{bottom:145.656000px;}
.y24_c01041{bottom:164.010000px;}
.y23_c01041{bottom:183.090000px;}
.y22_c01041{bottom:188.310000px;}
.y21_c01041{bottom:202.890000px;}
.y1f_c01041{bottom:460.695000px;}
.y20_c01041{bottom:466.635000px;}
.y1e_c01041{bottom:484.455000px;}
.y1d_c01041{bottom:508.395000px;}
.y1c_c01041{bottom:532.155000px;}
.y1b_c01041{bottom:555.735000px;}
.y1a_c01041{bottom:594.645000px;}
.y19_c01041{bottom:618.405000px;}
.y18_c01041{bottom:642.165000px;}
.y17_c01041{bottom:666.105000px;}
.y16_c01041{bottom:689.865000px;}
.y15_c01041{bottom:713.625000px;}
.y14_c01041{bottom:737.385000px;}
.y13_c01041{bottom:761.325000px;}
.y12_c01041{bottom:785.085000px;}
.y11_c01041{bottom:808.845000px;}
.y10_c01041{bottom:832.605000px;}
.yf_c01041{bottom:856.410000px;}
.ye_c01041{bottom:877.830000px;}
.yd_c01041{bottom:901.770000px;}
.yc_c01041{bottom:943.170000px;}
.yb_c01041{bottom:982.050000px;}
.ya_c01041{bottom:1005.810000px;}
.y9_c01041{bottom:1029.570000px;}
.y8_c01041{bottom:1053.510000px;}
.y7_c01041{bottom:1077.270000px;}
.y5_c01041{bottom:1115.970000px;}
.y6_c01041{bottom:1121.910000px;}
.y4_c01041{bottom:1139.940000px;}
.y1_c01041{bottom:1194.660000px;}
.h8_c01041{height:29.482734px;}
.hb_c01041{height:41.484960px;}
.h6_c01041{height:43.246406px;}
.h2_c01041{height:48.062812px;}
.h3_c01041{height:50.229844px;}
.ha_c01041{height:59.789180px;}
.h9_c01041{height:63.763920px;}
.h4_c01041{height:64.546875px;}
.h7_c01041{height:87.859687px;}
.h5_c01041{height:1262.865000px;}
.h0_c01041{height:1262.880000px;}
.h1_c01041{height:1263.000000px;}
.w2_c01041{width:892.957500px;}
.w0_c01041{width:892.980000px;}
.w1_c01041{width:893.250000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:127.656000px;}
.x7_c01041{left:142.236000px;}
.x8_c01041{left:146.016000px;}
.x2_c01041{left:259.747500px;}
.x3_c01041{left:279.750000px;}
.x6_c01041{left:343.695000px;}
.x4_c01041{left:623.062500px;}
.x5_c01041{left:643.065000px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls4_c01041{letter-spacing:-0.384000pt;}
.ls7_c01041{letter-spacing:-0.242133pt;}
.ls8_c01041{letter-spacing:-0.220267pt;}
.ls3_c01041{letter-spacing:-0.161067pt;}
.ls9_c01041{letter-spacing:-0.135467pt;}
.ls2_c01041{letter-spacing:0.000000pt;}
.ls5_c01041{letter-spacing:0.128000pt;}
.ls6_c01041{letter-spacing:0.133333pt;}
.ls1_c01041{letter-spacing:0.135467pt;}
.ls0_c01041{letter-spacing:9.754880pt;}
.ws2_c01041{word-spacing:-18.833707pt;}
.ws1_c01041{word-spacing:-18.698240pt;}
.ws0_c01041{word-spacing:-17.792000pt;}
.ws3_c01041{word-spacing:0.000000pt;}
._e_c01041{margin-left:-3.727438pt;}
._4_c01041{margin-left:-2.688000pt;}
._0_c01041{margin-left:-1.119014pt;}
._1_c01041{width:1.071398pt;}
._3_c01041{width:2.245167pt;}
._9_c01041{width:3.305156pt;}
._c_c01041{width:5.184000pt;}
._6_c01041{width:6.080000pt;}
._5_c01041{width:7.168000pt;}
._b_c01041{width:10.624000pt;}
._a_c01041{width:11.648000pt;}
._d_c01041{width:12.845994pt;}
._8_c01041{width:13.983014pt;}
._7_c01041{width:15.168000pt;}
._2_c01041{width:20.544000pt;}
.fs4_c01041{font-size:34.560000pt;}
.fs2_c01041{font-size:42.880000pt;}
.fs5_c01041{font-size:53.120000pt;}
.fs0_c01041{font-size:58.880000pt;}
.fs1_c01041{font-size:64.000000pt;}
.fs3_c01041{font-size:74.880000pt;}
.y0_c01041{bottom:0.000000pt;}
.y3_c01041{bottom:51.232000pt;}
.y2_c01041{bottom:69.152000pt;}
.y28_c01041{bottom:97.152000pt;}
.y27_c01041{bottom:113.312000pt;}
.y26_c01041{bottom:117.952000pt;}
.y25_c01041{bottom:129.472000pt;}
.y24_c01041{bottom:145.786667pt;}
.y23_c01041{bottom:162.746667pt;}
.y22_c01041{bottom:167.386667pt;}
.y21_c01041{bottom:180.346667pt;}
.y1f_c01041{bottom:409.506667pt;}
.y20_c01041{bottom:414.786667pt;}
.y1e_c01041{bottom:430.626667pt;}
.y1d_c01041{bottom:451.906667pt;}
.y1c_c01041{bottom:473.026667pt;}
.y1b_c01041{bottom:493.986667pt;}
.y1a_c01041{bottom:528.573333pt;}
.y19_c01041{bottom:549.693333pt;}
.y18_c01041{bottom:570.813333pt;}
.y17_c01041{bottom:592.093333pt;}
.y16_c01041{bottom:613.213333pt;}
.y15_c01041{bottom:634.333333pt;}
.y14_c01041{bottom:655.453333pt;}
.y13_c01041{bottom:676.733333pt;}
.y12_c01041{bottom:697.853333pt;}
.y11_c01041{bottom:718.973333pt;}
.y10_c01041{bottom:740.093333pt;}
.yf_c01041{bottom:761.253333pt;}
.ye_c01041{bottom:780.293333pt;}
.yd_c01041{bottom:801.573333pt;}
.yc_c01041{bottom:838.373333pt;}
.yb_c01041{bottom:872.933333pt;}
.ya_c01041{bottom:894.053333pt;}
.y9_c01041{bottom:915.173333pt;}
.y8_c01041{bottom:936.453333pt;}
.y7_c01041{bottom:957.573333pt;}
.y5_c01041{bottom:991.973333pt;}
.y6_c01041{bottom:997.253333pt;}
.y4_c01041{bottom:1013.280000pt;}
.y1_c01041{bottom:1061.920000pt;}
.h8_c01041{height:26.206875pt;}
.hb_c01041{height:36.875520pt;}
.h6_c01041{height:38.441250pt;}
.h2_c01041{height:42.722500pt;}
.h3_c01041{height:44.648750pt;}
.ha_c01041{height:53.145938pt;}
.h9_c01041{height:56.679040pt;}
.h4_c01041{height:57.375000pt;}
.h7_c01041{height:78.097500pt;}
.h5_c01041{height:1122.546667pt;}
.h0_c01041{height:1122.560000pt;}
.h1_c01041{height:1122.666667pt;}
.w2_c01041{width:793.740000pt;}
.w0_c01041{width:793.760000pt;}
.w1_c01041{width:794.000000pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:113.472000pt;}
.x7_c01041{left:126.432000pt;}
.x8_c01041{left:129.792000pt;}
.x2_c01041{left:230.886667pt;}
.x3_c01041{left:248.666667pt;}
.x6_c01041{left:305.506667pt;}
.x4_c01041{left:553.833333pt;}
.x5_c01041{left:571.613333pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01042;src:url('chunks/assets/font_498934a2d1e0328f9a6c4569.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_cc9dbf23012eac5207033c5f.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_73fc24f472c836ce83a03e38.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_b002836e630e8670aaa534d1.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01042;src:url('chunks/assets/font_5dad817c109670c4e046f117.woff2')format("woff");}.ff6_c01042{font-family:ff6_c01042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01042;src:url('chunks/assets/font_e436be2bc92c1677f2d4c8ef.woff2')format("woff");}.ff7_c01042{font-family:ff7_c01042;line-height:1.181152;font-style:normal;font-weight: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_c01042;src:url('chunks/assets/font_c03ef053be16e217b7eb3361.woff2')format("woff");}.ff8_c01042{font-family:ff8_c01042;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls9_c01042{letter-spacing:-0.432000px;}
.lsb_c01042{letter-spacing:-0.272400px;}
.lsf_c01042{letter-spacing:-0.259800px;}
.lse_c01042{letter-spacing:-0.247800px;}
.ls8_c01042{letter-spacing:-0.181200px;}
.lsd_c01042{letter-spacing:-0.152400px;}
.ls5_c01042{letter-spacing:0.000000px;}
.ls6_c01042{letter-spacing:0.144000px;}
.lsa_c01042{letter-spacing:0.150000px;}
.ls1_c01042{letter-spacing:0.152400px;}
.ls7_c01042{letter-spacing:0.216000px;}
.lsc_c01042{letter-spacing:0.567600px;}
.ls3_c01042{letter-spacing:0.648000px;}
.ls2_c01042{letter-spacing:8.094240px;}
.ls0_c01042{letter-spacing:11.694240px;}
.ls4_c01042{letter-spacing:19.260480px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01042{word-spacing:-21.187920px;}
.ws2_c01042{word-spacing:-21.035520px;}
.ws0_c01042{word-spacing:-20.232000px;}
.ws1_c01042{word-spacing:-20.016000px;}
.ws4_c01042{word-spacing:-16.353480px;}
.ws5_c01042{word-spacing:0.000000px;}
._a_c01042{margin-left:-4.032000px;}
._10_c01042{margin-left:-2.488241px;}
._0_c01042{margin-left:-1.390841px;}
._3_c01042{width:1.102841px;}
._4_c01042{width:2.376000px;}
._5_c01042{width:3.778865px;}
._9_c01042{width:5.040000px;}
._8_c01042{width:6.264000px;}
._6_c01042{width:7.848000px;}
._7_c01042{width:9.156024px;}
._e_c01042{width:11.352024px;}
._b_c01042{width:12.456000px;}
._2_c01042{width:14.472000px;}
._f_c01042{width:15.652716px;}
._11_c01042{width:19.362479px;}
._c_c01042{width:35.352000px;}
._d_c01042{width:36.792000px;}
._1_c01042{width:1190.460000px;}
.fc1_c01042{color:rgb(79,129,189);}
.fc0_c01042{color:rgb(0,0,0);}
.fs4_c01042{font-size:38.880000px;}
.fs3_c01042{font-size:48.240000px;}
.fs2_c01042{font-size:54.000000px;}
.fs5_c01042{font-size:59.760000px;}
.fs0_c01042{font-size:66.240000px;}
.fs1_c01042{font-size:72.000000px;}
.y0_c01042{bottom:0.000000px;}
.y2c_c01042{bottom:8.655000px;}
.y2e_c01042{bottom:20.925000px;}
.y3_c01042{bottom:57.636000px;}
.y2_c01042{bottom:77.796000px;}
.y2a_c01042{bottom:109.296000px;}
.y29_c01042{bottom:127.476000px;}
.y28_c01042{bottom:132.696000px;}
.y27_c01042{bottom:145.656000px;}
.y26_c01042{bottom:164.010000px;}
.y25_c01042{bottom:182.190000px;}
.y24_c01042{bottom:200.370000px;}
.y23_c01042{bottom:219.450000px;}
.y22_c01042{bottom:224.670000px;}
.y21_c01042{bottom:237.810000px;}
.y20_c01042{bottom:255.990000px;}
.y1f_c01042{bottom:275.070000px;}
.y1e_c01042{bottom:280.290000px;}
.y1d_c01042{bottom:294.915000px;}
.y1c_c01042{bottom:331.095000px;}
.y1b_c01042{bottom:355.035000px;}
.y1a_c01042{bottom:378.795000px;}
.y18_c01042{bottom:417.495000px;}
.y19_c01042{bottom:423.435000px;}
.y17_c01042{bottom:441.435000px;}
.y16_c01042{bottom:465.195000px;}
.y15_c01042{bottom:488.955000px;}
.y14_c01042{bottom:512.715000px;}
.y13_c01042{bottom:536.655000px;}
.y12_c01042{bottom:560.415000px;}
.y10_c01042{bottom:584.205000px;}
.y11_c01042{bottom:590.145000px;}
.yf_c01042{bottom:607.965000px;}
.ye_c01042{bottom:631.905000px;}
.yc_c01042{bottom:670.605000px;}
.yd_c01042{bottom:676.545000px;}
.yb_c01042{bottom:694.365000px;}
.ya_c01042{bottom:718.305000px;}
.y9_c01042{bottom:742.065000px;}
.y8_c01042{bottom:765.825000px;}
.y7_c01042{bottom:789.585000px;}
.y6_c01042{bottom:813.525000px;}
.y2d_c01042{bottom:837.825000px;}
.y5_c01042{bottom:849.030000px;}
.y2b_c01042{bottom:850.095000px;}
.y4_c01042{bottom:879.810000px;}
.y1_c01042{bottom:1194.660000px;}
.hc_c01042{height:22.500000px;}
.h8_c01042{height:29.482734px;}
.he_c01042{height:34.762500px;}
.h5_c01042{height:40.790039px;}
.hb_c01042{height:41.484960px;}
.h7_c01042{height:43.246406px;}
.h2_c01042{height:48.062812px;}
.h3_c01042{height:50.229844px;}
.hd_c01042{height:53.428008px;}
.h9_c01042{height:59.789180px;}
.ha_c01042{height:63.763920px;}
.h4_c01042{height:64.546875px;}
.h6_c01042{height:1262.865000px;}
.h0_c01042{height:1262.880000px;}
.h1_c01042{height:1263.000000px;}
.w3_c01042{width:232.770000px;}
.w4_c01042{width:287.535000px;}
.w2_c01042{width:892.957500px;}
.w0_c01042{width:892.980000px;}
.w1_c01042{width:893.250000px;}
.x0_c01042{left:0.000000px;}
.x3_c01042{left:127.656000px;}
.xf_c01042{left:134.145000px;}
.xd_c01042{left:142.236000px;}
.xe_c01042{left:146.016000px;}
.x1_c01042{left:169.950000px;}
.x6_c01042{left:237.787500px;}
.x7_c01042{left:257.790000px;}
.xc_c01042{left:343.695000px;}
.x8_c01042{left:361.852500px;}
.x5_c01042{left:377.175000px;}
.x9_c01042{left:381.855000px;}
.x4_c01042{left:452.415000px;}
.x10_c01042{left:462.675000px;}
.xa_c01042{left:618.022500px;}
.xb_c01042{left:638.025000px;}
.x2_c01042{left:740.490000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls9_c01042{letter-spacing:-0.384000pt;}
.lsb_c01042{letter-spacing:-0.242133pt;}
.lsf_c01042{letter-spacing:-0.230933pt;}
.lse_c01042{letter-spacing:-0.220267pt;}
.ls8_c01042{letter-spacing:-0.161067pt;}
.lsd_c01042{letter-spacing:-0.135467pt;}
.ls5_c01042{letter-spacing:0.000000pt;}
.ls6_c01042{letter-spacing:0.128000pt;}
.lsa_c01042{letter-spacing:0.133333pt;}
.ls1_c01042{letter-spacing:0.135467pt;}
.ls7_c01042{letter-spacing:0.192000pt;}
.lsc_c01042{letter-spacing:0.504533pt;}
.ls3_c01042{letter-spacing:0.576000pt;}
.ls2_c01042{letter-spacing:7.194880pt;}
.ls0_c01042{letter-spacing:10.394880pt;}
.ls4_c01042{letter-spacing:17.120427pt;}
.ws3_c01042{word-spacing:-18.833707pt;}
.ws2_c01042{word-spacing:-18.698240pt;}
.ws0_c01042{word-spacing:-17.984000pt;}
.ws1_c01042{word-spacing:-17.792000pt;}
.ws4_c01042{word-spacing:-14.536427pt;}
.ws5_c01042{word-spacing:0.000000pt;}
._a_c01042{margin-left:-3.584000pt;}
._10_c01042{margin-left:-2.211770pt;}
._0_c01042{margin-left:-1.236303pt;}
._3_c01042{width:0.980303pt;}
._4_c01042{width:2.112000pt;}
._5_c01042{width:3.358991pt;}
._9_c01042{width:4.480000pt;}
._8_c01042{width:5.568000pt;}
._6_c01042{width:6.976000pt;}
._7_c01042{width:8.138688pt;}
._e_c01042{width:10.090688pt;}
._b_c01042{width:11.072000pt;}
._2_c01042{width:12.864000pt;}
._f_c01042{width:13.913526pt;}
._11_c01042{width:17.211092pt;}
._c_c01042{width:31.424000pt;}
._d_c01042{width:32.704000pt;}
._1_c01042{width:1058.186667pt;}
.fs4_c01042{font-size:34.560000pt;}
.fs3_c01042{font-size:42.880000pt;}
.fs2_c01042{font-size:48.000000pt;}
.fs5_c01042{font-size:53.120000pt;}
.fs0_c01042{font-size:58.880000pt;}
.fs1_c01042{font-size:64.000000pt;}
.y0_c01042{bottom:0.000000pt;}
.y2c_c01042{bottom:7.693333pt;}
.y2e_c01042{bottom:18.600000pt;}
.y3_c01042{bottom:51.232000pt;}
.y2_c01042{bottom:69.152000pt;}
.y2a_c01042{bottom:97.152000pt;}
.y29_c01042{bottom:113.312000pt;}
.y28_c01042{bottom:117.952000pt;}
.y27_c01042{bottom:129.472000pt;}
.y26_c01042{bottom:145.786667pt;}
.y25_c01042{bottom:161.946667pt;}
.y24_c01042{bottom:178.106667pt;}
.y23_c01042{bottom:195.066667pt;}
.y22_c01042{bottom:199.706667pt;}
.y21_c01042{bottom:211.386667pt;}
.y20_c01042{bottom:227.546667pt;}
.y1f_c01042{bottom:244.506667pt;}
.y1e_c01042{bottom:249.146667pt;}
.y1d_c01042{bottom:262.146667pt;}
.y1c_c01042{bottom:294.306667pt;}
.y1b_c01042{bottom:315.586667pt;}
.y1a_c01042{bottom:336.706667pt;}
.y18_c01042{bottom:371.106667pt;}
.y19_c01042{bottom:376.386667pt;}
.y17_c01042{bottom:392.386667pt;}
.y16_c01042{bottom:413.506667pt;}
.y15_c01042{bottom:434.626667pt;}
.y14_c01042{bottom:455.746667pt;}
.y13_c01042{bottom:477.026667pt;}
.y12_c01042{bottom:498.146667pt;}
.y10_c01042{bottom:519.293333pt;}
.y11_c01042{bottom:524.573333pt;}
.yf_c01042{bottom:540.413333pt;}
.ye_c01042{bottom:561.693333pt;}
.yc_c01042{bottom:596.093333pt;}
.yd_c01042{bottom:601.373333pt;}
.yb_c01042{bottom:617.213333pt;}
.ya_c01042{bottom:638.493333pt;}
.y9_c01042{bottom:659.613333pt;}
.y8_c01042{bottom:680.733333pt;}
.y7_c01042{bottom:701.853333pt;}
.y6_c01042{bottom:723.133333pt;}
.y2d_c01042{bottom:744.733333pt;}
.y5_c01042{bottom:754.693333pt;}
.y2b_c01042{bottom:755.640000pt;}
.y4_c01042{bottom:782.053333pt;}
.y1_c01042{bottom:1061.920000pt;}
.hc_c01042{height:20.000000pt;}
.h8_c01042{height:26.206875pt;}
.he_c01042{height:30.900000pt;}
.h5_c01042{height:36.257812pt;}
.hb_c01042{height:36.875520pt;}
.h7_c01042{height:38.441250pt;}
.h2_c01042{height:42.722500pt;}
.h3_c01042{height:44.648750pt;}
.hd_c01042{height:47.491563pt;}
.h9_c01042{height:53.145938pt;}
.ha_c01042{height:56.679040pt;}
.h4_c01042{height:57.375000pt;}
.h6_c01042{height:1122.546667pt;}
.h0_c01042{height:1122.560000pt;}
.h1_c01042{height:1122.666667pt;}
.w3_c01042{width:206.906667pt;}
.w4_c01042{width:255.586667pt;}
.w2_c01042{width:793.740000pt;}
.w0_c01042{width:793.760000pt;}
.w1_c01042{width:794.000000pt;}
.x0_c01042{left:0.000000pt;}
.x3_c01042{left:113.472000pt;}
.xf_c01042{left:119.240000pt;}
.xd_c01042{left:126.432000pt;}
.xe_c01042{left:129.792000pt;}
.x1_c01042{left:151.066667pt;}
.x6_c01042{left:211.366667pt;}
.x7_c01042{left:229.146667pt;}
.xc_c01042{left:305.506667pt;}
.x8_c01042{left:321.646667pt;}
.x5_c01042{left:335.266667pt;}
.x9_c01042{left:339.426667pt;}
.x4_c01042{left:402.146667pt;}
.x10_c01042{left:411.266667pt;}
.xa_c01042{left:549.353333pt;}
.xb_c01042{left:567.133333pt;}
.x2_c01042{left:658.213333pt;}
}





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

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01043;src:url('chunks/assets/font_6486d07dbf1cfa156e6fa5f6.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01043;src:url('chunks/assets/font_20418914267b40808052f096.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01043;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;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:ff5_c01043;src:url('chunks/assets/font_914728ef5b57e1a93da57504.woff2')format("woff");}.ff5_c01043{font-family:ff5_c01043;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01043;src:url('chunks/assets/font_d0f0bbec3f8dfce071d69c6b.woff2')format("woff");}.ff6_c01043{font-family:ff6_c01043;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01043;src:url('chunks/assets/font_4ec8747a1aed5236d25dddd1.woff2')format("woff");}.ff7_c01043{font-family:ff7_c01043;line-height:1.211914;font-style:normal;font-weight: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_c01043;src:url('chunks/assets/font_c6f677de4f84dec4f94addd8.woff2')format("woff");}.ff8_c01043{font-family:ff8_c01043;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls6_c01043{letter-spacing:-0.247800px;}
.ls3_c01043{letter-spacing:-0.181200px;}
.ls4_c01043{letter-spacing:-0.053400px;}
.ls2_c01043{letter-spacing:0.000000px;}
.ls5_c01043{letter-spacing:0.150000px;}
.ls1_c01043{letter-spacing:0.650160px;}
.ls0_c01043{letter-spacing:1.260480px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01043{word-spacing:-21.035520px;}
.ws1_c01043{word-spacing:0.000000px;}
._f_c01043{margin-left:-6.099014px;}
._a_c01043{margin-left:-5.098867px;}
._3_c01043{margin-left:-3.637109px;}
._2_c01043{margin-left:-2.520000px;}
._0_c01043{margin-left:-1.258891px;}
._4_c01043{width:1.993133px;}
._8_c01043{width:3.994891px;}
._1_c01043{width:5.328000px;}
._9_c01043{width:6.418915px;}
._e_c01043{width:23.901782px;}
._d_c01043{width:25.128000px;}
._c_c01043{width:28.653782px;}
._b_c01043{width:29.880000px;}
._5_c01043{width:36.792000px;}
._7_c01043{width:38.016000px;}
._6_c01043{width:39.778891px;}
.fc0_c01043{color:rgb(0,0,0);}
.fs5_c01043{font-size:38.880000px;}
.fs2_c01043{font-size:48.240000px;}
.fs4_c01043{font-size:59.760000px;}
.fs0_c01043{font-size:66.240000px;}
.fs1_c01043{font-size:72.000000px;}
.fs3_c01043{font-size:84.240000px;}
.y0_c01043{bottom:0.000000px;}
.y3_c01043{bottom:57.636000px;}
.y2_c01043{bottom:77.796000px;}
.y1c_c01043{bottom:109.296000px;}
.y1b_c01043{bottom:127.476000px;}
.y1a_c01043{bottom:145.656000px;}
.y19_c01043{bottom:164.010000px;}
.y18_c01043{bottom:182.190000px;}
.y17_c01043{bottom:200.370000px;}
.y16_c01043{bottom:218.730000px;}
.y15_c01043{bottom:223.950000px;}
.y14_c01043{bottom:238.350000px;}
.y13_c01043{bottom:280.830000px;}
.y12_c01043{bottom:312.735000px;}
.y11_c01043{bottom:821.445000px;}
.y10_c01043{bottom:845.205000px;}
.yf_c01043{bottom:886.830000px;}
.yd_c01043{bottom:925.530000px;}
.ye_c01043{bottom:931.470000px;}
.yc_c01043{bottom:949.470000px;}
.yb_c01043{bottom:973.230000px;}
.ya_c01043{bottom:996.990000px;}
.y9_c01043{bottom:1020.750000px;}
.y8_c01043{bottom:1044.690000px;}
.y7_c01043{bottom:1068.450000px;}
.y6_c01043{bottom:1092.210000px;}
.y5_c01043{bottom:1115.970000px;}
.y4_c01043{bottom:1139.940000px;}
.y1_c01043{bottom:1194.660000px;}
.h9_c01043{height:41.484960px;}
.h6_c01043{height:43.246406px;}
.h2_c01043{height:48.062812px;}
.h3_c01043{height:50.229844px;}
.h8_c01043{height:53.428008px;}
.hb_c01043{height:59.789180px;}
.ha_c01043{height:63.763920px;}
.h4_c01043{height:64.546875px;}
.h7_c01043{height:87.859687px;}
.h5_c01043{height:1262.865000px;}
.h0_c01043{height:1262.880000px;}
.h1_c01043{height:1263.000000px;}
.w2_c01043{width:892.957500px;}
.w0_c01043{width:892.980000px;}
.w1_c01043{width:893.250000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:127.656000px;}
.x6_c01043{left:146.016000px;}
.x5_c01043{left:343.695000px;}
.x2_c01043{left:430.792500px;}
.x3_c01043{left:450.795000px;}
.x4_c01043{left:708.990000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls6_c01043{letter-spacing:-0.220267pt;}
.ls3_c01043{letter-spacing:-0.161067pt;}
.ls4_c01043{letter-spacing:-0.047467pt;}
.ls2_c01043{letter-spacing:0.000000pt;}
.ls5_c01043{letter-spacing:0.133333pt;}
.ls1_c01043{letter-spacing:0.577920pt;}
.ls0_c01043{letter-spacing:1.120427pt;}
.ws0_c01043{word-spacing:-18.698240pt;}
.ws1_c01043{word-spacing:0.000000pt;}
._f_c01043{margin-left:-5.421346pt;}
._a_c01043{margin-left:-4.532326pt;}
._3_c01043{margin-left:-3.232986pt;}
._2_c01043{margin-left:-2.240000pt;}
._0_c01043{margin-left:-1.119014pt;}
._4_c01043{width:1.771674pt;}
._8_c01043{width:3.551014pt;}
._1_c01043{width:4.736000pt;}
._9_c01043{width:5.705702pt;}
._e_c01043{width:21.246029pt;}
._d_c01043{width:22.336000pt;}
._c_c01043{width:25.470029pt;}
._b_c01043{width:26.560000pt;}
._5_c01043{width:32.704000pt;}
._7_c01043{width:33.792000pt;}
._6_c01043{width:35.359014pt;}
.fs5_c01043{font-size:34.560000pt;}
.fs2_c01043{font-size:42.880000pt;}
.fs4_c01043{font-size:53.120000pt;}
.fs0_c01043{font-size:58.880000pt;}
.fs1_c01043{font-size:64.000000pt;}
.fs3_c01043{font-size:74.880000pt;}
.y0_c01043{bottom:0.000000pt;}
.y3_c01043{bottom:51.232000pt;}
.y2_c01043{bottom:69.152000pt;}
.y1c_c01043{bottom:97.152000pt;}
.y1b_c01043{bottom:113.312000pt;}
.y1a_c01043{bottom:129.472000pt;}
.y19_c01043{bottom:145.786667pt;}
.y18_c01043{bottom:161.946667pt;}
.y17_c01043{bottom:178.106667pt;}
.y16_c01043{bottom:194.426667pt;}
.y15_c01043{bottom:199.066667pt;}
.y14_c01043{bottom:211.866667pt;}
.y13_c01043{bottom:249.626667pt;}
.y12_c01043{bottom:277.986667pt;}
.y11_c01043{bottom:730.173333pt;}
.y10_c01043{bottom:751.293333pt;}
.yf_c01043{bottom:788.293333pt;}
.yd_c01043{bottom:822.693333pt;}
.ye_c01043{bottom:827.973333pt;}
.yc_c01043{bottom:843.973333pt;}
.yb_c01043{bottom:865.093333pt;}
.ya_c01043{bottom:886.213333pt;}
.y9_c01043{bottom:907.333333pt;}
.y8_c01043{bottom:928.613333pt;}
.y7_c01043{bottom:949.733333pt;}
.y6_c01043{bottom:970.853333pt;}
.y5_c01043{bottom:991.973333pt;}
.y4_c01043{bottom:1013.280000pt;}
.y1_c01043{bottom:1061.920000pt;}
.h9_c01043{height:36.875520pt;}
.h6_c01043{height:38.441250pt;}
.h2_c01043{height:42.722500pt;}
.h3_c01043{height:44.648750pt;}
.h8_c01043{height:47.491563pt;}
.hb_c01043{height:53.145938pt;}
.ha_c01043{height:56.679040pt;}
.h4_c01043{height:57.375000pt;}
.h7_c01043{height:78.097500pt;}
.h5_c01043{height:1122.546667pt;}
.h0_c01043{height:1122.560000pt;}
.h1_c01043{height:1122.666667pt;}
.w2_c01043{width:793.740000pt;}
.w0_c01043{width:793.760000pt;}
.w1_c01043{width:794.000000pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:113.472000pt;}
.x6_c01043{left:129.792000pt;}
.x5_c01043{left:305.506667pt;}
.x2_c01043{left:382.926667pt;}
.x3_c01043{left:400.706667pt;}
.x4_c01043{left:630.213333pt;}
}





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

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01044;src:url('chunks/assets/font_a67912d5fb004301f27dd963.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01044;src:url('chunks/assets/font_68bd8508967dd9080ed130ba.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01044;src:url('chunks/assets/font_4a6553abd101f677af119dff.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01044;src:url('chunks/assets/font_163984cbe18e33bef826ab5e.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01044;src:url('chunks/assets/font_d2ac770b796f72c1749b8c6b.woff2')format("woff");}.ff6_c01044{font-family:ff6_c01044;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01044;src:url('chunks/assets/font_bef2a5cf7208c3c0ec5676e2.woff2')format("woff");}.ff7_c01044{font-family:ff7_c01044;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls5_c01044{letter-spacing:-0.576000px;}
.ls8_c01044{letter-spacing:-0.272400px;}
.ls3_c01044{letter-spacing:-0.181200px;}
.ls2_c01044{letter-spacing:0.000000px;}
.ls4_c01044{letter-spacing:0.144000px;}
.ls7_c01044{letter-spacing:0.150000px;}
.ls1_c01044{letter-spacing:0.152400px;}
.ls0_c01044{letter-spacing:0.174240px;}
.ls6_c01044{letter-spacing:0.648000px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01044{word-spacing:-21.187920px;}
.ws1_c01044{word-spacing:-21.035520px;}
.ws0_c01044{word-spacing:-20.664000px;}
.ws3_c01044{word-spacing:0.000000px;}
._18_c01044{margin-left:-3.960000px;}
._a_c01044{margin-left:-2.793246px;}
._0_c01044{margin-left:-1.390841px;}
._5_c01044{width:1.008000px;}
._9_c01044{width:2.376000px;}
._b_c01044{width:3.456000px;}
._8_c01044{width:5.157683px;}
._1_c01044{width:7.056000px;}
._2_c01044{width:8.109683px;}
._10_c01044{width:11.016000px;}
._19_c01044{width:12.288024px;}
._d_c01044{width:13.583952px;}
._c_c01044{width:15.240024px;}
._4_c01044{width:17.352000px;}
._3_c01044{width:18.432000px;}
._13_c01044{width:22.054841px;}
._f_c01044{width:23.112000px;}
._e_c01044{width:24.264000px;}
._7_c01044{width:25.488000px;}
._6_c01044{width:26.712000px;}
._1a_c01044{width:31.968000px;}
._15_c01044{width:39.312000px;}
._14_c01044{width:40.320000px;}
._16_c01044{width:43.920000px;}
._17_c01044{width:49.224000px;}
._12_c01044{width:56.952000px;}
._11_c01044{width:58.176000px;}
.fc0_c01044{color:rgb(0,0,0);}
.fs3_c01044{font-size:38.880000px;}
.fs2_c01044{font-size:48.240000px;}
.fs4_c01044{font-size:59.760000px;}
.fs0_c01044{font-size:66.240000px;}
.fs1_c01044{font-size:72.000000px;}
.y0_c01044{bottom:0.000000px;}
.y32_c01044{bottom:18.345000px;}
.y3_c01044{bottom:57.636000px;}
.y2_c01044{bottom:77.796000px;}
.y30_c01044{bottom:109.296000px;}
.y2f_c01044{bottom:127.476000px;}
.y2e_c01044{bottom:145.656000px;}
.y2d_c01044{bottom:164.910000px;}
.y2c_c01044{bottom:170.130000px;}
.y2b_c01044{bottom:184.530000px;}
.y31_c01044{bottom:204.525000px;}
.y2a_c01044{bottom:228.450000px;}
.y29_c01044{bottom:252.210000px;}
.y28_c01044{bottom:275.970000px;}
.y27_c01044{bottom:299.775000px;}
.y26_c01044{bottom:323.715000px;}
.y25_c01044{bottom:347.475000px;}
.y24_c01044{bottom:371.235000px;}
.y23_c01044{bottom:394.995000px;}
.y22_c01044{bottom:418.935000px;}
.y21_c01044{bottom:442.695000px;}
.y20_c01044{bottom:466.455000px;}
.y1f_c01044{bottom:490.215000px;}
.y1e_c01044{bottom:514.335000px;}
.y1d_c01044{bottom:537.915000px;}
.y1c_c01044{bottom:561.675000px;}
.y1b_c01044{bottom:585.465000px;}
.y1a_c01044{bottom:609.225000px;}
.y19_c01044{bottom:633.165000px;}
.y18_c01044{bottom:657.105000px;}
.y17_c01044{bottom:680.685000px;}
.y16_c01044{bottom:720.105000px;}
.y15_c01044{bottom:743.865000px;}
.y13_c01044{bottom:767.805000px;}
.y14_c01044{bottom:773.745000px;}
.y12_c01044{bottom:791.565000px;}
.y11_c01044{bottom:815.325000px;}
.y10_c01044{bottom:839.085000px;}
.yf_c01044{bottom:863.070000px;}
.ye_c01044{bottom:886.830000px;}
.yd_c01044{bottom:910.590000px;}
.yc_c01044{bottom:949.470000px;}
.yb_c01044{bottom:973.230000px;}
.ya_c01044{bottom:996.990000px;}
.y9_c01044{bottom:1020.750000px;}
.y8_c01044{bottom:1044.690000px;}
.y7_c01044{bottom:1068.450000px;}
.y6_c01044{bottom:1092.210000px;}
.y5_c01044{bottom:1115.970000px;}
.y4_c01044{bottom:1139.940000px;}
.y1_c01044{bottom:1194.660000px;}
.h7_c01044{height:29.482734px;}
.ha_c01044{height:32.220000px;}
.h6_c01044{height:43.246406px;}
.h2_c01044{height:48.062812px;}
.h3_c01044{height:50.229844px;}
.hb_c01044{height:53.428008px;}
.h8_c01044{height:59.789180px;}
.h9_c01044{height:63.763920px;}
.h4_c01044{height:64.546875px;}
.h5_c01044{height:1262.865000px;}
.h0_c01044{height:1262.880000px;}
.h1_c01044{height:1263.000000px;}
.w3_c01044{width:316.335000px;}
.w2_c01044{width:892.957500px;}
.w0_c01044{width:892.980000px;}
.w1_c01044{width:893.250000px;}
.x0_c01044{left:0.000000px;}
.x3_c01044{left:127.656000px;}
.x7_c01044{left:142.236000px;}
.x1_c01044{left:169.950000px;}
.x6_c01044{left:343.695000px;}
.x8_c01044{left:462.855000px;}
.x4_c01044{left:489.472500px;}
.x5_c01044{left:509.505000px;}
.x2_c01044{left:740.490000px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls5_c01044{letter-spacing:-0.512000pt;}
.ls8_c01044{letter-spacing:-0.242133pt;}
.ls3_c01044{letter-spacing:-0.161067pt;}
.ls2_c01044{letter-spacing:0.000000pt;}
.ls4_c01044{letter-spacing:0.128000pt;}
.ls7_c01044{letter-spacing:0.133333pt;}
.ls1_c01044{letter-spacing:0.135467pt;}
.ls0_c01044{letter-spacing:0.154880pt;}
.ls6_c01044{letter-spacing:0.576000pt;}
.ws2_c01044{word-spacing:-18.833707pt;}
.ws1_c01044{word-spacing:-18.698240pt;}
.ws0_c01044{word-spacing:-18.368000pt;}
.ws3_c01044{word-spacing:0.000000pt;}
._18_c01044{margin-left:-3.520000pt;}
._a_c01044{margin-left:-2.482885pt;}
._0_c01044{margin-left:-1.236303pt;}
._5_c01044{width:0.896000pt;}
._9_c01044{width:2.112000pt;}
._b_c01044{width:3.072000pt;}
._8_c01044{width:4.584607pt;}
._1_c01044{width:6.272000pt;}
._2_c01044{width:7.208607pt;}
._10_c01044{width:9.792000pt;}
._19_c01044{width:10.922688pt;}
._d_c01044{width:12.074624pt;}
._c_c01044{width:13.546688pt;}
._4_c01044{width:15.424000pt;}
._3_c01044{width:16.384000pt;}
._13_c01044{width:19.604303pt;}
._f_c01044{width:20.544000pt;}
._e_c01044{width:21.568000pt;}
._7_c01044{width:22.656000pt;}
._6_c01044{width:23.744000pt;}
._1a_c01044{width:28.416000pt;}
._15_c01044{width:34.944000pt;}
._14_c01044{width:35.840000pt;}
._16_c01044{width:39.040000pt;}
._17_c01044{width:43.754667pt;}
._12_c01044{width:50.624000pt;}
._11_c01044{width:51.712000pt;}
.fs3_c01044{font-size:34.560000pt;}
.fs2_c01044{font-size:42.880000pt;}
.fs4_c01044{font-size:53.120000pt;}
.fs0_c01044{font-size:58.880000pt;}
.fs1_c01044{font-size:64.000000pt;}
.y0_c01044{bottom:0.000000pt;}
.y32_c01044{bottom:16.306667pt;}
.y3_c01044{bottom:51.232000pt;}
.y2_c01044{bottom:69.152000pt;}
.y30_c01044{bottom:97.152000pt;}
.y2f_c01044{bottom:113.312000pt;}
.y2e_c01044{bottom:129.472000pt;}
.y2d_c01044{bottom:146.586667pt;}
.y2c_c01044{bottom:151.226667pt;}
.y2b_c01044{bottom:164.026667pt;}
.y31_c01044{bottom:181.800000pt;}
.y2a_c01044{bottom:203.066667pt;}
.y29_c01044{bottom:224.186667pt;}
.y28_c01044{bottom:245.306667pt;}
.y27_c01044{bottom:266.466667pt;}
.y26_c01044{bottom:287.746667pt;}
.y25_c01044{bottom:308.866667pt;}
.y24_c01044{bottom:329.986667pt;}
.y23_c01044{bottom:351.106667pt;}
.y22_c01044{bottom:372.386667pt;}
.y21_c01044{bottom:393.506667pt;}
.y20_c01044{bottom:414.626667pt;}
.y1f_c01044{bottom:435.746667pt;}
.y1e_c01044{bottom:457.186667pt;}
.y1d_c01044{bottom:478.146667pt;}
.y1c_c01044{bottom:499.266667pt;}
.y1b_c01044{bottom:520.413333pt;}
.y1a_c01044{bottom:541.533333pt;}
.y19_c01044{bottom:562.813333pt;}
.y18_c01044{bottom:584.093333pt;}
.y17_c01044{bottom:605.053333pt;}
.y16_c01044{bottom:640.093333pt;}
.y15_c01044{bottom:661.213333pt;}
.y13_c01044{bottom:682.493333pt;}
.y14_c01044{bottom:687.773333pt;}
.y12_c01044{bottom:703.613333pt;}
.y11_c01044{bottom:724.733333pt;}
.y10_c01044{bottom:745.853333pt;}
.yf_c01044{bottom:767.173333pt;}
.ye_c01044{bottom:788.293333pt;}
.yd_c01044{bottom:809.413333pt;}
.yc_c01044{bottom:843.973333pt;}
.yb_c01044{bottom:865.093333pt;}
.ya_c01044{bottom:886.213333pt;}
.y9_c01044{bottom:907.333333pt;}
.y8_c01044{bottom:928.613333pt;}
.y7_c01044{bottom:949.733333pt;}
.y6_c01044{bottom:970.853333pt;}
.y5_c01044{bottom:991.973333pt;}
.y4_c01044{bottom:1013.280000pt;}
.y1_c01044{bottom:1061.920000pt;}
.h7_c01044{height:26.206875pt;}
.ha_c01044{height:28.640000pt;}
.h6_c01044{height:38.441250pt;}
.h2_c01044{height:42.722500pt;}
.h3_c01044{height:44.648750pt;}
.hb_c01044{height:47.491563pt;}
.h8_c01044{height:53.145938pt;}
.h9_c01044{height:56.679040pt;}
.h4_c01044{height:57.375000pt;}
.h5_c01044{height:1122.546667pt;}
.h0_c01044{height:1122.560000pt;}
.h1_c01044{height:1122.666667pt;}
.w3_c01044{width:281.186667pt;}
.w2_c01044{width:793.740000pt;}
.w0_c01044{width:793.760000pt;}
.w1_c01044{width:794.000000pt;}
.x0_c01044{left:0.000000pt;}
.x3_c01044{left:113.472000pt;}
.x7_c01044{left:126.432000pt;}
.x1_c01044{left:151.066667pt;}
.x6_c01044{left:305.506667pt;}
.x8_c01044{left:411.426667pt;}
.x4_c01044{left:435.086667pt;}
.x5_c01044{left:452.893333pt;}
.x2_c01044{left:658.213333pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01045;src:url('chunks/assets/font_23610aca1914c997b75b46cd.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01045;src:url('chunks/assets/font_26083c03bc48d287d1106483.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01045;src:url('chunks/assets/font_a3d8ea4d59375b53a2a86d22.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls6_c01045{letter-spacing:-0.864000px;}
.ls4_c01045{letter-spacing:-0.576000px;}
.ls5_c01045{letter-spacing:-0.432000px;}
.ls9_c01045{letter-spacing:-0.106800px;}
.ls8_c01045{letter-spacing:-0.053400px;}
.ls2_c01045{letter-spacing:0.000000px;}
.ls7_c01045{letter-spacing:0.144000px;}
.ls1_c01045{letter-spacing:0.288000px;}
.ls3_c01045{letter-spacing:0.648000px;}
.ls0_c01045{letter-spacing:0.864000px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01045{word-spacing:-20.664000px;}
.ws2_c01045{word-spacing:-20.304000px;}
.ws1_c01045{word-spacing:-20.016000px;}
.ws3_c01045{word-spacing:-16.613280px;}
.ws4_c01045{word-spacing:-16.506480px;}
.ws5_c01045{word-spacing:0.000000px;}
._7_c01045{margin-left:-5.496048px;}
._6_c01045{margin-left:-4.487976px;}
._5_c01045{margin-left:-2.485109px;}
._0_c01045{margin-left:-1.258891px;}
._2_c01045{width:1.042891px;}
._1_c01045{width:2.880000px;}
._e_c01045{width:4.207762px;}
._10_c01045{width:5.375654px;}
._f_c01045{width:6.459101px;}
._b_c01045{width:7.589376px;}
._a_c01045{width:9.154915px;}
._9_c01045{width:10.368000px;}
._4_c01045{width:12.430915px;}
._3_c01045{width:14.328000px;}
._8_c01045{width:16.200000px;}
._d_c01045{width:17.634629px;}
._c_c01045{width:18.898891px;}
._15_c01045{width:22.392000px;}
._12_c01045{width:25.992000px;}
._11_c01045{width:27.216000px;}
._17_c01045{width:28.800000px;}
._16_c01045{width:29.808000px;}
._13_c01045{width:34.992000px;}
._14_c01045{width:43.776000px;}
._18_c01045{width:71.712000px;}
._19_c01045{width:109.584000px;}
.fc1_c01045{color:transparent;}
.fc0_c01045{color:rgb(0,0,0);}
.fs2_c01045{font-size:59.760000px;}
.fs0_c01045{font-size:66.240000px;}
.fs1_c01045{font-size:72.000000px;}
.y0_c01045{bottom:0.000000px;}
.y32_c01045{bottom:4.845000px;}
.y2f_c01045{bottom:12.405000px;}
.y31_c01045{bottom:22.305000px;}
.y2e_c01045{bottom:29.685000px;}
.y3_c01045{bottom:57.636000px;}
.y2_c01045{bottom:77.796000px;}
.y2d_c01045{bottom:142.965000px;}
.y30_c01045{bottom:149.085000px;}
.y2c_c01045{bottom:157.710000px;}
.y2b_c01045{bottom:181.650000px;}
.y2a_c01045{bottom:205.410000px;}
.y29_c01045{bottom:229.170000px;}
.y28_c01045{bottom:252.750000px;}
.y27_c01045{bottom:276.870000px;}
.y26_c01045{bottom:300.675000px;}
.y25_c01045{bottom:324.435000px;}
.y24_c01045{bottom:348.195000px;}
.y23_c01045{bottom:371.955000px;}
.y22_c01045{bottom:395.715000px;}
.y21_c01045{bottom:419.475000px;}
.y20_c01045{bottom:443.235000px;}
.y1f_c01045{bottom:466.995000px;}
.y1e_c01045{bottom:490.935000px;}
.y1d_c01045{bottom:514.875000px;}
.y1c_c01045{bottom:538.635000px;}
.y1b_c01045{bottom:562.395000px;}
.y1a_c01045{bottom:586.365000px;}
.y19_c01045{bottom:610.125000px;}
.y18_c01045{bottom:633.885000px;}
.y17_c01045{bottom:657.465000px;}
.y16_c01045{bottom:696.345000px;}
.y15_c01045{bottom:720.285000px;}
.y14_c01045{bottom:743.865000px;}
.y13_c01045{bottom:767.805000px;}
.y12_c01045{bottom:791.565000px;}
.y11_c01045{bottom:815.325000px;}
.y10_c01045{bottom:839.085000px;}
.yf_c01045{bottom:863.070000px;}
.ye_c01045{bottom:886.830000px;}
.yd_c01045{bottom:910.590000px;}
.yc_c01045{bottom:934.350000px;}
.yb_c01045{bottom:958.470000px;}
.ya_c01045{bottom:982.050000px;}
.y9_c01045{bottom:1005.990000px;}
.y8_c01045{bottom:1029.570000px;}
.y7_c01045{bottom:1053.510000px;}
.y6_c01045{bottom:1077.270000px;}
.y5_c01045{bottom:1116.150000px;}
.y4_c01045{bottom:1139.940000px;}
.y1_c01045{bottom:1194.660000px;}
.h7_c01045{height:36.000000px;}
.h5_c01045{height:43.380000px;}
.h2_c01045{height:48.062812px;}
.h3_c01045{height:50.229844px;}
.h6_c01045{height:53.428008px;}
.h4_c01045{height:64.546875px;}
.h0_c01045{height:1262.880000px;}
.h1_c01045{height:1263.000000px;}
.w3_c01045{width:177.675000px;}
.w2_c01045{width:196.050000px;}
.w0_c01045{width:892.980000px;}
.w1_c01045{width:893.250000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:127.656000px;}
.x3_c01045{left:333.975000px;}
.x2_c01045{left:335.415000px;}
.x4_c01045{left:587.820000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls6_c01045{letter-spacing:-0.768000pt;}
.ls4_c01045{letter-spacing:-0.512000pt;}
.ls5_c01045{letter-spacing:-0.384000pt;}
.ls9_c01045{letter-spacing:-0.094933pt;}
.ls8_c01045{letter-spacing:-0.047467pt;}
.ls2_c01045{letter-spacing:0.000000pt;}
.ls7_c01045{letter-spacing:0.128000pt;}
.ls1_c01045{letter-spacing:0.256000pt;}
.ls3_c01045{letter-spacing:0.576000pt;}
.ls0_c01045{letter-spacing:0.768000pt;}
.ws0_c01045{word-spacing:-18.368000pt;}
.ws2_c01045{word-spacing:-18.048000pt;}
.ws1_c01045{word-spacing:-17.792000pt;}
.ws3_c01045{word-spacing:-14.767360pt;}
.ws4_c01045{word-spacing:-14.672427pt;}
.ws5_c01045{word-spacing:0.000000pt;}
._7_c01045{margin-left:-4.885376pt;}
._6_c01045{margin-left:-3.989312pt;}
._5_c01045{margin-left:-2.208986pt;}
._0_c01045{margin-left:-1.119014pt;}
._2_c01045{width:0.927014pt;}
._1_c01045{width:2.560000pt;}
._e_c01045{width:3.740233pt;}
._10_c01045{width:4.778359pt;}
._f_c01045{width:5.741423pt;}
._b_c01045{width:6.746112pt;}
._a_c01045{width:8.137702pt;}
._9_c01045{width:9.216000pt;}
._4_c01045{width:11.049702pt;}
._3_c01045{width:12.736000pt;}
._8_c01045{width:14.400000pt;}
._d_c01045{width:15.675226pt;}
._c_c01045{width:16.799014pt;}
._15_c01045{width:19.904000pt;}
._12_c01045{width:23.104000pt;}
._11_c01045{width:24.192000pt;}
._17_c01045{width:25.600000pt;}
._16_c01045{width:26.496000pt;}
._13_c01045{width:31.104000pt;}
._14_c01045{width:38.912000pt;}
._18_c01045{width:63.744000pt;}
._19_c01045{width:97.408000pt;}
.fs2_c01045{font-size:53.120000pt;}
.fs0_c01045{font-size:58.880000pt;}
.fs1_c01045{font-size:64.000000pt;}
.y0_c01045{bottom:0.000000pt;}
.y32_c01045{bottom:4.306667pt;}
.y2f_c01045{bottom:11.026667pt;}
.y31_c01045{bottom:19.826667pt;}
.y2e_c01045{bottom:26.386667pt;}
.y3_c01045{bottom:51.232000pt;}
.y2_c01045{bottom:69.152000pt;}
.y2d_c01045{bottom:127.080000pt;}
.y30_c01045{bottom:132.520000pt;}
.y2c_c01045{bottom:140.186667pt;}
.y2b_c01045{bottom:161.466667pt;}
.y2a_c01045{bottom:182.586667pt;}
.y29_c01045{bottom:203.706667pt;}
.y28_c01045{bottom:224.666667pt;}
.y27_c01045{bottom:246.106667pt;}
.y26_c01045{bottom:267.266667pt;}
.y25_c01045{bottom:288.386667pt;}
.y24_c01045{bottom:309.506667pt;}
.y23_c01045{bottom:330.626667pt;}
.y22_c01045{bottom:351.746667pt;}
.y21_c01045{bottom:372.866667pt;}
.y20_c01045{bottom:393.986667pt;}
.y1f_c01045{bottom:415.106667pt;}
.y1e_c01045{bottom:436.386667pt;}
.y1d_c01045{bottom:457.666667pt;}
.y1c_c01045{bottom:478.786667pt;}
.y1b_c01045{bottom:499.906667pt;}
.y1a_c01045{bottom:521.213333pt;}
.y19_c01045{bottom:542.333333pt;}
.y18_c01045{bottom:563.453333pt;}
.y17_c01045{bottom:584.413333pt;}
.y16_c01045{bottom:618.973333pt;}
.y15_c01045{bottom:640.253333pt;}
.y14_c01045{bottom:661.213333pt;}
.y13_c01045{bottom:682.493333pt;}
.y12_c01045{bottom:703.613333pt;}
.y11_c01045{bottom:724.733333pt;}
.y10_c01045{bottom:745.853333pt;}
.yf_c01045{bottom:767.173333pt;}
.ye_c01045{bottom:788.293333pt;}
.yd_c01045{bottom:809.413333pt;}
.yc_c01045{bottom:830.533333pt;}
.yb_c01045{bottom:851.973333pt;}
.ya_c01045{bottom:872.933333pt;}
.y9_c01045{bottom:894.213333pt;}
.y8_c01045{bottom:915.173333pt;}
.y7_c01045{bottom:936.453333pt;}
.y6_c01045{bottom:957.573333pt;}
.y5_c01045{bottom:992.133333pt;}
.y4_c01045{bottom:1013.280000pt;}
.y1_c01045{bottom:1061.920000pt;}
.h7_c01045{height:32.000000pt;}
.h5_c01045{height:38.560000pt;}
.h2_c01045{height:42.722500pt;}
.h3_c01045{height:44.648750pt;}
.h6_c01045{height:47.491563pt;}
.h4_c01045{height:57.375000pt;}
.h0_c01045{height:1122.560000pt;}
.h1_c01045{height:1122.666667pt;}
.w3_c01045{width:157.933333pt;}
.w2_c01045{width:174.266667pt;}
.w0_c01045{width:793.760000pt;}
.w1_c01045{width:794.000000pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:113.472000pt;}
.x3_c01045{left:296.866667pt;}
.x2_c01045{left:298.146667pt;}
.x4_c01045{left:522.506667pt;}
}





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

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01046;src:url('chunks/assets/font_2fcd1dcd0f1c8fa34c48c807.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01046;src:url('chunks/assets/font_bc9b710973cf95840713052a.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01046;src:url('chunks/assets/font_7c057be6d3b93f6c2666b589.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01046;src:url('chunks/assets/font_a7b17213c54f6b2c261a2521.woff2')format("woff");}.ff5_c01046{font-family:ff5_c01046;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls0_c01046{letter-spacing:0.000000px;}
.ls1_c01046{letter-spacing:0.288000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:0.000000px;}
._6_c01046{margin-left:-5.112000px;}
._5_c01046{margin-left:-3.384000px;}
._0_c01046{margin-left:-1.390841px;}
._4_c01046{width:1.090817px;}
._a_c01046{width:2.232000px;}
._9_c01046{width:3.312000px;}
._10_c01046{width:4.486817px;}
._b_c01046{width:5.582365px;}
._e_c01046{width:6.984000px;}
._8_c01046{width:7.992000px;}
._7_c01046{width:9.144000px;}
._3_c01046{width:10.944000px;}
._f_c01046{width:12.277207px;}
._d_c01046{width:14.229683px;}
._c_c01046{width:15.408000px;}
._2_c01046{width:29.016000px;}
._1_c01046{width:30.096000px;}
.fc0_c01046{color:rgb(0,0,0);}
.fs2_c01046{font-size:59.760000px;}
.fs0_c01046{font-size:66.240000px;}
.fs1_c01046{font-size:72.000000px;}
.y0_c01046{bottom:0.000000px;}
.y21_c01046{bottom:9.711000px;}
.y3_c01046{bottom:57.636000px;}
.y2_c01046{bottom:77.796000px;}
.y20_c01046{bottom:106.605000px;}
.y1f_c01046{bottom:137.016000px;}
.y1e_c01046{bottom:445.935000px;}
.y1d_c01046{bottom:469.695000px;}
.y1c_c01046{bottom:508.575000px;}
.y1b_c01046{bottom:547.275000px;}
.y1a_c01046{bottom:586.365000px;}
.y19_c01046{bottom:610.125000px;}
.y18_c01046{bottom:633.705000px;}
.y17_c01046{bottom:657.465000px;}
.y16_c01046{bottom:681.405000px;}
.y15_c01046{bottom:705.165000px;}
.y14_c01046{bottom:728.925000px;}
.y13_c01046{bottom:752.685000px;}
.y12_c01046{bottom:776.625000px;}
.y11_c01046{bottom:800.385000px;}
.y10_c01046{bottom:839.085000px;}
.yf_c01046{bottom:863.250000px;}
.ye_c01046{bottom:887.010000px;}
.yd_c01046{bottom:910.590000px;}
.yc_c01046{bottom:949.650000px;}
.yb_c01046{bottom:973.230000px;}
.ya_c01046{bottom:996.990000px;}
.y9_c01046{bottom:1020.750000px;}
.y8_c01046{bottom:1044.690000px;}
.y7_c01046{bottom:1068.630000px;}
.y6_c01046{bottom:1092.390000px;}
.y5_c01046{bottom:1115.970000px;}
.y4_c01046{bottom:1139.940000px;}
.y1_c01046{bottom:1194.660000px;}
.h6_c01046{height:23.580000px;}
.h2_c01046{height:48.062812px;}
.h3_c01046{height:50.229844px;}
.h7_c01046{height:53.428008px;}
.h4_c01046{height:64.546875px;}
.h5_c01046{height:65.003906px;}
.h0_c01046{height:1262.880000px;}
.h1_c01046{height:1263.000000px;}
.w2_c01046{width:447.375000px;}
.w0_c01046{width:892.980000px;}
.w1_c01046{width:893.250000px;}
.x0_c01046{left:0.000000px;}
.x3_c01046{left:127.656000px;}
.x1_c01046{left:169.950000px;}
.x5_c01046{left:227.745000px;}
.x4_c01046{left:660.705000px;}
.x2_c01046{left:740.490000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls0_c01046{letter-spacing:0.000000pt;}
.ls1_c01046{letter-spacing:0.256000pt;}
.ws0_c01046{word-spacing:0.000000pt;}
._6_c01046{margin-left:-4.544000pt;}
._5_c01046{margin-left:-3.008000pt;}
._0_c01046{margin-left:-1.236303pt;}
._4_c01046{width:0.969615pt;}
._a_c01046{width:1.984000pt;}
._9_c01046{width:2.944000pt;}
._10_c01046{width:3.988282pt;}
._b_c01046{width:4.962103pt;}
._e_c01046{width:6.208000pt;}
._8_c01046{width:7.104000pt;}
._7_c01046{width:8.128000pt;}
._3_c01046{width:9.728000pt;}
._f_c01046{width:10.913073pt;}
._d_c01046{width:12.648607pt;}
._c_c01046{width:13.696000pt;}
._2_c01046{width:25.792000pt;}
._1_c01046{width:26.752000pt;}
.fs2_c01046{font-size:53.120000pt;}
.fs0_c01046{font-size:58.880000pt;}
.fs1_c01046{font-size:64.000000pt;}
.y0_c01046{bottom:0.000000pt;}
.y21_c01046{bottom:8.632000pt;}
.y3_c01046{bottom:51.232000pt;}
.y2_c01046{bottom:69.152000pt;}
.y20_c01046{bottom:94.760000pt;}
.y1f_c01046{bottom:121.792000pt;}
.y1e_c01046{bottom:396.386667pt;}
.y1d_c01046{bottom:417.506667pt;}
.y1c_c01046{bottom:452.066667pt;}
.y1b_c01046{bottom:486.466667pt;}
.y1a_c01046{bottom:521.213333pt;}
.y19_c01046{bottom:542.333333pt;}
.y18_c01046{bottom:563.293333pt;}
.y17_c01046{bottom:584.413333pt;}
.y16_c01046{bottom:605.693333pt;}
.y15_c01046{bottom:626.813333pt;}
.y14_c01046{bottom:647.933333pt;}
.y13_c01046{bottom:669.053333pt;}
.y12_c01046{bottom:690.333333pt;}
.y11_c01046{bottom:711.453333pt;}
.y10_c01046{bottom:745.853333pt;}
.yf_c01046{bottom:767.333333pt;}
.ye_c01046{bottom:788.453333pt;}
.yd_c01046{bottom:809.413333pt;}
.yc_c01046{bottom:844.133333pt;}
.yb_c01046{bottom:865.093333pt;}
.ya_c01046{bottom:886.213333pt;}
.y9_c01046{bottom:907.333333pt;}
.y8_c01046{bottom:928.613333pt;}
.y7_c01046{bottom:949.893333pt;}
.y6_c01046{bottom:971.013333pt;}
.y5_c01046{bottom:991.973333pt;}
.y4_c01046{bottom:1013.280000pt;}
.y1_c01046{bottom:1061.920000pt;}
.h6_c01046{height:20.960000pt;}
.h2_c01046{height:42.722500pt;}
.h3_c01046{height:44.648750pt;}
.h7_c01046{height:47.491563pt;}
.h4_c01046{height:57.375000pt;}
.h5_c01046{height:57.781250pt;}
.h0_c01046{height:1122.560000pt;}
.h1_c01046{height:1122.666667pt;}
.w2_c01046{width:397.666667pt;}
.w0_c01046{width:793.760000pt;}
.w1_c01046{width:794.000000pt;}
.x0_c01046{left:0.000000pt;}
.x3_c01046{left:113.472000pt;}
.x1_c01046{left:151.066667pt;}
.x5_c01046{left:202.440000pt;}
.x4_c01046{left:587.293333pt;}
.x2_c01046{left:658.213333pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01047;src:url('chunks/assets/font_c6c3b84fbfec9cc0e570f78d.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01047;src:url('chunks/assets/font_9612dad7042ce08b9061c97f.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01047;src:url('chunks/assets/font_c9a98885b213cd4b44a48545.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01047;src:url('chunks/assets/font_4457992364d5618f3456065e.woff2')format("woff");}.ff5_c01047{font-family:ff5_c01047;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01047;src:url('chunks/assets/font_c7e2ad6c6c94e1d499d1fe88.woff2')format("woff");}.ff6_c01047{font-family:ff6_c01047;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls4_c01047{letter-spacing:-0.720000px;}
.ls3_c01047{letter-spacing:-0.576000px;}
.ls5_c01047{letter-spacing:-0.432000px;}
.lse_c01047{letter-spacing:-0.259800px;}
.lsa_c01047{letter-spacing:-0.247800px;}
.ls8_c01047{letter-spacing:-0.181200px;}
.ls2_c01047{letter-spacing:0.000000px;}
.ls1_c01047{letter-spacing:0.120000px;}
.ls6_c01047{letter-spacing:0.144000px;}
.ls9_c01047{letter-spacing:0.150000px;}
.lsb_c01047{letter-spacing:0.152400px;}
.lsd_c01047{letter-spacing:0.175800px;}
.ls0_c01047{letter-spacing:0.216000px;}
.ls7_c01047{letter-spacing:0.288000px;}
.lsc_c01047{letter-spacing:0.567600px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01047{word-spacing:-21.211320px;}
.ws0_c01047{word-spacing:-20.016000px;}
.ws2_c01047{word-spacing:-16.353480px;}
.ws3_c01047{word-spacing:0.000000px;}
._3_c01047{margin-left:-4.321109px;}
._2_c01047{margin-left:-3.312000px;}
._e_c01047{margin-left:-2.305133px;}
._0_c01047{margin-left:-1.258891px;}
._6_c01047{width:1.956024px;}
._13_c01047{width:3.001085px;}
._5_c01047{width:4.068000px;}
._4_c01047{width:5.544000px;}
._b_c01047{width:6.624000px;}
._f_c01047{width:7.727976px;}
._1_c01047{width:10.152000px;}
._7_c01047{width:11.448000px;}
._8_c01047{width:13.572000px;}
._c_c01047{width:14.578891px;}
._d_c01047{width:15.912000px;}
._9_c01047{width:18.432000px;}
._a_c01047{width:21.094891px;}
._12_c01047{width:22.104000px;}
._19_c01047{width:23.535326px;}
._11_c01047{width:24.586891px;}
._10_c01047{width:25.992000px;}
._18_c01047{width:27.250891px;}
._15_c01047{width:35.064000px;}
._14_c01047{width:36.072000px;}
._1a_c01047{width:37.368000px;}
._17_c01047{width:39.816000px;}
._16_c01047{width:40.896000px;}
._1b_c01047{width:42.264000px;}
._1d_c01047{width:54.970891px;}
._1c_c01047{width:56.088000px;}
.fc0_c01047{color:rgb(0,0,0);}
.fs3_c01047{font-size:38.880000px;}
.fs2_c01047{font-size:48.240000px;}
.fs4_c01047{font-size:59.760000px;}
.fs0_c01047{font-size:66.240000px;}
.fs1_c01047{font-size:72.000000px;}
.y0_c01047{bottom:0.000000px;}
.y35_c01047{bottom:7.035000px;}
.y3c_c01047{bottom:11.325000px;}
.y33_c01047{bottom:18.375000px;}
.y38_c01047{bottom:18.525000px;}
.y3b_c01047{bottom:28.785000px;}
.y32_c01047{bottom:35.835000px;}
.y37_c01047{bottom:35.985000px;}
.y3a_c01047{bottom:45.885000px;}
.y31_c01047{bottom:52.935000px;}
.y3_c01047{bottom:57.636000px;}
.y2_c01047{bottom:77.796000px;}
.y2f_c01047{bottom:109.296000px;}
.y2e_c01047{bottom:127.476000px;}
.y2d_c01047{bottom:132.696000px;}
.y2c_c01047{bottom:147.276000px;}
.y2b_c01047{bottom:190.290000px;}
.y36_c01047{bottom:194.625000px;}
.y39_c01047{bottom:198.405000px;}
.y2a_c01047{bottom:214.050000px;}
.y29_c01047{bottom:237.810000px;}
.y28_c01047{bottom:261.570000px;}
.y27_c01047{bottom:285.375000px;}
.y26_c01047{bottom:309.495000px;}
.y25_c01047{bottom:333.075000px;}
.y24_c01047{bottom:356.835000px;}
.y23_c01047{bottom:380.595000px;}
.y22_c01047{bottom:404.715000px;}
.y21_c01047{bottom:428.475000px;}
.y20_c01047{bottom:452.055000px;}
.y1f_c01047{bottom:475.815000px;}
.y1e_c01047{bottom:514.875000px;}
.y34_c01047{bottom:522.960000px;}
.y1d_c01047{bottom:538.455000px;}
.y1b_c01047{bottom:562.395000px;}
.y1c_c01047{bottom:568.365000px;}
.y1a_c01047{bottom:586.185000px;}
.y19_c01047{bottom:609.945000px;}
.y18_c01047{bottom:633.885000px;}
.y17_c01047{bottom:657.645000px;}
.y16_c01047{bottom:681.405000px;}
.y15_c01047{bottom:705.165000px;}
.y14_c01047{bottom:729.105000px;}
.y13_c01047{bottom:752.865000px;}
.y12_c01047{bottom:776.625000px;}
.y11_c01047{bottom:800.565000px;}
.y10_c01047{bottom:824.145000px;}
.y30_c01047{bottom:849.735000px;}
.yf_c01047{bottom:863.070000px;}
.ye_c01047{bottom:901.770000px;}
.yd_c01047{bottom:925.710000px;}
.yc_c01047{bottom:949.650000px;}
.yb_c01047{bottom:973.410000px;}
.ya_c01047{bottom:996.990000px;}
.y9_c01047{bottom:1020.930000px;}
.y8_c01047{bottom:1044.870000px;}
.y7_c01047{bottom:1068.450000px;}
.y6_c01047{bottom:1092.390000px;}
.y5_c01047{bottom:1116.150000px;}
.y4_c01047{bottom:1139.940000px;}
.y1_c01047{bottom:1194.660000px;}
.hb_c01047{height:20.880000px;}
.h7_c01047{height:41.484960px;}
.h6_c01047{height:43.246406px;}
.h2_c01047{height:48.062812px;}
.hc_c01047{height:49.680000px;}
.h3_c01047{height:50.229844px;}
.ha_c01047{height:53.428008px;}
.hd_c01047{height:59.580000px;}
.h8_c01047{height:63.763920px;}
.h4_c01047{height:64.546875px;}
.h9_c01047{height:66.600000px;}
.h5_c01047{height:1262.865000px;}
.h0_c01047{height:1262.880000px;}
.h1_c01047{height:1263.000000px;}
.w3_c01047{width:108.000000px;}
.w5_c01047{width:168.330000px;}
.w6_c01047{width:169.575000px;}
.w4_c01047{width:189.210000px;}
.w2_c01047{width:892.957500px;}
.w0_c01047{width:892.980000px;}
.w1_c01047{width:893.250000px;}
.x0_c01047{left:0.000000px;}
.x1_c01047{left:127.656000px;}
.x8_c01047{left:146.016000px;}
.x3_c01047{left:246.450000px;}
.x2_c01047{left:247.710000px;}
.x4_c01047{left:268.050000px;}
.x6_c01047{left:307.515000px;}
.x5_c01047{left:308.595000px;}
.x7_c01047{left:343.695000px;}
.x9_c01047{left:575.400000px;}
.xa_c01047{left:595.920000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls4_c01047{letter-spacing:-0.640000pt;}
.ls3_c01047{letter-spacing:-0.512000pt;}
.ls5_c01047{letter-spacing:-0.384000pt;}
.lse_c01047{letter-spacing:-0.230933pt;}
.lsa_c01047{letter-spacing:-0.220267pt;}
.ls8_c01047{letter-spacing:-0.161067pt;}
.ls2_c01047{letter-spacing:0.000000pt;}
.ls1_c01047{letter-spacing:0.106667pt;}
.ls6_c01047{letter-spacing:0.128000pt;}
.ls9_c01047{letter-spacing:0.133333pt;}
.lsb_c01047{letter-spacing:0.135467pt;}
.lsd_c01047{letter-spacing:0.156267pt;}
.ls0_c01047{letter-spacing:0.192000pt;}
.ls7_c01047{letter-spacing:0.256000pt;}
.lsc_c01047{letter-spacing:0.504533pt;}
.ws1_c01047{word-spacing:-18.854507pt;}
.ws0_c01047{word-spacing:-17.792000pt;}
.ws2_c01047{word-spacing:-14.536427pt;}
.ws3_c01047{word-spacing:0.000000pt;}
._3_c01047{margin-left:-3.840986pt;}
._2_c01047{margin-left:-2.944000pt;}
._e_c01047{margin-left:-2.049007pt;}
._0_c01047{margin-left:-1.119014pt;}
._6_c01047{width:1.738688pt;}
._13_c01047{width:2.667631pt;}
._5_c01047{width:3.616000pt;}
._4_c01047{width:4.928000pt;}
._b_c01047{width:5.888000pt;}
._f_c01047{width:6.869312pt;}
._1_c01047{width:9.024000pt;}
._7_c01047{width:10.176000pt;}
._8_c01047{width:12.064000pt;}
._c_c01047{width:12.959014pt;}
._d_c01047{width:14.144000pt;}
._9_c01047{width:16.384000pt;}
._a_c01047{width:18.751014pt;}
._12_c01047{width:19.648000pt;}
._19_c01047{width:20.920290pt;}
._11_c01047{width:21.855014pt;}
._10_c01047{width:23.104000pt;}
._18_c01047{width:24.223014pt;}
._15_c01047{width:31.168000pt;}
._14_c01047{width:32.064000pt;}
._1a_c01047{width:33.216000pt;}
._17_c01047{width:35.392000pt;}
._16_c01047{width:36.352000pt;}
._1b_c01047{width:37.568000pt;}
._1d_c01047{width:48.863014pt;}
._1c_c01047{width:49.856000pt;}
.fs3_c01047{font-size:34.560000pt;}
.fs2_c01047{font-size:42.880000pt;}
.fs4_c01047{font-size:53.120000pt;}
.fs0_c01047{font-size:58.880000pt;}
.fs1_c01047{font-size:64.000000pt;}
.y0_c01047{bottom:0.000000pt;}
.y35_c01047{bottom:6.253333pt;}
.y3c_c01047{bottom:10.066667pt;}
.y33_c01047{bottom:16.333333pt;}
.y38_c01047{bottom:16.466667pt;}
.y3b_c01047{bottom:25.586667pt;}
.y32_c01047{bottom:31.853333pt;}
.y37_c01047{bottom:31.986667pt;}
.y3a_c01047{bottom:40.786667pt;}
.y31_c01047{bottom:47.053333pt;}
.y3_c01047{bottom:51.232000pt;}
.y2_c01047{bottom:69.152000pt;}
.y2f_c01047{bottom:97.152000pt;}
.y2e_c01047{bottom:113.312000pt;}
.y2d_c01047{bottom:117.952000pt;}
.y2c_c01047{bottom:130.912000pt;}
.y2b_c01047{bottom:169.146667pt;}
.y36_c01047{bottom:173.000000pt;}
.y39_c01047{bottom:176.360000pt;}
.y2a_c01047{bottom:190.266667pt;}
.y29_c01047{bottom:211.386667pt;}
.y28_c01047{bottom:232.506667pt;}
.y27_c01047{bottom:253.666667pt;}
.y26_c01047{bottom:275.106667pt;}
.y25_c01047{bottom:296.066667pt;}
.y24_c01047{bottom:317.186667pt;}
.y23_c01047{bottom:338.306667pt;}
.y22_c01047{bottom:359.746667pt;}
.y21_c01047{bottom:380.866667pt;}
.y20_c01047{bottom:401.826667pt;}
.y1f_c01047{bottom:422.946667pt;}
.y1e_c01047{bottom:457.666667pt;}
.y34_c01047{bottom:464.853333pt;}
.y1d_c01047{bottom:478.626667pt;}
.y1b_c01047{bottom:499.906667pt;}
.y1c_c01047{bottom:505.213333pt;}
.y1a_c01047{bottom:521.053333pt;}
.y19_c01047{bottom:542.173333pt;}
.y18_c01047{bottom:563.453333pt;}
.y17_c01047{bottom:584.573333pt;}
.y16_c01047{bottom:605.693333pt;}
.y15_c01047{bottom:626.813333pt;}
.y14_c01047{bottom:648.093333pt;}
.y13_c01047{bottom:669.213333pt;}
.y12_c01047{bottom:690.333333pt;}
.y11_c01047{bottom:711.613333pt;}
.y10_c01047{bottom:732.573333pt;}
.y30_c01047{bottom:755.320000pt;}
.yf_c01047{bottom:767.173333pt;}
.ye_c01047{bottom:801.573333pt;}
.yd_c01047{bottom:822.853333pt;}
.yc_c01047{bottom:844.133333pt;}
.yb_c01047{bottom:865.253333pt;}
.ya_c01047{bottom:886.213333pt;}
.y9_c01047{bottom:907.493333pt;}
.y8_c01047{bottom:928.773333pt;}
.y7_c01047{bottom:949.733333pt;}
.y6_c01047{bottom:971.013333pt;}
.y5_c01047{bottom:992.133333pt;}
.y4_c01047{bottom:1013.280000pt;}
.y1_c01047{bottom:1061.920000pt;}
.hb_c01047{height:18.560000pt;}
.h7_c01047{height:36.875520pt;}
.h6_c01047{height:38.441250pt;}
.h2_c01047{height:42.722500pt;}
.hc_c01047{height:44.160000pt;}
.h3_c01047{height:44.648750pt;}
.ha_c01047{height:47.491563pt;}
.hd_c01047{height:52.960000pt;}
.h8_c01047{height:56.679040pt;}
.h4_c01047{height:57.375000pt;}
.h9_c01047{height:59.200000pt;}
.h5_c01047{height:1122.546667pt;}
.h0_c01047{height:1122.560000pt;}
.h1_c01047{height:1122.666667pt;}
.w3_c01047{width:96.000000pt;}
.w5_c01047{width:149.626667pt;}
.w6_c01047{width:150.733333pt;}
.w4_c01047{width:168.186667pt;}
.w2_c01047{width:793.740000pt;}
.w0_c01047{width:793.760000pt;}
.w1_c01047{width:794.000000pt;}
.x0_c01047{left:0.000000pt;}
.x1_c01047{left:113.472000pt;}
.x8_c01047{left:129.792000pt;}
.x3_c01047{left:219.066667pt;}
.x2_c01047{left:220.186667pt;}
.x4_c01047{left:238.266667pt;}
.x6_c01047{left:273.346667pt;}
.x5_c01047{left:274.306667pt;}
.x7_c01047{left:305.506667pt;}
.x9_c01047{left:511.466667pt;}
.xa_c01047{left:529.706667pt;}
}





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

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01048;src:url('chunks/assets/font_36f0d5eda4e32263b753e0d1.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01048;src:url('chunks/assets/font_e56e8b31fa79996b1f9d7e59.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_312bcc4d89de45b36ba719d7.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01048;src:url('chunks/assets/font_d17950533b00b6c54b7aa2e2.woff2')format("woff");}.ff5_c01048{font-family:ff5_c01048;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01048;src:url('chunks/assets/font_8577d406bb4d99bc1edca786.woff2')format("woff");}.ff6_c01048{font-family:ff6_c01048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01048;src:url('chunks/assets/font_2ed6b4eabea560e22300f766.woff2')format("woff");}.ff7_c01048{font-family:ff7_c01048;line-height:1.211914;font-style:normal;font-weight: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_c01048;src:url('chunks/assets/font_b5d371b717eb2df7074ed560.woff2')format("woff");}.ff8_c01048{font-family:ff8_c01048;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.ls4_c01048{letter-spacing:-0.576000px;}
.ls7_c01048{letter-spacing:-0.272400px;}
.ls3_c01048{letter-spacing:-0.181200px;}
.ls8_c01048{letter-spacing:-0.152400px;}
.ls5_c01048{letter-spacing:-0.053400px;}
.ls1_c01048{letter-spacing:0.000000px;}
.ls6_c01048{letter-spacing:0.150000px;}
.ls9_c01048{letter-spacing:0.152400px;}
.ls2_c01048{letter-spacing:0.288000px;}
.ls0_c01048{letter-spacing:0.567840px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01048{word-spacing:-21.035520px;}
.ws0_c01048{word-spacing:-20.016000px;}
.ws2_c01048{word-spacing:0.000000px;}
._5_c01048{margin-left:-3.289159px;}
._0_c01048{margin-left:-1.390841px;}
._3_c01048{width:1.368000px;}
._d_c01048{width:2.492548px;}
._4_c01048{width:3.816000px;}
._b_c01048{width:5.617135px;}
._2_c01048{width:7.486865px;}
._1_c01048{width:8.640000px;}
._7_c01048{width:10.895952px;}
._6_c01048{width:12.000024px;}
._8_c01048{width:13.104000px;}
._9_c01048{width:14.350841px;}
._a_c01048{width:15.709159px;}
._c_c01048{width:16.762841px;}
.fc0_c01048{color:rgb(0,0,0);}
.fs4_c01048{font-size:38.880000px;}
.fs2_c01048{font-size:48.240000px;}
.fs3_c01048{font-size:59.760000px;}
.fs0_c01048{font-size:66.240000px;}
.fs1_c01048{font-size:72.000000px;}
.y0_c01048{bottom:0.000000px;}
.y3_c01048{bottom:57.636000px;}
.y2_c01048{bottom:77.796000px;}
.y1b_c01048{bottom:109.296000px;}
.y1a_c01048{bottom:127.476000px;}
.y19_c01048{bottom:146.556000px;}
.y18_c01048{bottom:151.770000px;}
.y17_c01048{bottom:166.350000px;}
.y16_c01048{bottom:324.435000px;}
.y15_c01048{bottom:356.295000px;}
.y14_c01048{bottom:722.805000px;}
.y13_c01048{bottom:746.745000px;}
.y12_c01048{bottom:770.325000px;}
.y11_c01048{bottom:794.085000px;}
.y10_c01048{bottom:832.965000px;}
.yf_c01048{bottom:871.890000px;}
.ye_c01048{bottom:910.590000px;}
.yd_c01048{bottom:934.530000px;}
.yc_c01048{bottom:958.290000px;}
.yb_c01048{bottom:982.230000px;}
.ya_c01048{bottom:1005.810000px;}
.y8_c01048{bottom:1029.750000px;}
.y9_c01048{bottom:1035.690000px;}
.y7_c01048{bottom:1053.690000px;}
.y6_c01048{bottom:1092.210000px;}
.y5_c01048{bottom:1116.150000px;}
.y4_c01048{bottom:1139.940000px;}
.y1_c01048{bottom:1194.660000px;}
.h9_c01048{height:29.482734px;}
.h6_c01048{height:43.246406px;}
.h2_c01048{height:48.062812px;}
.h3_c01048{height:50.229844px;}
.h8_c01048{height:53.428008px;}
.ha_c01048{height:63.763920px;}
.h4_c01048{height:64.546875px;}
.h7_c01048{height:65.003906px;}
.h5_c01048{height:1262.865000px;}
.h0_c01048{height:1262.880000px;}
.h1_c01048{height:1263.000000px;}
.w2_c01048{width:892.957500px;}
.w0_c01048{width:892.980000px;}
.w1_c01048{width:893.250000px;}
.x0_c01048{left:0.000000px;}
.x3_c01048{left:127.656000px;}
.x8_c01048{left:142.236000px;}
.x1_c01048{left:169.950000px;}
.x4_c01048{left:195.667500px;}
.x5_c01048{left:215.670000px;}
.x7_c01048{left:343.695000px;}
.x6_c01048{left:703.230000px;}
.x2_c01048{left:740.490000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls4_c01048{letter-spacing:-0.512000pt;}
.ls7_c01048{letter-spacing:-0.242133pt;}
.ls3_c01048{letter-spacing:-0.161067pt;}
.ls8_c01048{letter-spacing:-0.135467pt;}
.ls5_c01048{letter-spacing:-0.047467pt;}
.ls1_c01048{letter-spacing:0.000000pt;}
.ls6_c01048{letter-spacing:0.133333pt;}
.ls9_c01048{letter-spacing:0.135467pt;}
.ls2_c01048{letter-spacing:0.256000pt;}
.ls0_c01048{letter-spacing:0.504747pt;}
.ws1_c01048{word-spacing:-18.698240pt;}
.ws0_c01048{word-spacing:-17.792000pt;}
.ws2_c01048{word-spacing:0.000000pt;}
._5_c01048{margin-left:-2.923697pt;}
._0_c01048{margin-left:-1.236303pt;}
._3_c01048{width:1.216000pt;}
._d_c01048{width:2.215598pt;}
._4_c01048{width:3.392000pt;}
._b_c01048{width:4.993009pt;}
._2_c01048{width:6.654991pt;}
._1_c01048{width:7.680000pt;}
._7_c01048{width:9.685291pt;}
._6_c01048{width:10.666688pt;}
._8_c01048{width:11.648000pt;}
._9_c01048{width:12.756303pt;}
._a_c01048{width:13.963697pt;}
._c_c01048{width:14.900303pt;}
.fs4_c01048{font-size:34.560000pt;}
.fs2_c01048{font-size:42.880000pt;}
.fs3_c01048{font-size:53.120000pt;}
.fs0_c01048{font-size:58.880000pt;}
.fs1_c01048{font-size:64.000000pt;}
.y0_c01048{bottom:0.000000pt;}
.y3_c01048{bottom:51.232000pt;}
.y2_c01048{bottom:69.152000pt;}
.y1b_c01048{bottom:97.152000pt;}
.y1a_c01048{bottom:113.312000pt;}
.y19_c01048{bottom:130.272000pt;}
.y18_c01048{bottom:134.906667pt;}
.y17_c01048{bottom:147.866667pt;}
.y16_c01048{bottom:288.386667pt;}
.y15_c01048{bottom:316.706667pt;}
.y14_c01048{bottom:642.493333pt;}
.y13_c01048{bottom:663.773333pt;}
.y12_c01048{bottom:684.733333pt;}
.y11_c01048{bottom:705.853333pt;}
.y10_c01048{bottom:740.413333pt;}
.yf_c01048{bottom:775.013333pt;}
.ye_c01048{bottom:809.413333pt;}
.yd_c01048{bottom:830.693333pt;}
.yc_c01048{bottom:851.813333pt;}
.yb_c01048{bottom:873.093333pt;}
.ya_c01048{bottom:894.053333pt;}
.y8_c01048{bottom:915.333333pt;}
.y9_c01048{bottom:920.613333pt;}
.y7_c01048{bottom:936.613333pt;}
.y6_c01048{bottom:970.853333pt;}
.y5_c01048{bottom:992.133333pt;}
.y4_c01048{bottom:1013.280000pt;}
.y1_c01048{bottom:1061.920000pt;}
.h9_c01048{height:26.206875pt;}
.h6_c01048{height:38.441250pt;}
.h2_c01048{height:42.722500pt;}
.h3_c01048{height:44.648750pt;}
.h8_c01048{height:47.491563pt;}
.ha_c01048{height:56.679040pt;}
.h4_c01048{height:57.375000pt;}
.h7_c01048{height:57.781250pt;}
.h5_c01048{height:1122.546667pt;}
.h0_c01048{height:1122.560000pt;}
.h1_c01048{height:1122.666667pt;}
.w2_c01048{width:793.740000pt;}
.w0_c01048{width:793.760000pt;}
.w1_c01048{width:794.000000pt;}
.x0_c01048{left:0.000000pt;}
.x3_c01048{left:113.472000pt;}
.x8_c01048{left:126.432000pt;}
.x1_c01048{left:151.066667pt;}
.x4_c01048{left:173.926667pt;}
.x5_c01048{left:191.706667pt;}
.x7_c01048{left:305.506667pt;}
.x6_c01048{left:625.093333pt;}
.x2_c01048{left:658.213333pt;}
}





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

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01049;src:url('chunks/assets/font_c6c3b84fbfec9cc0e570f78d.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01049;src:url('chunks/assets/font_4c4b3c70eeae06ce01d0bfbf.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01049;src:url('chunks/assets/font_a6ac7236bf39e82ecaa64698.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01049;src:url('chunks/assets/font_0a21b88c4cc7b287fe86fb37.woff2')format("woff");}.ff5_c01049{font-family:ff5_c01049;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01049;src:url('chunks/assets/font_9c3b999f189f0cdba89ef15e.woff2')format("woff");}.ff6_c01049{font-family:ff6_c01049;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls6_c01049{letter-spacing:-0.328200px;}
.ls5_c01049{letter-spacing:-0.247800px;}
.ls3_c01049{letter-spacing:-0.181200px;}
.ls7_c01049{letter-spacing:-0.152400px;}
.ls2_c01049{letter-spacing:-0.053400px;}
.ls1_c01049{letter-spacing:0.000000px;}
.ls4_c01049{letter-spacing:0.150000px;}
.ls0_c01049{letter-spacing:0.288000px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01049{word-spacing:-20.707320px;}
.ws1_c01049{word-spacing:-20.304000px;}
.ws0_c01049{word-spacing:-20.016000px;}
.ws3_c01049{word-spacing:0.000000px;}
._6_c01049{margin-left:-5.112000px;}
._5_c01049{margin-left:-4.032000px;}
._b_c01049{margin-left:-2.976000px;}
._0_c01049{margin-left:-1.258891px;}
._1_c01049{width:1.417680px;}
._12_c01049{width:2.887531px;}
._7_c01049{width:4.104000px;}
._8_c01049{width:5.232024px;}
._a_c01049{width:6.492053px;}
._9_c01049{width:7.821806px;}
._2_c01049{width:9.072000px;}
._e_c01049{width:10.656000px;}
._d_c01049{width:11.736000px;}
._f_c01049{width:13.328698px;}
._4_c01049{width:14.688000px;}
._3_c01049{width:15.840000px;}
._c_c01049{width:18.264024px;}
._11_c01049{width:22.248000px;}
._10_c01049{width:23.328000px;}
.fc0_c01049{color:rgb(0,0,0);}
.fs4_c01049{font-size:38.880000px;}
.fs3_c01049{font-size:48.240000px;}
.fs1_c01049{font-size:59.760000px;}
.fs0_c01049{font-size:66.240000px;}
.fs2_c01049{font-size:72.000000px;}
.y0_c01049{bottom:0.000000px;}
.y26_c01049{bottom:2.355000px;}
.y25_c01049{bottom:19.635000px;}
.y24_c01049{bottom:36.915000px;}
.y3_c01049{bottom:57.636000px;}
.y2_c01049{bottom:77.796000px;}
.y22_c01049{bottom:109.296000px;}
.y21_c01049{bottom:127.476000px;}
.y20_c01049{bottom:132.696000px;}
.y1f_c01049{bottom:147.276000px;}
.y1e_c01049{bottom:182.730000px;}
.y1d_c01049{bottom:206.490000px;}
.y1c_c01049{bottom:230.250000px;}
.y1b_c01049{bottom:269.130000px;}
.y1a_c01049{bottom:292.935000px;}
.y19_c01049{bottom:316.695000px;}
.y18_c01049{bottom:340.455000px;}
.y17_c01049{bottom:364.395000px;}
.y16_c01049{bottom:388.155000px;}
.y15_c01049{bottom:412.095000px;}
.y13_c01049{bottom:435.855000px;}
.y14_c01049{bottom:441.795000px;}
.y12_c01049{bottom:459.435000px;}
.y23_c01049{bottom:475.260000px;}
.y11_c01049{bottom:483.375000px;}
.y10_c01049{bottom:507.135000px;}
.yf_c01049{bottom:530.895000px;}
.ye_c01049{bottom:554.655000px;}
.yd_c01049{bottom:578.805000px;}
.yc_c01049{bottom:602.565000px;}
.yb_c01049{bottom:626.325000px;}
.ya_c01049{bottom:649.905000px;}
.y9_c01049{bottom:673.845000px;}
.y8_c01049{bottom:697.605000px;}
.y7_c01049{bottom:721.365000px;}
.y6_c01049{bottom:745.125000px;}
.y5_c01049{bottom:780.405000px;}
.y4_c01049{bottom:812.265000px;}
.y1_c01049{bottom:1194.660000px;}
.h8_c01049{height:41.484960px;}
.h7_c01049{height:43.246406px;}
.h2_c01049{height:48.062812px;}
.h3_c01049{height:50.229844px;}
.ha_c01049{height:50.580000px;}
.h4_c01049{height:53.428008px;}
.h9_c01049{height:63.763920px;}
.h5_c01049{height:64.546875px;}
.h6_c01049{height:1262.865000px;}
.h0_c01049{height:1262.880000px;}
.h1_c01049{height:1263.000000px;}
.w3_c01049{width:130.162500px;}
.w2_c01049{width:892.957500px;}
.w0_c01049{width:892.980000px;}
.w1_c01049{width:893.250000px;}
.x0_c01049{left:0.000000px;}
.x1_c01049{left:127.656000px;}
.x6_c01049{left:146.016000px;}
.x5_c01049{left:343.695000px;}
.x3_c01049{left:564.382500px;}
.x4_c01049{left:584.385000px;}
.x7_c01049{left:640.920000px;}
.x2_c01049{left:703.410000px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls6_c01049{letter-spacing:-0.291733pt;}
.ls5_c01049{letter-spacing:-0.220267pt;}
.ls3_c01049{letter-spacing:-0.161067pt;}
.ls7_c01049{letter-spacing:-0.135467pt;}
.ls2_c01049{letter-spacing:-0.047467pt;}
.ls1_c01049{letter-spacing:0.000000pt;}
.ls4_c01049{letter-spacing:0.133333pt;}
.ls0_c01049{letter-spacing:0.256000pt;}
.ws2_c01049{word-spacing:-18.406507pt;}
.ws1_c01049{word-spacing:-18.048000pt;}
.ws0_c01049{word-spacing:-17.792000pt;}
.ws3_c01049{word-spacing:0.000000pt;}
._6_c01049{margin-left:-4.544000pt;}
._5_c01049{margin-left:-3.584000pt;}
._b_c01049{margin-left:-2.645333pt;}
._0_c01049{margin-left:-1.119014pt;}
._1_c01049{width:1.260160pt;}
._12_c01049{width:2.566694pt;}
._7_c01049{width:3.648000pt;}
._8_c01049{width:4.650688pt;}
._a_c01049{width:5.770714pt;}
._9_c01049{width:6.952717pt;}
._2_c01049{width:8.064000pt;}
._e_c01049{width:9.472000pt;}
._d_c01049{width:10.432000pt;}
._f_c01049{width:11.847731pt;}
._4_c01049{width:13.056000pt;}
._3_c01049{width:14.080000pt;}
._c_c01049{width:16.234688pt;}
._11_c01049{width:19.776000pt;}
._10_c01049{width:20.736000pt;}
.fs4_c01049{font-size:34.560000pt;}
.fs3_c01049{font-size:42.880000pt;}
.fs1_c01049{font-size:53.120000pt;}
.fs0_c01049{font-size:58.880000pt;}
.fs2_c01049{font-size:64.000000pt;}
.y0_c01049{bottom:0.000000pt;}
.y26_c01049{bottom:2.093333pt;}
.y25_c01049{bottom:17.453333pt;}
.y24_c01049{bottom:32.813333pt;}
.y3_c01049{bottom:51.232000pt;}
.y2_c01049{bottom:69.152000pt;}
.y22_c01049{bottom:97.152000pt;}
.y21_c01049{bottom:113.312000pt;}
.y20_c01049{bottom:117.952000pt;}
.y1f_c01049{bottom:130.912000pt;}
.y1e_c01049{bottom:162.426667pt;}
.y1d_c01049{bottom:183.546667pt;}
.y1c_c01049{bottom:204.666667pt;}
.y1b_c01049{bottom:239.226667pt;}
.y1a_c01049{bottom:260.386667pt;}
.y19_c01049{bottom:281.506667pt;}
.y18_c01049{bottom:302.626667pt;}
.y17_c01049{bottom:323.906667pt;}
.y16_c01049{bottom:345.026667pt;}
.y15_c01049{bottom:366.306667pt;}
.y13_c01049{bottom:387.426667pt;}
.y14_c01049{bottom:392.706667pt;}
.y12_c01049{bottom:408.386667pt;}
.y23_c01049{bottom:422.453333pt;}
.y11_c01049{bottom:429.666667pt;}
.y10_c01049{bottom:450.786667pt;}
.yf_c01049{bottom:471.906667pt;}
.ye_c01049{bottom:493.026667pt;}
.yd_c01049{bottom:514.493333pt;}
.yc_c01049{bottom:535.613333pt;}
.yb_c01049{bottom:556.733333pt;}
.ya_c01049{bottom:577.693333pt;}
.y9_c01049{bottom:598.973333pt;}
.y8_c01049{bottom:620.093333pt;}
.y7_c01049{bottom:641.213333pt;}
.y6_c01049{bottom:662.333333pt;}
.y5_c01049{bottom:693.693333pt;}
.y4_c01049{bottom:722.013333pt;}
.y1_c01049{bottom:1061.920000pt;}
.h8_c01049{height:36.875520pt;}
.h7_c01049{height:38.441250pt;}
.h2_c01049{height:42.722500pt;}
.h3_c01049{height:44.648750pt;}
.ha_c01049{height:44.960000pt;}
.h4_c01049{height:47.491563pt;}
.h9_c01049{height:56.679040pt;}
.h5_c01049{height:57.375000pt;}
.h6_c01049{height:1122.546667pt;}
.h0_c01049{height:1122.560000pt;}
.h1_c01049{height:1122.666667pt;}
.w3_c01049{width:115.700000pt;}
.w2_c01049{width:793.740000pt;}
.w0_c01049{width:793.760000pt;}
.w1_c01049{width:794.000000pt;}
.x0_c01049{left:0.000000pt;}
.x1_c01049{left:113.472000pt;}
.x6_c01049{left:129.792000pt;}
.x5_c01049{left:305.506667pt;}
.x3_c01049{left:501.673333pt;}
.x4_c01049{left:519.453333pt;}
.x7_c01049{left:569.706667pt;}
.x2_c01049{left:625.253333pt;}
}





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

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01050;src:url('chunks/assets/font_56243da7e0cbe2e829d1ae52.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01050;src:url('chunks/assets/font_b07fa015da4ca52a635bcb0f.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01050;src:url('chunks/assets/font_0b5706a0ad027af5f95a7f96.woff2')format("woff");}.ff4_c01050{font-family:ff4_c01050;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01050;src:url('chunks/assets/font_7e9db22c7b2c2ae3c0294ea1.woff2')format("woff");}.ff5_c01050{font-family:ff5_c01050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01050;src:url('chunks/assets/font_7b660b97aa2b7288e7b81890.woff2')format("woff");}.ff6_c01050{font-family:ff6_c01050;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.ls4_c01050{letter-spacing:-0.576000px;}
.ls3_c01050{letter-spacing:-0.432000px;}
.ls6_c01050{letter-spacing:-0.272400px;}
.ls8_c01050{letter-spacing:-0.247800px;}
.ls1_c01050{letter-spacing:-0.181200px;}
.ls0_c01050{letter-spacing:0.000000px;}
.ls2_c01050{letter-spacing:0.144000px;}
.ls5_c01050{letter-spacing:0.150000px;}
.ls7_c01050{letter-spacing:0.174000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:-20.016000px;}
.ws1_c01050{word-spacing:0.000000px;}
._b_c01050{margin-left:-3.960000px;}
._a_c01050{margin-left:-2.405794px;}
._0_c01050{margin-left:-1.390841px;}
._4_c01050{width:1.152000px;}
._1_c01050{width:2.784024px;}
._9_c01050{width:4.316524px;}
._8_c01050{width:5.472000px;}
._3_c01050{width:7.272000px;}
._2_c01050{width:8.352000px;}
._d_c01050{width:9.969683px;}
._6_c01050{width:12.130841px;}
._5_c01050{width:13.248000px;}
._7_c01050{width:14.415476px;}
._e_c01050{width:21.168000px;}
._c_c01050{width:1604.748000px;}
.fc0_c01050{color:rgb(0,0,0);}
.fs3_c01050{font-size:38.880000px;}
.fs2_c01050{font-size:48.240000px;}
.fs4_c01050{font-size:59.760000px;}
.fs0_c01050{font-size:66.240000px;}
.fs1_c01050{font-size:72.000000px;}
.y0_c01050{bottom:0.000000px;}
.y2b_c01050{bottom:9.900000px;}
.y29_c01050{bottom:11.340000px;}
.y28_c01050{bottom:28.800000px;}
.y27_c01050{bottom:45.900000px;}
.y3_c01050{bottom:57.636000px;}
.y2_c01050{bottom:77.796000px;}
.y25_c01050{bottom:109.296000px;}
.y24_c01050{bottom:114.516000px;}
.y23_c01050{bottom:127.476000px;}
.y22_c01050{bottom:132.696000px;}
.y21_c01050{bottom:146.556000px;}
.y20_c01050{bottom:151.770000px;}
.y1f_c01050{bottom:166.350000px;}
.y1e_c01050{bottom:237.630000px;}
.y1d_c01050{bottom:261.570000px;}
.y1c_c01050{bottom:285.375000px;}
.y1b_c01050{bottom:324.435000px;}
.y1a_c01050{bottom:348.195000px;}
.y19_c01050{bottom:371.955000px;}
.y18_c01050{bottom:395.535000px;}
.y17_c01050{bottom:419.475000px;}
.y16_c01050{bottom:443.235000px;}
.y15_c01050{bottom:466.995000px;}
.y13_c01050{bottom:490.755000px;}
.y14_c01050{bottom:496.695000px;}
.y12_c01050{bottom:514.695000px;}
.y11_c01050{bottom:553.395000px;}
.y26_c01050{bottom:564.765000px;}
.y10_c01050{bottom:592.305000px;}
.y2a_c01050{bottom:596.445000px;}
.yf_c01050{bottom:627.045000px;}
.ye_c01050{bottom:949.470000px;}
.yd_c01050{bottom:973.410000px;}
.yc_c01050{bottom:996.990000px;}
.yb_c01050{bottom:1020.750000px;}
.y9_c01050{bottom:1044.690000px;}
.ya_c01050{bottom:1050.630000px;}
.y8_c01050{bottom:1068.450000px;}
.y7_c01050{bottom:1092.390000px;}
.y5_c01050{bottom:1115.970000px;}
.y6_c01050{bottom:1121.910000px;}
.y4_c01050{bottom:1139.940000px;}
.y1_c01050{bottom:1194.660000px;}
.hc_c01050{height:23.760000px;}
.h7_c01050{height:29.482734px;}
.h9_c01050{height:41.484960px;}
.h6_c01050{height:43.246406px;}
.h2_c01050{height:48.062812px;}
.h3_c01050{height:50.229844px;}
.hb_c01050{height:53.428008px;}
.ha_c01050{height:59.580000px;}
.h8_c01050{height:63.763920px;}
.h4_c01050{height:64.546875px;}
.h5_c01050{height:1262.865000px;}
.h0_c01050{height:1262.880000px;}
.h1_c01050{height:1263.000000px;}
.w3_c01050{width:200.550000px;}
.w4_c01050{width:337.935000px;}
.w2_c01050{width:892.957500px;}
.w0_c01050{width:892.980000px;}
.w1_c01050{width:893.250000px;}
.x0_c01050{left:0.000000px;}
.x3_c01050{left:127.656000px;}
.x10_c01050{left:140.625000px;}
.xe_c01050{left:142.236000px;}
.xf_c01050{left:146.016000px;}
.x1_c01050{left:169.950000px;}
.xb_c01050{left:226.627500px;}
.xc_c01050{left:246.630000px;}
.x8_c01050{left:341.175000px;}
.xd_c01050{left:343.695000px;}
.xa_c01050{left:352.155000px;}
.x11_c01050{left:354.315000px;}
.x4_c01050{left:514.162500px;}
.x6_c01050{left:532.522500px;}
.x5_c01050{left:534.165000px;}
.x7_c01050{left:552.525000px;}
.x9_c01050{left:734.190000px;}
.x2_c01050{left:740.490000px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls4_c01050{letter-spacing:-0.512000pt;}
.ls3_c01050{letter-spacing:-0.384000pt;}
.ls6_c01050{letter-spacing:-0.242133pt;}
.ls8_c01050{letter-spacing:-0.220267pt;}
.ls1_c01050{letter-spacing:-0.161067pt;}
.ls0_c01050{letter-spacing:0.000000pt;}
.ls2_c01050{letter-spacing:0.128000pt;}
.ls5_c01050{letter-spacing:0.133333pt;}
.ls7_c01050{letter-spacing:0.154667pt;}
.ws0_c01050{word-spacing:-17.792000pt;}
.ws1_c01050{word-spacing:0.000000pt;}
._b_c01050{margin-left:-3.520000pt;}
._a_c01050{margin-left:-2.138483pt;}
._0_c01050{margin-left:-1.236303pt;}
._4_c01050{width:1.024000pt;}
._1_c01050{width:2.474688pt;}
._9_c01050{width:3.836910pt;}
._8_c01050{width:4.864000pt;}
._3_c01050{width:6.464000pt;}
._2_c01050{width:7.424000pt;}
._d_c01050{width:8.861940pt;}
._6_c01050{width:10.782970pt;}
._5_c01050{width:11.776000pt;}
._7_c01050{width:12.813757pt;}
._e_c01050{width:18.816000pt;}
._c_c01050{width:1426.442667pt;}
.fs3_c01050{font-size:34.560000pt;}
.fs2_c01050{font-size:42.880000pt;}
.fs4_c01050{font-size:53.120000pt;}
.fs0_c01050{font-size:58.880000pt;}
.fs1_c01050{font-size:64.000000pt;}
.y0_c01050{bottom:0.000000pt;}
.y2b_c01050{bottom:8.800000pt;}
.y29_c01050{bottom:10.080000pt;}
.y28_c01050{bottom:25.600000pt;}
.y27_c01050{bottom:40.800000pt;}
.y3_c01050{bottom:51.232000pt;}
.y2_c01050{bottom:69.152000pt;}
.y25_c01050{bottom:97.152000pt;}
.y24_c01050{bottom:101.792000pt;}
.y23_c01050{bottom:113.312000pt;}
.y22_c01050{bottom:117.952000pt;}
.y21_c01050{bottom:130.272000pt;}
.y20_c01050{bottom:134.906667pt;}
.y1f_c01050{bottom:147.866667pt;}
.y1e_c01050{bottom:211.226667pt;}
.y1d_c01050{bottom:232.506667pt;}
.y1c_c01050{bottom:253.666667pt;}
.y1b_c01050{bottom:288.386667pt;}
.y1a_c01050{bottom:309.506667pt;}
.y19_c01050{bottom:330.626667pt;}
.y18_c01050{bottom:351.586667pt;}
.y17_c01050{bottom:372.866667pt;}
.y16_c01050{bottom:393.986667pt;}
.y15_c01050{bottom:415.106667pt;}
.y13_c01050{bottom:436.226667pt;}
.y14_c01050{bottom:441.506667pt;}
.y12_c01050{bottom:457.506667pt;}
.y11_c01050{bottom:491.906667pt;}
.y26_c01050{bottom:502.013333pt;}
.y10_c01050{bottom:526.493333pt;}
.y2a_c01050{bottom:530.173333pt;}
.yf_c01050{bottom:557.373333pt;}
.ye_c01050{bottom:843.973333pt;}
.yd_c01050{bottom:865.253333pt;}
.yc_c01050{bottom:886.213333pt;}
.yb_c01050{bottom:907.333333pt;}
.y9_c01050{bottom:928.613333pt;}
.ya_c01050{bottom:933.893333pt;}
.y8_c01050{bottom:949.733333pt;}
.y7_c01050{bottom:971.013333pt;}
.y5_c01050{bottom:991.973333pt;}
.y6_c01050{bottom:997.253333pt;}
.y4_c01050{bottom:1013.280000pt;}
.y1_c01050{bottom:1061.920000pt;}
.hc_c01050{height:21.120000pt;}
.h7_c01050{height:26.206875pt;}
.h9_c01050{height:36.875520pt;}
.h6_c01050{height:38.441250pt;}
.h2_c01050{height:42.722500pt;}
.h3_c01050{height:44.648750pt;}
.hb_c01050{height:47.491563pt;}
.ha_c01050{height:52.960000pt;}
.h8_c01050{height:56.679040pt;}
.h4_c01050{height:57.375000pt;}
.h5_c01050{height:1122.546667pt;}
.h0_c01050{height:1122.560000pt;}
.h1_c01050{height:1122.666667pt;}
.w3_c01050{width:178.266667pt;}
.w4_c01050{width:300.386667pt;}
.w2_c01050{width:793.740000pt;}
.w0_c01050{width:793.760000pt;}
.w1_c01050{width:794.000000pt;}
.x0_c01050{left:0.000000pt;}
.x3_c01050{left:113.472000pt;}
.x10_c01050{left:125.000000pt;}
.xe_c01050{left:126.432000pt;}
.xf_c01050{left:129.792000pt;}
.x1_c01050{left:151.066667pt;}
.xb_c01050{left:201.446667pt;}
.xc_c01050{left:219.226667pt;}
.x8_c01050{left:303.266667pt;}
.xd_c01050{left:305.506667pt;}
.xa_c01050{left:313.026667pt;}
.x11_c01050{left:314.946667pt;}
.x4_c01050{left:457.033333pt;}
.x6_c01050{left:473.353333pt;}
.x5_c01050{left:474.813333pt;}
.x7_c01050{left:491.133333pt;}
.x9_c01050{left:652.613333pt;}
.x2_c01050{left:658.213333pt;}
}





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

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01051;src:url('chunks/assets/font_191422e7b432aa6b6a26b68c.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01051;src:url('chunks/assets/font_b7aa8a8a4477207587899f43.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01051;src:url('chunks/assets/font_0a8f1998494dc0761a7776d4.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01051;src:url('chunks/assets/font_cd07a267b021481eb6313ec0.woff2')format("woff");}.ff5_c01051{font-family:ff5_c01051;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01051;src:url('chunks/assets/font_36e52af9030a367d716a47cb.woff2')format("woff");}.ff6_c01051{font-family:ff6_c01051;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.ls6_c01051{letter-spacing:-0.272400px;}
.ls4_c01051{letter-spacing:-0.247800px;}
.ls2_c01051{letter-spacing:-0.181200px;}
.ls1_c01051{letter-spacing:0.000000px;}
.ls3_c01051{letter-spacing:0.150000px;}
.ls5_c01051{letter-spacing:0.152400px;}
.ls0_c01051{letter-spacing:0.174240px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:-20.016000px;}
.ws1_c01051{word-spacing:0.000000px;}
._9_c01051{margin-left:-4.608000px;}
._e_c01051{margin-left:-3.229085px;}
._0_c01051{margin-left:-1.258891px;}
._2_c01051{width:1.116000px;}
._11_c01051{width:2.147976px;}
._6_c01051{width:3.191976px;}
._a_c01051{width:4.464000px;}
._5_c01051{width:5.482915px;}
._1_c01051{width:6.696000px;}
._4_c01051{width:8.064000px;}
._10_c01051{width:9.432000px;}
._3_c01051{width:10.944000px;}
._f_c01051{width:13.320000px;}
._c_c01051{width:16.485782px;}
._b_c01051{width:17.784000px;}
._8_c01051{width:22.680000px;}
._7_c01051{width:24.192000px;}
._d_c01051{width:30.456000px;}
.fc0_c01051{color:rgb(0,0,0);}
.fs3_c01051{font-size:38.880000px;}
.fs2_c01051{font-size:48.240000px;}
.fs4_c01051{font-size:59.760000px;}
.fs0_c01051{font-size:66.240000px;}
.fs1_c01051{font-size:72.000000px;}
.y0_c01051{bottom:0.000000px;}
.y2b_c01051{bottom:3.240000px;}
.y2a_c01051{bottom:20.700000px;}
.y3_c01051{bottom:57.636000px;}
.y2_c01051{bottom:77.796000px;}
.y28_c01051{bottom:110.196000px;}
.y27_c01051{bottom:115.416000px;}
.y26_c01051{bottom:129.276000px;}
.y25_c01051{bottom:134.496000px;}
.y24_c01051{bottom:147.456000px;}
.y23_c01051{bottom:165.630000px;}
.y22_c01051{bottom:170.850000px;}
.y21_c01051{bottom:185.430000px;}
.y20_c01051{bottom:484.635000px;}
.y1f_c01051{bottom:508.575000px;}
.y1e_c01051{bottom:532.335000px;}
.y1d_c01051{bottom:556.095000px;}
.y1c_c01051{bottom:579.885000px;}
.y1b_c01051{bottom:603.645000px;}
.y1a_c01051{bottom:627.585000px;}
.y18_c01051{bottom:651.345000px;}
.y19_c01051{bottom:657.285000px;}
.y16_c01051{bottom:675.285000px;}
.y17_c01051{bottom:681.225000px;}
.y15_c01051{bottom:698.865000px;}
.y14_c01051{bottom:722.805000px;}
.y13_c01051{bottom:746.565000px;}
.y12_c01051{bottom:785.265000px;}
.y29_c01051{bottom:797.325000px;}
.y11_c01051{bottom:824.145000px;}
.y10_c01051{bottom:863.070000px;}
.yf_c01051{bottom:887.010000px;}
.ye_c01051{bottom:910.590000px;}
.yd_c01051{bottom:934.350000px;}
.yc_c01051{bottom:958.290000px;}
.yb_c01051{bottom:982.050000px;}
.ya_c01051{bottom:1005.810000px;}
.y9_c01051{bottom:1029.570000px;}
.y8_c01051{bottom:1068.450000px;}
.y7_c01051{bottom:1092.210000px;}
.y6_c01051{bottom:1115.970000px;}
.y4_c01051{bottom:1139.940000px;}
.y5_c01051{bottom:1145.880000px;}
.y1_c01051{bottom:1194.660000px;}
.h9_c01051{height:29.482734px;}
.ha_c01051{height:34.380000px;}
.h7_c01051{height:41.484960px;}
.h6_c01051{height:43.246406px;}
.h2_c01051{height:48.062812px;}
.h3_c01051{height:50.229844px;}
.hb_c01051{height:53.428008px;}
.hc_c01051{height:53.573906px;}
.h8_c01051{height:63.763920px;}
.h4_c01051{height:64.546875px;}
.h5_c01051{height:1262.865000px;}
.h0_c01051{height:1262.880000px;}
.h1_c01051{height:1263.000000px;}
.w3_c01051{width:122.962500px;}
.w2_c01051{width:892.957500px;}
.w0_c01051{width:892.980000px;}
.w1_c01051{width:893.250000px;}
.x0_c01051{left:0.000000px;}
.x1_c01051{left:127.656000px;}
.xa_c01051{left:142.236000px;}
.x9_c01051{left:146.016000px;}
.x2_c01051{left:204.667500px;}
.x3_c01051{left:224.670000px;}
.x8_c01051{left:343.695000px;}
.x6_c01051{left:450.592500px;}
.x7_c01051{left:470.595000px;}
.x4_c01051{left:628.102500px;}
.xb_c01051{left:645.240000px;}
.x5_c01051{left:648.105000px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls6_c01051{letter-spacing:-0.242133pt;}
.ls4_c01051{letter-spacing:-0.220267pt;}
.ls2_c01051{letter-spacing:-0.161067pt;}
.ls1_c01051{letter-spacing:0.000000pt;}
.ls3_c01051{letter-spacing:0.133333pt;}
.ls5_c01051{letter-spacing:0.135467pt;}
.ls0_c01051{letter-spacing:0.154880pt;}
.ws0_c01051{word-spacing:-17.792000pt;}
.ws1_c01051{word-spacing:0.000000pt;}
._9_c01051{margin-left:-4.096000pt;}
._e_c01051{margin-left:-2.870298pt;}
._0_c01051{margin-left:-1.119014pt;}
._2_c01051{width:0.992000pt;}
._11_c01051{width:1.909312pt;}
._6_c01051{width:2.837312pt;}
._a_c01051{width:3.968000pt;}
._5_c01051{width:4.873702pt;}
._1_c01051{width:5.952000pt;}
._4_c01051{width:7.168000pt;}
._10_c01051{width:8.384000pt;}
._3_c01051{width:9.728000pt;}
._f_c01051{width:11.840000pt;}
._c_c01051{width:14.654029pt;}
._b_c01051{width:15.808000pt;}
._8_c01051{width:20.160000pt;}
._7_c01051{width:21.504000pt;}
._d_c01051{width:27.072000pt;}
.fs3_c01051{font-size:34.560000pt;}
.fs2_c01051{font-size:42.880000pt;}
.fs4_c01051{font-size:53.120000pt;}
.fs0_c01051{font-size:58.880000pt;}
.fs1_c01051{font-size:64.000000pt;}
.y0_c01051{bottom:0.000000pt;}
.y2b_c01051{bottom:2.880000pt;}
.y2a_c01051{bottom:18.400000pt;}
.y3_c01051{bottom:51.232000pt;}
.y2_c01051{bottom:69.152000pt;}
.y28_c01051{bottom:97.952000pt;}
.y27_c01051{bottom:102.592000pt;}
.y26_c01051{bottom:114.912000pt;}
.y25_c01051{bottom:119.552000pt;}
.y24_c01051{bottom:131.072000pt;}
.y23_c01051{bottom:147.226667pt;}
.y22_c01051{bottom:151.866667pt;}
.y21_c01051{bottom:164.826667pt;}
.y20_c01051{bottom:430.786667pt;}
.y1f_c01051{bottom:452.066667pt;}
.y1e_c01051{bottom:473.186667pt;}
.y1d_c01051{bottom:494.306667pt;}
.y1c_c01051{bottom:515.453333pt;}
.y1b_c01051{bottom:536.573333pt;}
.y1a_c01051{bottom:557.853333pt;}
.y18_c01051{bottom:578.973333pt;}
.y19_c01051{bottom:584.253333pt;}
.y16_c01051{bottom:600.253333pt;}
.y17_c01051{bottom:605.533333pt;}
.y15_c01051{bottom:621.213333pt;}
.y14_c01051{bottom:642.493333pt;}
.y13_c01051{bottom:663.613333pt;}
.y12_c01051{bottom:698.013333pt;}
.y29_c01051{bottom:708.733333pt;}
.y11_c01051{bottom:732.573333pt;}
.y10_c01051{bottom:767.173333pt;}
.yf_c01051{bottom:788.453333pt;}
.ye_c01051{bottom:809.413333pt;}
.yd_c01051{bottom:830.533333pt;}
.yc_c01051{bottom:851.813333pt;}
.yb_c01051{bottom:872.933333pt;}
.ya_c01051{bottom:894.053333pt;}
.y9_c01051{bottom:915.173333pt;}
.y8_c01051{bottom:949.733333pt;}
.y7_c01051{bottom:970.853333pt;}
.y6_c01051{bottom:991.973333pt;}
.y4_c01051{bottom:1013.280000pt;}
.y5_c01051{bottom:1018.560000pt;}
.y1_c01051{bottom:1061.920000pt;}
.h9_c01051{height:26.206875pt;}
.ha_c01051{height:30.560000pt;}
.h7_c01051{height:36.875520pt;}
.h6_c01051{height:38.441250pt;}
.h2_c01051{height:42.722500pt;}
.h3_c01051{height:44.648750pt;}
.hb_c01051{height:47.491563pt;}
.hc_c01051{height:47.621250pt;}
.h8_c01051{height:56.679040pt;}
.h4_c01051{height:57.375000pt;}
.h5_c01051{height:1122.546667pt;}
.h0_c01051{height:1122.560000pt;}
.h1_c01051{height:1122.666667pt;}
.w3_c01051{width:109.300000pt;}
.w2_c01051{width:793.740000pt;}
.w0_c01051{width:793.760000pt;}
.w1_c01051{width:794.000000pt;}
.x0_c01051{left:0.000000pt;}
.x1_c01051{left:113.472000pt;}
.xa_c01051{left:126.432000pt;}
.x9_c01051{left:129.792000pt;}
.x2_c01051{left:181.926667pt;}
.x3_c01051{left:199.706667pt;}
.x8_c01051{left:305.506667pt;}
.x6_c01051{left:400.526667pt;}
.x7_c01051{left:418.306667pt;}
.x4_c01051{left:558.313333pt;}
.xb_c01051{left:573.546667pt;}
.x5_c01051{left:576.093333pt;}
}





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

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01052;src:url('chunks/assets/font_f121192dcb4d22e14f8d23be.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01052;src:url('chunks/assets/font_ebb8e7fa82b2124acd71ffef.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_d0ef25281b5553674d19c409.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01052;src:url('chunks/assets/font_2a15f4f0dc5b60f41c3a785b.woff2')format("woff");}.ff5_c01052{font-family:ff5_c01052;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01052;src:url('chunks/assets/font_b012e9b315e29d0948ee2ca7.woff2')format("woff");}.ff6_c01052{font-family:ff6_c01052;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.ls5_c01052{letter-spacing:-0.720000px;}
.ls7_c01052{letter-spacing:-0.272400px;}
.ls4_c01052{letter-spacing:-0.181200px;}
.ls3_c01052{letter-spacing:0.000000px;}
.ls6_c01052{letter-spacing:0.150000px;}
.ls2_c01052{letter-spacing:0.152400px;}
.ls1_c01052{letter-spacing:0.174240px;}
.ls0_c01052{letter-spacing:0.216000px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01052{word-spacing:-21.187920px;}
.ws1_c01052{word-spacing:0.000000px;}
._a_c01052{margin-left:-4.824000px;}
._9_c01052{margin-left:-3.744000px;}
._0_c01052{margin-left:-1.390841px;}
._2_c01052{width:1.186865px;}
._7_c01052{width:2.376000px;}
._8_c01052{width:3.601135px;}
._f_c01052{width:5.125159px;}
._6_c01052{width:6.142841px;}
._5_c01052{width:7.560000px;}
._10_c01052{width:9.283389px;}
._b_c01052{width:10.296000px;}
._4_c01052{width:12.046841px;}
._3_c01052{width:13.608000px;}
._1_c01052{width:21.312000px;}
._e_c01052{width:22.414841px;}
._d_c01052{width:23.724000px;}
._c_c01052{width:24.984000px;}
.fc0_c01052{color:rgb(0,0,0);}
.fs3_c01052{font-size:38.880000px;}
.fs2_c01052{font-size:48.240000px;}
.fs4_c01052{font-size:59.760000px;}
.fs0_c01052{font-size:66.240000px;}
.fs1_c01052{font-size:72.000000px;}
.y0_c01052{bottom:0.000000px;}
.y28_c01052{bottom:7.920000px;}
.y27_c01052{bottom:25.380000px;}
.y26_c01052{bottom:42.660000px;}
.y3_c01052{bottom:57.636000px;}
.y25_c01052{bottom:59.805000px;}
.y2_c01052{bottom:77.796000px;}
.y23_c01052{bottom:110.196000px;}
.y22_c01052{bottom:115.416000px;}
.y21_c01052{bottom:129.996000px;}
.y20_c01052{bottom:421.995000px;}
.y1f_c01052{bottom:460.875000px;}
.y1e_c01052{bottom:484.635000px;}
.y1d_c01052{bottom:508.575000px;}
.y1c_c01052{bottom:532.335000px;}
.y1b_c01052{bottom:556.095000px;}
.y1a_c01052{bottom:580.065000px;}
.y19_c01052{bottom:618.765000px;}
.y18_c01052{bottom:642.525000px;}
.y17_c01052{bottom:666.285000px;}
.y16_c01052{bottom:690.225000px;}
.y15_c01052{bottom:713.985000px;}
.y14_c01052{bottom:737.745000px;}
.y13_c01052{bottom:761.505000px;}
.y24_c01052{bottom:796.605000px;}
.y12_c01052{bottom:800.385000px;}
.y11_c01052{bottom:839.085000px;}
.y10_c01052{bottom:878.010000px;}
.yf_c01052{bottom:901.770000px;}
.ye_c01052{bottom:925.530000px;}
.yd_c01052{bottom:949.470000px;}
.yc_c01052{bottom:973.230000px;}
.yb_c01052{bottom:996.990000px;}
.ya_c01052{bottom:1020.750000px;}
.y9_c01052{bottom:1044.690000px;}
.y7_c01052{bottom:1068.450000px;}
.y8_c01052{bottom:1074.390000px;}
.y6_c01052{bottom:1092.210000px;}
.y5_c01052{bottom:1115.970000px;}
.y4_c01052{bottom:1139.940000px;}
.y1_c01052{bottom:1194.660000px;}
.h7_c01052{height:29.482734px;}
.h6_c01052{height:43.246406px;}
.h2_c01052{height:48.062812px;}
.h3_c01052{height:50.229844px;}
.ha_c01052{height:53.428008px;}
.h8_c01052{height:63.763920px;}
.h4_c01052{height:64.546875px;}
.h9_c01052{height:73.462500px;}
.h5_c01052{height:1262.865000px;}
.h0_c01052{height:1262.880000px;}
.h1_c01052{height:1263.000000px;}
.w3_c01052{width:132.480000px;}
.w2_c01052{width:892.957500px;}
.w0_c01052{width:892.980000px;}
.w1_c01052{width:893.250000px;}
.x0_c01052{left:0.000000px;}
.x3_c01052{left:127.656000px;}
.x8_c01052{left:142.236000px;}
.x1_c01052{left:169.950000px;}
.x4_c01052{left:271.470000px;}
.x5_c01052{left:337.192500px;}
.x7_c01052{left:343.695000px;}
.x6_c01052{left:357.195000px;}
.x2_c01052{left:740.490000px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls5_c01052{letter-spacing:-0.640000pt;}
.ls7_c01052{letter-spacing:-0.242133pt;}
.ls4_c01052{letter-spacing:-0.161067pt;}
.ls3_c01052{letter-spacing:0.000000pt;}
.ls6_c01052{letter-spacing:0.133333pt;}
.ls2_c01052{letter-spacing:0.135467pt;}
.ls1_c01052{letter-spacing:0.154880pt;}
.ls0_c01052{letter-spacing:0.192000pt;}
.ws0_c01052{word-spacing:-18.833707pt;}
.ws1_c01052{word-spacing:0.000000pt;}
._a_c01052{margin-left:-4.288000pt;}
._9_c01052{margin-left:-3.328000pt;}
._0_c01052{margin-left:-1.236303pt;}
._2_c01052{width:1.054991pt;}
._7_c01052{width:2.112000pt;}
._8_c01052{width:3.201009pt;}
._f_c01052{width:4.555697pt;}
._6_c01052{width:5.460303pt;}
._5_c01052{width:6.720000pt;}
._10_c01052{width:8.251901pt;}
._b_c01052{width:9.152000pt;}
._4_c01052{width:10.708303pt;}
._3_c01052{width:12.096000pt;}
._1_c01052{width:18.944000pt;}
._e_c01052{width:19.924303pt;}
._d_c01052{width:21.088000pt;}
._c_c01052{width:22.208000pt;}
.fs3_c01052{font-size:34.560000pt;}
.fs2_c01052{font-size:42.880000pt;}
.fs4_c01052{font-size:53.120000pt;}
.fs0_c01052{font-size:58.880000pt;}
.fs1_c01052{font-size:64.000000pt;}
.y0_c01052{bottom:0.000000pt;}
.y28_c01052{bottom:7.040000pt;}
.y27_c01052{bottom:22.560000pt;}
.y26_c01052{bottom:37.920000pt;}
.y3_c01052{bottom:51.232000pt;}
.y25_c01052{bottom:53.160000pt;}
.y2_c01052{bottom:69.152000pt;}
.y23_c01052{bottom:97.952000pt;}
.y22_c01052{bottom:102.592000pt;}
.y21_c01052{bottom:115.552000pt;}
.y20_c01052{bottom:375.106667pt;}
.y1f_c01052{bottom:409.666667pt;}
.y1e_c01052{bottom:430.786667pt;}
.y1d_c01052{bottom:452.066667pt;}
.y1c_c01052{bottom:473.186667pt;}
.y1b_c01052{bottom:494.306667pt;}
.y1a_c01052{bottom:515.613333pt;}
.y19_c01052{bottom:550.013333pt;}
.y18_c01052{bottom:571.133333pt;}
.y17_c01052{bottom:592.253333pt;}
.y16_c01052{bottom:613.533333pt;}
.y15_c01052{bottom:634.653333pt;}
.y14_c01052{bottom:655.773333pt;}
.y13_c01052{bottom:676.893333pt;}
.y24_c01052{bottom:708.093333pt;}
.y12_c01052{bottom:711.453333pt;}
.y11_c01052{bottom:745.853333pt;}
.y10_c01052{bottom:780.453333pt;}
.yf_c01052{bottom:801.573333pt;}
.ye_c01052{bottom:822.693333pt;}
.yd_c01052{bottom:843.973333pt;}
.yc_c01052{bottom:865.093333pt;}
.yb_c01052{bottom:886.213333pt;}
.ya_c01052{bottom:907.333333pt;}
.y9_c01052{bottom:928.613333pt;}
.y7_c01052{bottom:949.733333pt;}
.y8_c01052{bottom:955.013333pt;}
.y6_c01052{bottom:970.853333pt;}
.y5_c01052{bottom:991.973333pt;}
.y4_c01052{bottom:1013.280000pt;}
.y1_c01052{bottom:1061.920000pt;}
.h7_c01052{height:26.206875pt;}
.h6_c01052{height:38.441250pt;}
.h2_c01052{height:42.722500pt;}
.h3_c01052{height:44.648750pt;}
.ha_c01052{height:47.491563pt;}
.h8_c01052{height:56.679040pt;}
.h4_c01052{height:57.375000pt;}
.h9_c01052{height:65.300000pt;}
.h5_c01052{height:1122.546667pt;}
.h0_c01052{height:1122.560000pt;}
.h1_c01052{height:1122.666667pt;}
.w3_c01052{width:117.760000pt;}
.w2_c01052{width:793.740000pt;}
.w0_c01052{width:793.760000pt;}
.w1_c01052{width:794.000000pt;}
.x0_c01052{left:0.000000pt;}
.x3_c01052{left:113.472000pt;}
.x8_c01052{left:126.432000pt;}
.x1_c01052{left:151.066667pt;}
.x4_c01052{left:241.306667pt;}
.x5_c01052{left:299.726667pt;}
.x7_c01052{left:305.506667pt;}
.x6_c01052{left:317.506667pt;}
.x2_c01052{left:658.213333pt;}
}





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

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_46fcd16d72a0004b282eb733.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_d513c8938181910285edacb6.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;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:ff5_c01053;src:url('chunks/assets/font_e592dbccfcf963aa3902b1c8.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01053{vertical-align:0.000000px;}
.ls3_c01053{letter-spacing:-0.720000px;}
.ls2_c01053{letter-spacing:-0.432000px;}
.ls1_c01053{letter-spacing:0.000000px;}
.ls0_c01053{letter-spacing:0.288000px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01053{word-spacing:0.000000px;}
._5_c01053{margin-left:-5.437109px;}
._4_c01053{margin-left:-4.392000px;}
._c_c01053{margin-left:-2.773109px;}
._0_c01053{margin-left:-1.258891px;}
._3_c01053{width:1.312214px;}
._6_c01053{width:2.432203px;}
._9_c01053{width:3.526690px;}
._b_c01053{width:4.852483px;}
._a_c01053{width:5.976000px;}
._d_c01053{width:7.104024px;}
._10_c01053{width:8.411880px;}
._7_c01053{width:9.895810px;}
._8_c01053{width:10.903248px;}
._2_c01053{width:12.312000px;}
._11_c01053{width:16.488000px;}
._12_c01053{width:18.427810px;}
._e_c01053{width:22.104000px;}
._f_c01053{width:24.789758px;}
._1_c01053{width:1071.084000px;}
.fc0_c01053{color:rgb(0,0,0);}
.fs3_c01053{font-size:59.760000px;}
.fs0_c01053{font-size:66.240000px;}
.fs1_c01053{font-size:72.000000px;}
.fs2_c01053{font-size:84.240000px;}
.y0_c01053{bottom:0.000000px;}
.y21_c01053{bottom:12.060000px;}
.y1f_c01053{bottom:23.205000px;}
.y3_c01053{bottom:57.636000px;}
.y2_c01053{bottom:77.796000px;}
.y1d_c01053{bottom:147.996000px;}
.y1c_c01053{bottom:171.750000px;}
.y1b_c01053{bottom:195.510000px;}
.y1a_c01053{bottom:219.270000px;}
.y19_c01053{bottom:243.210000px;}
.y18_c01053{bottom:281.955000px;}
.y17_c01053{bottom:305.715000px;}
.y16_c01053{bottom:329.655000px;}
.y15_c01053{bottom:353.415000px;}
.y14_c01053{bottom:377.175000px;}
.y13_c01053{bottom:400.935000px;}
.y12_c01053{bottom:424.875000px;}
.y11_c01053{bottom:448.635000px;}
.y10_c01053{bottom:472.395000px;}
.yf_c01053{bottom:496.155000px;}
.ye_c01053{bottom:520.095000px;}
.yd_c01053{bottom:543.855000px;}
.yc_c01053{bottom:567.645000px;}
.yb_c01053{bottom:591.405000px;}
.ya_c01053{bottom:615.165000px;}
.y9_c01053{bottom:639.105000px;}
.y8_c01053{bottom:660.525000px;}
.y7_c01053{bottom:684.285000px;}
.y6_c01053{bottom:725.685000px;}
.y1e_c01053{bottom:757.560000px;}
.y5_c01053{bottom:765.105000px;}
.y20_c01053{bottom:768.345000px;}
.y4_c01053{bottom:798.765000px;}
.y1_c01053{bottom:1194.660000px;}
.h8_c01053{height:25.920000px;}
.h6_c01053{height:37.080000px;}
.h2_c01053{height:48.062812px;}
.h3_c01053{height:50.229844px;}
.h7_c01053{height:53.428008px;}
.h4_c01053{height:64.546875px;}
.h5_c01053{height:87.859687px;}
.h0_c01053{height:1262.880000px;}
.h1_c01053{height:1263.000000px;}
.w2_c01053{width:150.870000px;}
.w3_c01053{width:171.045000px;}
.w0_c01053{width:892.980000px;}
.w1_c01053{width:893.250000px;}
.x0_c01053{left:0.000000px;}
.x1_c01053{left:127.656000px;}
.x3_c01053{left:150.690000px;}
.x4_c01053{left:187.245000px;}
.x2_c01053{left:432.255000px;}
.x5_c01053{left:441.255000px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls3_c01053{letter-spacing:-0.640000pt;}
.ls2_c01053{letter-spacing:-0.384000pt;}
.ls1_c01053{letter-spacing:0.000000pt;}
.ls0_c01053{letter-spacing:0.256000pt;}
.ws0_c01053{word-spacing:0.000000pt;}
._5_c01053{margin-left:-4.832986pt;}
._4_c01053{margin-left:-3.904000pt;}
._c_c01053{margin-left:-2.464986pt;}
._0_c01053{margin-left:-1.119014pt;}
._3_c01053{width:1.166413pt;}
._6_c01053{width:2.161958pt;}
._9_c01053{width:3.134835pt;}
._b_c01053{width:4.313318pt;}
._a_c01053{width:5.312000pt;}
._d_c01053{width:6.314688pt;}
._10_c01053{width:7.477227pt;}
._7_c01053{width:8.796275pt;}
._8_c01053{width:9.691776pt;}
._2_c01053{width:10.944000pt;}
._11_c01053{width:14.656000pt;}
._12_c01053{width:16.380275pt;}
._e_c01053{width:19.648000pt;}
._f_c01053{width:22.035341pt;}
._1_c01053{width:952.074667pt;}
.fs3_c01053{font-size:53.120000pt;}
.fs0_c01053{font-size:58.880000pt;}
.fs1_c01053{font-size:64.000000pt;}
.fs2_c01053{font-size:74.880000pt;}
.y0_c01053{bottom:0.000000pt;}
.y21_c01053{bottom:10.720000pt;}
.y1f_c01053{bottom:20.626667pt;}
.y3_c01053{bottom:51.232000pt;}
.y2_c01053{bottom:69.152000pt;}
.y1d_c01053{bottom:131.552000pt;}
.y1c_c01053{bottom:152.666667pt;}
.y1b_c01053{bottom:173.786667pt;}
.y1a_c01053{bottom:194.906667pt;}
.y19_c01053{bottom:216.186667pt;}
.y18_c01053{bottom:250.626667pt;}
.y17_c01053{bottom:271.746667pt;}
.y16_c01053{bottom:293.026667pt;}
.y15_c01053{bottom:314.146667pt;}
.y14_c01053{bottom:335.266667pt;}
.y13_c01053{bottom:356.386667pt;}
.y12_c01053{bottom:377.666667pt;}
.y11_c01053{bottom:398.786667pt;}
.y10_c01053{bottom:419.906667pt;}
.yf_c01053{bottom:441.026667pt;}
.ye_c01053{bottom:462.306667pt;}
.yd_c01053{bottom:483.426667pt;}
.yc_c01053{bottom:504.573333pt;}
.yb_c01053{bottom:525.693333pt;}
.ya_c01053{bottom:546.813333pt;}
.y9_c01053{bottom:568.093333pt;}
.y8_c01053{bottom:587.133333pt;}
.y7_c01053{bottom:608.253333pt;}
.y6_c01053{bottom:645.053333pt;}
.y1e_c01053{bottom:673.386667pt;}
.y5_c01053{bottom:680.093333pt;}
.y20_c01053{bottom:682.973333pt;}
.y4_c01053{bottom:710.013333pt;}
.y1_c01053{bottom:1061.920000pt;}
.h8_c01053{height:23.040000pt;}
.h6_c01053{height:32.960000pt;}
.h2_c01053{height:42.722500pt;}
.h3_c01053{height:44.648750pt;}
.h7_c01053{height:47.491563pt;}
.h4_c01053{height:57.375000pt;}
.h5_c01053{height:78.097500pt;}
.h0_c01053{height:1122.560000pt;}
.h1_c01053{height:1122.666667pt;}
.w2_c01053{width:134.106667pt;}
.w3_c01053{width:152.040000pt;}
.w0_c01053{width:793.760000pt;}
.w1_c01053{width:794.000000pt;}
.x0_c01053{left:0.000000pt;}
.x1_c01053{left:113.472000pt;}
.x3_c01053{left:133.946667pt;}
.x4_c01053{left:166.440000pt;}
.x2_c01053{left:384.226667pt;}
.x5_c01053{left:392.226667pt;}
}





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

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_4433c202a05e925db3fcfe09.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_3cd3fada53d651f64dcd4637.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.ls3_c01054{letter-spacing:-0.576000px;}
.ls2_c01054{letter-spacing:-0.432000px;}
.ls1_c01054{letter-spacing:0.000000px;}
.ls0_c01054{letter-spacing:0.288000px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01054{word-spacing:-20.304000px;}
.ws1_c01054{word-spacing:0.000000px;}
._d_c01054{margin-left:-4.816204px;}
._c_c01054{margin-left:-3.670119px;}
._7_c01054{margin-left:-2.643039px;}
._0_c01054{margin-left:-1.390841px;}
._1_c01054{width:1.224000px;}
._2_c01054{width:2.436048px;}
._4_c01054{width:4.512024px;}
._3_c01054{width:5.544000px;}
._f_c01054{width:6.552000px;}
._8_c01054{width:7.560000px;}
._9_c01054{width:9.754865px;}
._e_c01054{width:11.304000px;}
._10_c01054{width:14.616000px;}
._11_c01054{width:16.125731px;}
._a_c01054{width:18.576000px;}
._b_c01054{width:21.625857px;}
._6_c01054{width:49.176000px;}
._5_c01054{width:50.592024px;}
.fc0_c01054{color:rgb(0,0,0);}
.fs0_c01054{font-size:66.240000px;}
.fs1_c01054{font-size:72.000000px;}
.y0_c01054{bottom:0.000000px;}
.y3_c01054{bottom:57.636000px;}
.y2_c01054{bottom:77.796000px;}
.y2a_c01054{bottom:145.296000px;}
.y29_c01054{bottom:183.990000px;}
.y28_c01054{bottom:222.870000px;}
.y27_c01054{bottom:261.570000px;}
.y26_c01054{bottom:285.375000px;}
.y25_c01054{bottom:309.315000px;}
.y24_c01054{bottom:333.075000px;}
.y23_c01054{bottom:356.835000px;}
.y22_c01054{bottom:395.715000px;}
.y21_c01054{bottom:419.475000px;}
.y20_c01054{bottom:443.235000px;}
.y1f_c01054{bottom:466.995000px;}
.y1e_c01054{bottom:490.935000px;}
.y1d_c01054{bottom:514.695000px;}
.y1c_c01054{bottom:538.455000px;}
.y1b_c01054{bottom:562.215000px;}
.y1a_c01054{bottom:586.185000px;}
.y19_c01054{bottom:609.945000px;}
.y18_c01054{bottom:633.705000px;}
.y17_c01054{bottom:657.465000px;}
.y16_c01054{bottom:681.405000px;}
.y15_c01054{bottom:720.105000px;}
.y14_c01054{bottom:743.865000px;}
.y13_c01054{bottom:767.805000px;}
.y12_c01054{bottom:791.565000px;}
.y11_c01054{bottom:815.325000px;}
.y10_c01054{bottom:839.085000px;}
.yf_c01054{bottom:863.070000px;}
.ye_c01054{bottom:886.830000px;}
.yd_c01054{bottom:910.590000px;}
.yc_c01054{bottom:934.350000px;}
.yb_c01054{bottom:958.290000px;}
.ya_c01054{bottom:982.050000px;}
.y9_c01054{bottom:1005.810000px;}
.y8_c01054{bottom:1029.570000px;}
.y7_c01054{bottom:1053.510000px;}
.y6_c01054{bottom:1077.270000px;}
.y5_c01054{bottom:1115.970000px;}
.y4_c01054{bottom:1139.940000px;}
.y1_c01054{bottom:1194.660000px;}
.h2_c01054{height:48.062812px;}
.h3_c01054{height:50.229844px;}
.h4_c01054{height:64.546875px;}
.h0_c01054{height:1262.880000px;}
.h1_c01054{height:1263.000000px;}
.w0_c01054{width:892.980000px;}
.w1_c01054{width:893.250000px;}
.x0_c01054{left:0.000000px;}
.x3_c01054{left:127.656000px;}
.x1_c01054{left:169.950000px;}
.x2_c01054{left:740.490000px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls3_c01054{letter-spacing:-0.512000pt;}
.ls2_c01054{letter-spacing:-0.384000pt;}
.ls1_c01054{letter-spacing:0.000000pt;}
.ls0_c01054{letter-spacing:0.256000pt;}
.ws0_c01054{word-spacing:-18.048000pt;}
.ws1_c01054{word-spacing:0.000000pt;}
._d_c01054{margin-left:-4.281070pt;}
._c_c01054{margin-left:-3.262328pt;}
._7_c01054{margin-left:-2.349368pt;}
._0_c01054{margin-left:-1.236303pt;}
._1_c01054{width:1.088000pt;}
._2_c01054{width:2.165376pt;}
._4_c01054{width:4.010688pt;}
._3_c01054{width:4.928000pt;}
._f_c01054{width:5.824000pt;}
._8_c01054{width:6.720000pt;}
._9_c01054{width:8.670991pt;}
._e_c01054{width:10.048000pt;}
._10_c01054{width:12.992000pt;}
._11_c01054{width:14.333983pt;}
._a_c01054{width:16.512000pt;}
._b_c01054{width:19.222984pt;}
._6_c01054{width:43.712000pt;}
._5_c01054{width:44.970688pt;}
.fs0_c01054{font-size:58.880000pt;}
.fs1_c01054{font-size:64.000000pt;}
.y0_c01054{bottom:0.000000pt;}
.y3_c01054{bottom:51.232000pt;}
.y2_c01054{bottom:69.152000pt;}
.y2a_c01054{bottom:129.152000pt;}
.y29_c01054{bottom:163.546667pt;}
.y28_c01054{bottom:198.106667pt;}
.y27_c01054{bottom:232.506667pt;}
.y26_c01054{bottom:253.666667pt;}
.y25_c01054{bottom:274.946667pt;}
.y24_c01054{bottom:296.066667pt;}
.y23_c01054{bottom:317.186667pt;}
.y22_c01054{bottom:351.746667pt;}
.y21_c01054{bottom:372.866667pt;}
.y20_c01054{bottom:393.986667pt;}
.y1f_c01054{bottom:415.106667pt;}
.y1e_c01054{bottom:436.386667pt;}
.y1d_c01054{bottom:457.506667pt;}
.y1c_c01054{bottom:478.626667pt;}
.y1b_c01054{bottom:499.746667pt;}
.y1a_c01054{bottom:521.053333pt;}
.y19_c01054{bottom:542.173333pt;}
.y18_c01054{bottom:563.293333pt;}
.y17_c01054{bottom:584.413333pt;}
.y16_c01054{bottom:605.693333pt;}
.y15_c01054{bottom:640.093333pt;}
.y14_c01054{bottom:661.213333pt;}
.y13_c01054{bottom:682.493333pt;}
.y12_c01054{bottom:703.613333pt;}
.y11_c01054{bottom:724.733333pt;}
.y10_c01054{bottom:745.853333pt;}
.yf_c01054{bottom:767.173333pt;}
.ye_c01054{bottom:788.293333pt;}
.yd_c01054{bottom:809.413333pt;}
.yc_c01054{bottom:830.533333pt;}
.yb_c01054{bottom:851.813333pt;}
.ya_c01054{bottom:872.933333pt;}
.y9_c01054{bottom:894.053333pt;}
.y8_c01054{bottom:915.173333pt;}
.y7_c01054{bottom:936.453333pt;}
.y6_c01054{bottom:957.573333pt;}
.y5_c01054{bottom:991.973333pt;}
.y4_c01054{bottom:1013.280000pt;}
.y1_c01054{bottom:1061.920000pt;}
.h2_c01054{height:42.722500pt;}
.h3_c01054{height:44.648750pt;}
.h4_c01054{height:57.375000pt;}
.h0_c01054{height:1122.560000pt;}
.h1_c01054{height:1122.666667pt;}
.w0_c01054{width:793.760000pt;}
.w1_c01054{width:794.000000pt;}
.x0_c01054{left:0.000000pt;}
.x3_c01054{left:113.472000pt;}
.x1_c01054{left:151.066667pt;}
.x2_c01054{left:658.213333pt;}
}





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

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_ef5b3ac1c976fb5a331e98f9.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_7554a809fcfa36e5920a049b.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01055;src:url('chunks/assets/font_73fc24f472c836ce83a03e38.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01055;src:url('chunks/assets/font_5f5f10b1ca8bda012c5e9d5e.woff2')format("woff");}.ff5_c01055{font-family:ff5_c01055;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls3_c01055{letter-spacing:-0.432000px;}
.ls1_c01055{letter-spacing:0.000000px;}
.ls2_c01055{letter-spacing:0.288000px;}
.ls0_c01055{letter-spacing:800.964000px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:-20.304000px;}
.ws1_c01055{word-spacing:-19.584000px;}
.ws2_c01055{word-spacing:0.000000px;}
._8_c01055{margin-left:-3.477557px;}
._7_c01055{margin-left:-2.260411px;}
._0_c01055{margin-left:-1.258891px;}
._1_c01055{width:1.128024px;}
._4_c01055{width:2.748024px;}
._3_c01055{width:3.816000px;}
._2_c01055{width:4.872024px;}
._c_c01055{width:6.381782px;}
._b_c01055{width:7.416000px;}
._e_c01055{width:8.474194px;}
._d_c01055{width:13.930891px;}
._a_c01055{width:27.231278px;}
._9_c01055{width:28.584000px;}
._6_c01055{width:52.272000px;}
._5_c01055{width:54.000000px;}
.fc1_c01055{color:rgb(79,129,189);}
.fc0_c01055{color:rgb(0,0,0);}
.fs2_c01055{font-size:54.000000px;}
.fs3_c01055{font-size:59.760000px;}
.fs0_c01055{font-size:66.240000px;}
.fs1_c01055{font-size:72.000000px;}
.y0_c01055{bottom:0.000000px;}
.y29_c01055{bottom:7.215000px;}
.y2b_c01055{bottom:7.551000px;}
.y21_c01055{bottom:18.345000px;}
.y23_c01055{bottom:18.375000px;}
.y28_c01055{bottom:24.495000px;}
.y26_c01055{bottom:35.835000px;}
.y25_c01055{bottom:53.115000px;}
.y3_c01055{bottom:57.636000px;}
.y2_c01055{bottom:77.796000px;}
.y1f_c01055{bottom:113.976000px;}
.y2a_c01055{bottom:123.345000px;}
.y1e_c01055{bottom:148.716000px;}
.y27_c01055{bottom:286.260000px;}
.y1d_c01055{bottom:299.055000px;}
.y1c_c01055{bottom:322.995000px;}
.y1b_c01055{bottom:346.755000px;}
.y1a_c01055{bottom:370.515000px;}
.y19_c01055{bottom:394.275000px;}
.y18_c01055{bottom:418.035000px;}
.y17_c01055{bottom:441.975000px;}
.y16_c01055{bottom:465.735000px;}
.y24_c01055{bottom:497.940000px;}
.y15_c01055{bottom:504.615000px;}
.y22_c01055{bottom:533.580000px;}
.y14_c01055{bottom:539.895000px;}
.y13_c01055{bottom:570.885000px;}
.y20_c01055{bottom:789.600000px;}
.y12_c01055{bottom:791.565000px;}
.y11_c01055{bottom:830.265000px;}
.y10_c01055{bottom:854.250000px;}
.yf_c01055{bottom:878.010000px;}
.ye_c01055{bottom:901.770000px;}
.yd_c01055{bottom:925.530000px;}
.yc_c01055{bottom:949.470000px;}
.yb_c01055{bottom:973.230000px;}
.ya_c01055{bottom:996.990000px;}
.y9_c01055{bottom:1020.750000px;}
.y8_c01055{bottom:1044.690000px;}
.y7_c01055{bottom:1068.450000px;}
.y6_c01055{bottom:1092.210000px;}
.y5_c01055{bottom:1115.970000px;}
.y4_c01055{bottom:1139.940000px;}
.y1_c01055{bottom:1194.660000px;}
.hb_c01055{height:21.420000px;}
.h6_c01055{height:32.220000px;}
.h8_c01055{height:32.265000px;}
.ha_c01055{height:38.160000px;}
.h5_c01055{height:40.790039px;}
.h2_c01055{height:48.062812px;}
.h3_c01055{height:50.229844px;}
.h7_c01055{height:53.428008px;}
.h4_c01055{height:64.546875px;}
.h9_c01055{height:66.825000px;}
.h0_c01055{height:1262.880000px;}
.h1_c01055{height:1263.000000px;}
.w5_c01055{width:153.735000px;}
.w2_c01055{width:199.650000px;}
.w4_c01055{width:223.755000px;}
.w6_c01055{width:265.035000px;}
.w3_c01055{width:330.195000px;}
.w0_c01055{width:892.980000px;}
.w1_c01055{width:893.250000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:127.656000px;}
.x6_c01055{left:180.225000px;}
.x4_c01055{left:203.070000px;}
.x9_c01055{left:292.005000px;}
.x2_c01055{left:507.525000px;}
.x7_c01055{left:513.660000px;}
.x5_c01055{left:548.400000px;}
.x3_c01055{left:599.685000px;}
.x8_c01055{left:604.200000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls3_c01055{letter-spacing:-0.384000pt;}
.ls1_c01055{letter-spacing:0.000000pt;}
.ls2_c01055{letter-spacing:0.256000pt;}
.ls0_c01055{letter-spacing:711.968000pt;}
.ws0_c01055{word-spacing:-18.048000pt;}
.ws1_c01055{word-spacing:-17.408000pt;}
.ws2_c01055{word-spacing:0.000000pt;}
._8_c01055{margin-left:-3.091162pt;}
._7_c01055{margin-left:-2.009254pt;}
._0_c01055{margin-left:-1.119014pt;}
._1_c01055{width:1.002688pt;}
._4_c01055{width:2.442688pt;}
._3_c01055{width:3.392000pt;}
._2_c01055{width:4.330688pt;}
._c_c01055{width:5.672695pt;}
._b_c01055{width:6.592000pt;}
._e_c01055{width:7.532617pt;}
._d_c01055{width:12.383014pt;}
._a_c01055{width:24.205581pt;}
._9_c01055{width:25.408000pt;}
._6_c01055{width:46.464000pt;}
._5_c01055{width:48.000000pt;}
.fs2_c01055{font-size:48.000000pt;}
.fs3_c01055{font-size:53.120000pt;}
.fs0_c01055{font-size:58.880000pt;}
.fs1_c01055{font-size:64.000000pt;}
.y0_c01055{bottom:0.000000pt;}
.y29_c01055{bottom:6.413333pt;}
.y2b_c01055{bottom:6.712000pt;}
.y21_c01055{bottom:16.306667pt;}
.y23_c01055{bottom:16.333333pt;}
.y28_c01055{bottom:21.773333pt;}
.y26_c01055{bottom:31.853333pt;}
.y25_c01055{bottom:47.213333pt;}
.y3_c01055{bottom:51.232000pt;}
.y2_c01055{bottom:69.152000pt;}
.y1f_c01055{bottom:101.312000pt;}
.y2a_c01055{bottom:109.640000pt;}
.y1e_c01055{bottom:132.192000pt;}
.y27_c01055{bottom:254.453333pt;}
.y1d_c01055{bottom:265.826667pt;}
.y1c_c01055{bottom:287.106667pt;}
.y1b_c01055{bottom:308.226667pt;}
.y1a_c01055{bottom:329.346667pt;}
.y19_c01055{bottom:350.466667pt;}
.y18_c01055{bottom:371.586667pt;}
.y17_c01055{bottom:392.866667pt;}
.y16_c01055{bottom:413.986667pt;}
.y24_c01055{bottom:442.613333pt;}
.y15_c01055{bottom:448.546667pt;}
.y22_c01055{bottom:474.293333pt;}
.y14_c01055{bottom:479.906667pt;}
.y13_c01055{bottom:507.453333pt;}
.y20_c01055{bottom:701.866667pt;}
.y12_c01055{bottom:703.613333pt;}
.y11_c01055{bottom:738.013333pt;}
.y10_c01055{bottom:759.333333pt;}
.yf_c01055{bottom:780.453333pt;}
.ye_c01055{bottom:801.573333pt;}
.yd_c01055{bottom:822.693333pt;}
.yc_c01055{bottom:843.973333pt;}
.yb_c01055{bottom:865.093333pt;}
.ya_c01055{bottom:886.213333pt;}
.y9_c01055{bottom:907.333333pt;}
.y8_c01055{bottom:928.613333pt;}
.y7_c01055{bottom:949.733333pt;}
.y6_c01055{bottom:970.853333pt;}
.y5_c01055{bottom:991.973333pt;}
.y4_c01055{bottom:1013.280000pt;}
.y1_c01055{bottom:1061.920000pt;}
.hb_c01055{height:19.040000pt;}
.h6_c01055{height:28.640000pt;}
.h8_c01055{height:28.680000pt;}
.ha_c01055{height:33.920000pt;}
.h5_c01055{height:36.257812pt;}
.h2_c01055{height:42.722500pt;}
.h3_c01055{height:44.648750pt;}
.h7_c01055{height:47.491563pt;}
.h4_c01055{height:57.375000pt;}
.h9_c01055{height:59.400000pt;}
.h0_c01055{height:1122.560000pt;}
.h1_c01055{height:1122.666667pt;}
.w5_c01055{width:136.653333pt;}
.w2_c01055{width:177.466667pt;}
.w4_c01055{width:198.893333pt;}
.w6_c01055{width:235.586667pt;}
.w3_c01055{width:293.506667pt;}
.w0_c01055{width:793.760000pt;}
.w1_c01055{width:794.000000pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:113.472000pt;}
.x6_c01055{left:160.200000pt;}
.x4_c01055{left:180.506667pt;}
.x9_c01055{left:259.560000pt;}
.x2_c01055{left:451.133333pt;}
.x7_c01055{left:456.586667pt;}
.x5_c01055{left:487.466667pt;}
.x3_c01055{left:533.053333pt;}
.x8_c01055{left:537.066667pt;}
}





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

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_251bc7e324c76050d0fbd1b3.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01056;src:url('chunks/assets/font_060cd129963f0c9c173d309d.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01056;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff5_c01056{font-family:ff5_c01056;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_c01056;src:url('chunks/assets/font_51d2082a998442b3b5b642da.woff2')format("woff");}.ff6_c01056{font-family:ff6_c01056;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01056;src:url('chunks/assets/font_e4a45740379ba6e01c898be6.woff2')format("woff");}.ff7_c01056{font-family:ff7_c01056;line-height:1.009766;font-style:normal;font-weight: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_c01056;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff8_c01056{font-family:ff8_c01056;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:ff9_c01056;src:url('chunks/assets/font_60bd87c61f65cc638070b520.woff2')format("woff");}.ff9_c01056{font-family:ff9_c01056;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls4_c01056{letter-spacing:-0.540600px;}
.ls3_c01056{letter-spacing:-0.189600px;}
.ls5_c01056{letter-spacing:-0.144000px;}
.ls2_c01056{letter-spacing:0.000000px;}
.ls0_c01056{letter-spacing:20.784000px;}
.ls1_c01056{letter-spacing:20.808000px;}
.sc__c01056{text-shadow:none;}
.sc1_c01056{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc1_c01056{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:-23.750400px;}
.ws3_c01056{word-spacing:-23.418720px;}
.ws1_c01056{word-spacing:-20.554560px;}
.ws4_c01056{word-spacing:-19.872000px;}
.ws2_c01056{word-spacing:-18.000000px;}
.ws5_c01056{word-spacing:0.000000px;}
._8_c01056{margin-left:-4.360152px;}
._2_c01056{margin-left:-2.695848px;}
._0_c01056{margin-left:-1.390841px;}
._1_c01056{width:1.282226px;}
._6_c01056{width:2.542841px;}
._5_c01056{width:3.816000px;}
._4_c01056{width:6.552000px;}
._3_c01056{width:7.704000px;}
._7_c01056{width:9.648000px;}
._c_c01056{width:13.932615px;}
._b_c01056{width:15.336000px;}
._9_c01056{width:18.432000px;}
._a_c01056{width:24.984000px;}
.fc1_c01056{color:rgb(238,119,0);}
.fc0_c01056{color:rgb(0,0,0);}
.fs4_c01056{font-size:59.760000px;}
.fs0_c01056{font-size:66.240000px;}
.fs1_c01056{font-size:72.000000px;}
.fs3_c01056{font-size:84.240000px;}
.fs2_c01056{font-size:95.760000px;}
.y0_c01056{bottom:0.000000px;}
.y6_c01056{bottom:6.840000px;}
.y11_c01056{bottom:6.855000px;}
.ya_c01056{bottom:7.035000px;}
.ye_c01056{bottom:11.340000px;}
.yd_c01056{bottom:17.280000px;}
.y5_c01056{bottom:35.460000px;}
.y8_c01056{bottom:35.640000px;}
.yc_c01056{bottom:45.900000px;}
.y2_c01056{bottom:105.516000px;}
.y2c_c01056{bottom:163.110000px;}
.y2b_c01056{bottom:185.250000px;}
.y2a_c01056{bottom:207.570000px;}
.y29_c01056{bottom:229.890000px;}
.y28_c01056{bottom:252.210000px;}
.y27_c01056{bottom:274.530000px;}
.y26_c01056{bottom:296.895000px;}
.y25_c01056{bottom:331.455000px;}
.y24_c01056{bottom:353.595000px;}
.y23_c01056{bottom:375.915000px;}
.y22_c01056{bottom:398.235000px;}
.y21_c01056{bottom:420.735000px;}
.y20_c01056{bottom:455.115000px;}
.y1f_c01056{bottom:477.255000px;}
.y1e_c01056{bottom:499.755000px;}
.y1d_c01056{bottom:522.075000px;}
.y1c_c01056{bottom:544.395000px;}
.y1b_c01056{bottom:566.745000px;}
.y1a_c01056{bottom:589.065000px;}
.y19_c01056{bottom:611.385000px;}
.y18_c01056{bottom:633.705000px;}
.y17_c01056{bottom:668.265000px;}
.y16_c01056{bottom:690.405000px;}
.y15_c01056{bottom:712.725000px;}
.y14_c01056{bottom:735.045000px;}
.y13_c01056{bottom:757.365000px;}
.y12_c01056{bottom:801.645000px;}
.y10_c01056{bottom:855.315000px;}
.yf_c01056{bottom:855.330000px;}
.yb_c01056{bottom:914.010000px;}
.y9_c01056{bottom:983.115000px;}
.y7_c01056{bottom:983.130000px;}
.y4_c01056{bottom:1041.990000px;}
.y3_c01056{bottom:1130.010000px;}
.y1_c01056{bottom:1194.840000px;}
.h3_c01056{height:50.027344px;}
.h2_c01056{height:50.229844px;}
.h7_c01056{height:52.382812px;}
.h5_c01056{height:58.665000px;}
.hc_c01056{height:58.671000px;}
.hd_c01056{height:58.680000px;}
.h8_c01056{height:58.845000px;}
.h9_c01056{height:58.851000px;}
.ha_c01056{height:58.860000px;}
.h6_c01056{height:63.550195px;}
.hf_c01056{height:64.546875px;}
.hb_c01056{height:69.105000px;}
.h4_c01056{height:69.575625px;}
.he_c01056{height:87.859687px;}
.h0_c01056{height:1262.880000px;}
.h1_c01056{height:1263.000000px;}
.w3_c01056{width:230.415000px;}
.w4_c01056{width:230.430000px;}
.w2_c01056{width:403.626000px;}
.w0_c01056{width:892.980000px;}
.w1_c01056{width:893.250000px;}
.x0_c01056{left:0.000000px;}
.x4_c01056{left:10.251000px;}
.x6_c01056{left:31.845000px;}
.x3_c01056{left:138.276000px;}
.x1_c01056{left:169.950000px;}
.x5_c01056{left:541.920000px;}
.x2_c01056{left:738.510000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls4_c01056{letter-spacing:-0.480533pt;}
.ls3_c01056{letter-spacing:-0.168533pt;}
.ls5_c01056{letter-spacing:-0.128000pt;}
.ls2_c01056{letter-spacing:0.000000pt;}
.ls0_c01056{letter-spacing:18.474667pt;}
.ls1_c01056{letter-spacing:18.496000pt;}
.ws0_c01056{word-spacing:-21.111467pt;}
.ws3_c01056{word-spacing:-20.816640pt;}
.ws1_c01056{word-spacing:-18.270720pt;}
.ws4_c01056{word-spacing:-17.664000pt;}
.ws2_c01056{word-spacing:-16.000000pt;}
.ws5_c01056{word-spacing:0.000000pt;}
._8_c01056{margin-left:-3.875690pt;}
._2_c01056{margin-left:-2.396310pt;}
._0_c01056{margin-left:-1.236303pt;}
._1_c01056{width:1.139757pt;}
._6_c01056{width:2.260303pt;}
._5_c01056{width:3.392000pt;}
._4_c01056{width:5.824000pt;}
._3_c01056{width:6.848000pt;}
._7_c01056{width:8.576000pt;}
._c_c01056{width:12.384547pt;}
._b_c01056{width:13.632000pt;}
._9_c01056{width:16.384000pt;}
._a_c01056{width:22.208000pt;}
.fs4_c01056{font-size:53.120000pt;}
.fs0_c01056{font-size:58.880000pt;}
.fs1_c01056{font-size:64.000000pt;}
.fs3_c01056{font-size:74.880000pt;}
.fs2_c01056{font-size:85.120000pt;}
.y0_c01056{bottom:0.000000pt;}
.y6_c01056{bottom:6.080000pt;}
.y11_c01056{bottom:6.093333pt;}
.ya_c01056{bottom:6.253333pt;}
.ye_c01056{bottom:10.080000pt;}
.yd_c01056{bottom:15.360000pt;}
.y5_c01056{bottom:31.520000pt;}
.y8_c01056{bottom:31.680000pt;}
.yc_c01056{bottom:40.800000pt;}
.y2_c01056{bottom:93.792000pt;}
.y2c_c01056{bottom:144.986667pt;}
.y2b_c01056{bottom:164.666667pt;}
.y2a_c01056{bottom:184.506667pt;}
.y29_c01056{bottom:204.346667pt;}
.y28_c01056{bottom:224.186667pt;}
.y27_c01056{bottom:244.026667pt;}
.y26_c01056{bottom:263.906667pt;}
.y25_c01056{bottom:294.626667pt;}
.y24_c01056{bottom:314.306667pt;}
.y23_c01056{bottom:334.146667pt;}
.y22_c01056{bottom:353.986667pt;}
.y21_c01056{bottom:373.986667pt;}
.y20_c01056{bottom:404.546667pt;}
.y1f_c01056{bottom:424.226667pt;}
.y1e_c01056{bottom:444.226667pt;}
.y1d_c01056{bottom:464.066667pt;}
.y1c_c01056{bottom:483.906667pt;}
.y1b_c01056{bottom:503.773333pt;}
.y1a_c01056{bottom:523.613333pt;}
.y19_c01056{bottom:543.453333pt;}
.y18_c01056{bottom:563.293333pt;}
.y17_c01056{bottom:594.013333pt;}
.y16_c01056{bottom:613.693333pt;}
.y15_c01056{bottom:633.533333pt;}
.y14_c01056{bottom:653.373333pt;}
.y13_c01056{bottom:673.213333pt;}
.y12_c01056{bottom:712.573333pt;}
.y10_c01056{bottom:760.280000pt;}
.yf_c01056{bottom:760.293333pt;}
.yb_c01056{bottom:812.453333pt;}
.y9_c01056{bottom:873.880000pt;}
.y7_c01056{bottom:873.893333pt;}
.y4_c01056{bottom:926.213333pt;}
.y3_c01056{bottom:1004.453333pt;}
.y1_c01056{bottom:1062.080000pt;}
.h3_c01056{height:44.468750pt;}
.h2_c01056{height:44.648750pt;}
.h7_c01056{height:46.562500pt;}
.h5_c01056{height:52.146667pt;}
.hc_c01056{height:52.152000pt;}
.hd_c01056{height:52.160000pt;}
.h8_c01056{height:52.306667pt;}
.h9_c01056{height:52.312000pt;}
.ha_c01056{height:52.320000pt;}
.h6_c01056{height:56.489062pt;}
.hf_c01056{height:57.375000pt;}
.hb_c01056{height:61.426667pt;}
.h4_c01056{height:61.845000pt;}
.he_c01056{height:78.097500pt;}
.h0_c01056{height:1122.560000pt;}
.h1_c01056{height:1122.666667pt;}
.w3_c01056{width:204.813333pt;}
.w4_c01056{width:204.826667pt;}
.w2_c01056{width:358.778667pt;}
.w0_c01056{width:793.760000pt;}
.w1_c01056{width:794.000000pt;}
.x0_c01056{left:0.000000pt;}
.x4_c01056{left:9.112000pt;}
.x6_c01056{left:28.306667pt;}
.x3_c01056{left:122.912000pt;}
.x1_c01056{left:151.066667pt;}
.x5_c01056{left:481.706667pt;}
.x2_c01056{left:656.453333pt;}
}





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

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01057;src:url('chunks/assets/font_1977649fc71d0a0dc750b95f.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01057;src:url('chunks/assets/font_85895762df1a0a0025272581.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls2_c01057{letter-spacing:-0.720000px;}
.ls3_c01057{letter-spacing:-0.576000px;}
.ls1_c01057{letter-spacing:0.000000px;}
.ls0_c01057{letter-spacing:0.288000px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01057{word-spacing:0.000000px;}
._7_c01057{margin-left:-3.593347px;}
._1_c01057{margin-left:-2.526653px;}
._0_c01057{margin-left:-1.258891px;}
._4_c01057{width:1.152000px;}
._5_c01057{width:2.448000px;}
._6_c01057{width:3.744000px;}
._a_c01057{width:4.944024px;}
._c_c01057{width:6.167952px;}
._3_c01057{width:7.200000px;}
._2_c01057{width:8.496000px;}
._12_c01057{width:11.901758px;}
._11_c01057{width:12.960000px;}
._e_c01057{width:14.256000px;}
._f_c01057{width:15.408000px;}
._9_c01057{width:16.416000px;}
._8_c01057{width:17.424000px;}
._10_c01057{width:18.682891px;}
._b_c01057{width:22.464000px;}
._d_c01057{width:24.552000px;}
.fc0_c01057{color:rgb(0,0,0);}
.fs0_c01057{font-size:66.240000px;}
.fs1_c01057{font-size:72.000000px;}
.y0_c01057{bottom:0.000000px;}
.y4_c01057{bottom:71.136000px;}
.y3_c01057{bottom:105.516000px;}
.y2e_c01057{bottom:175.170000px;}
.y2d_c01057{bottom:197.310000px;}
.y2c_c01057{bottom:219.630000px;}
.y2b_c01057{bottom:241.950000px;}
.y2a_c01057{bottom:264.270000px;}
.y29_c01057{bottom:298.875000px;}
.y28_c01057{bottom:321.015000px;}
.y27_c01057{bottom:343.335000px;}
.y26_c01057{bottom:365.655000px;}
.y25_c01057{bottom:387.975000px;}
.y24_c01057{bottom:410.295000px;}
.y23_c01057{bottom:444.855000px;}
.y22_c01057{bottom:466.995000px;}
.y21_c01057{bottom:489.315000px;}
.y20_c01057{bottom:511.635000px;}
.y1f_c01057{bottom:533.955000px;}
.y1e_c01057{bottom:556.275000px;}
.y1d_c01057{bottom:578.625000px;}
.y1c_c01057{bottom:601.125000px;}
.y1b_c01057{bottom:623.445000px;}
.y1a_c01057{bottom:645.765000px;}
.y19_c01057{bottom:668.085000px;}
.y18_c01057{bottom:690.405000px;}
.y17_c01057{bottom:724.965000px;}
.y16_c01057{bottom:747.105000px;}
.y15_c01057{bottom:769.425000px;}
.y14_c01057{bottom:791.745000px;}
.y13_c01057{bottom:814.065000px;}
.y12_c01057{bottom:836.385000px;}
.y11_c01057{bottom:858.750000px;}
.y10_c01057{bottom:881.070000px;}
.yf_c01057{bottom:903.390000px;}
.ye_c01057{bottom:925.890000px;}
.yd_c01057{bottom:948.210000px;}
.yc_c01057{bottom:970.530000px;}
.yb_c01057{bottom:992.850000px;}
.ya_c01057{bottom:1027.410000px;}
.y9_c01057{bottom:1049.550000px;}
.y8_c01057{bottom:1071.870000px;}
.y7_c01057{bottom:1094.190000px;}
.y6_c01057{bottom:1116.510000px;}
.y5_c01057{bottom:1138.860000px;}
.y2_c01057{bottom:1160.100000px;}
.y1_c01057{bottom:1194.840000px;}
.h2_c01057{height:48.062812px;}
.h3_c01057{height:50.027344px;}
.h4_c01057{height:64.546875px;}
.h0_c01057{height:1262.880000px;}
.h1_c01057{height:1263.000000px;}
.w0_c01057{width:892.980000px;}
.w1_c01057{width:893.250000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:138.276000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls2_c01057{letter-spacing:-0.640000pt;}
.ls3_c01057{letter-spacing:-0.512000pt;}
.ls1_c01057{letter-spacing:0.000000pt;}
.ls0_c01057{letter-spacing:0.256000pt;}
.ws0_c01057{word-spacing:0.000000pt;}
._7_c01057{margin-left:-3.194086pt;}
._1_c01057{margin-left:-2.245914pt;}
._0_c01057{margin-left:-1.119014pt;}
._4_c01057{width:1.024000pt;}
._5_c01057{width:2.176000pt;}
._6_c01057{width:3.328000pt;}
._a_c01057{width:4.394688pt;}
._c_c01057{width:5.482624pt;}
._3_c01057{width:6.400000pt;}
._2_c01057{width:7.552000pt;}
._12_c01057{width:10.579341pt;}
._11_c01057{width:11.520000pt;}
._e_c01057{width:12.672000pt;}
._f_c01057{width:13.696000pt;}
._9_c01057{width:14.592000pt;}
._8_c01057{width:15.488000pt;}
._10_c01057{width:16.607014pt;}
._b_c01057{width:19.968000pt;}
._d_c01057{width:21.824000pt;}
.fs0_c01057{font-size:58.880000pt;}
.fs1_c01057{font-size:64.000000pt;}
.y0_c01057{bottom:0.000000pt;}
.y4_c01057{bottom:63.232000pt;}
.y3_c01057{bottom:93.792000pt;}
.y2e_c01057{bottom:155.706667pt;}
.y2d_c01057{bottom:175.386667pt;}
.y2c_c01057{bottom:195.226667pt;}
.y2b_c01057{bottom:215.066667pt;}
.y2a_c01057{bottom:234.906667pt;}
.y29_c01057{bottom:265.666667pt;}
.y28_c01057{bottom:285.346667pt;}
.y27_c01057{bottom:305.186667pt;}
.y26_c01057{bottom:325.026667pt;}
.y25_c01057{bottom:344.866667pt;}
.y24_c01057{bottom:364.706667pt;}
.y23_c01057{bottom:395.426667pt;}
.y22_c01057{bottom:415.106667pt;}
.y21_c01057{bottom:434.946667pt;}
.y20_c01057{bottom:454.786667pt;}
.y1f_c01057{bottom:474.626667pt;}
.y1e_c01057{bottom:494.466667pt;}
.y1d_c01057{bottom:514.333333pt;}
.y1c_c01057{bottom:534.333333pt;}
.y1b_c01057{bottom:554.173333pt;}
.y1a_c01057{bottom:574.013333pt;}
.y19_c01057{bottom:593.853333pt;}
.y18_c01057{bottom:613.693333pt;}
.y17_c01057{bottom:644.413333pt;}
.y16_c01057{bottom:664.093333pt;}
.y15_c01057{bottom:683.933333pt;}
.y14_c01057{bottom:703.773333pt;}
.y13_c01057{bottom:723.613333pt;}
.y12_c01057{bottom:743.453333pt;}
.y11_c01057{bottom:763.333333pt;}
.y10_c01057{bottom:783.173333pt;}
.yf_c01057{bottom:803.013333pt;}
.ye_c01057{bottom:823.013333pt;}
.yd_c01057{bottom:842.853333pt;}
.yc_c01057{bottom:862.693333pt;}
.yb_c01057{bottom:882.533333pt;}
.ya_c01057{bottom:913.253333pt;}
.y9_c01057{bottom:932.933333pt;}
.y8_c01057{bottom:952.773333pt;}
.y7_c01057{bottom:972.613333pt;}
.y6_c01057{bottom:992.453333pt;}
.y5_c01057{bottom:1012.320000pt;}
.y2_c01057{bottom:1031.200000pt;}
.y1_c01057{bottom:1062.080000pt;}
.h2_c01057{height:42.722500pt;}
.h3_c01057{height:44.468750pt;}
.h4_c01057{height:57.375000pt;}
.h0_c01057{height:1122.560000pt;}
.h1_c01057{height:1122.666667pt;}
.w0_c01057{width:793.760000pt;}
.w1_c01057{width:794.000000pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:122.912000pt;}
}





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

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_db837f5f80195983d650b6c7.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01058;src:url('chunks/assets/font_f9b0dc6b5dab4e03b4f2ff54.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:1.106934;font-style:normal;font-weight: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_c01058;src:url('chunks/assets/font_d055eef0f39bc39f4ef66bac.woff2')format("woff");}.ff5_c01058{font-family:ff5_c01058;line-height:1.104492;font-style:normal;font-weight: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_c01058;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff6_c01058{font-family:ff6_c01058;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls1_c01058{letter-spacing:-0.576000px;}
.ls0_c01058{letter-spacing:0.000000px;}
.ls2_c01058{letter-spacing:0.288000px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01058{word-spacing:-20.304000px;}
.ws0_c01058{word-spacing:-19.440000px;}
.ws2_c01058{word-spacing:0.000000px;}
._a_c01058{margin-left:-5.472000px;}
._9_c01058{margin-left:-4.248000px;}
._b_c01058{margin-left:-3.062341px;}
._0_c01058{margin-left:-1.390841px;}
._1_c01058{width:1.944000px;}
._3_c01058{width:3.333491px;}
._4_c01058{width:5.328000px;}
._c_c01058{width:6.912000px;}
._d_c01058{width:8.245135px;}
._6_c01058{width:9.682865px;}
._5_c01058{width:10.872000px;}
._7_c01058{width:12.097135px;}
._e_c01058{width:13.824000px;}
._2_c01058{width:22.008024px;}
._8_c01058{width:23.036380px;}
._f_c01058{width:24.768000px;}
.fc0_c01058{color:rgb(0,0,0);}
.fs2_c01058{font-size:59.760000px;}
.fs0_c01058{font-size:66.240000px;}
.fs1_c01058{font-size:72.000000px;}
.y0_c01058{bottom:0.000000px;}
.y20_c01058{bottom:9.915000px;}
.y2_c01058{bottom:105.516000px;}
.y1e_c01058{bottom:139.176000px;}
.y1d_c01058{bottom:161.490000px;}
.y1c_c01058{bottom:183.810000px;}
.y1b_c01058{bottom:206.130000px;}
.y1a_c01058{bottom:240.690000px;}
.y19_c01058{bottom:262.830000px;}
.y18_c01058{bottom:285.195000px;}
.y17_c01058{bottom:307.515000px;}
.y16_c01058{bottom:329.835000px;}
.y1f_c01058{bottom:368.520000px;}
.y15_c01058{bottom:724.965000px;}
.y14_c01058{bottom:747.105000px;}
.y13_c01058{bottom:769.425000px;}
.y12_c01058{bottom:791.745000px;}
.y11_c01058{bottom:814.065000px;}
.y10_c01058{bottom:836.385000px;}
.yf_c01058{bottom:858.750000px;}
.ye_c01058{bottom:893.310000px;}
.yd_c01058{bottom:915.450000px;}
.yc_c01058{bottom:937.770000px;}
.yb_c01058{bottom:960.090000px;}
.ya_c01058{bottom:982.410000px;}
.y9_c01058{bottom:1004.910000px;}
.y8_c01058{bottom:1027.230000px;}
.y7_c01058{bottom:1049.550000px;}
.y6_c01058{bottom:1071.870000px;}
.y5_c01058{bottom:1094.190000px;}
.y4_c01058{bottom:1116.510000px;}
.y3_c01058{bottom:1138.860000px;}
.y1_c01058{bottom:1194.840000px;}
.h5_c01058{height:23.580000px;}
.h3_c01058{height:50.027344px;}
.h2_c01058{height:50.229844px;}
.h6_c01058{height:53.953242px;}
.h4_c01058{height:64.546875px;}
.h0_c01058{height:1262.880000px;}
.h1_c01058{height:1263.000000px;}
.w2_c01058{width:401.655000px;}
.w0_c01058{width:892.980000px;}
.w1_c01058{width:893.250000px;}
.x0_c01058{left:0.000000px;}
.x3_c01058{left:138.276000px;}
.x1_c01058{left:169.950000px;}
.x4_c01058{left:203.265000px;}
.x2_c01058{left:738.510000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls1_c01058{letter-spacing:-0.512000pt;}
.ls0_c01058{letter-spacing:0.000000pt;}
.ls2_c01058{letter-spacing:0.256000pt;}
.ws1_c01058{word-spacing:-18.048000pt;}
.ws0_c01058{word-spacing:-17.280000pt;}
.ws2_c01058{word-spacing:0.000000pt;}
._a_c01058{margin-left:-4.864000pt;}
._9_c01058{margin-left:-3.776000pt;}
._b_c01058{margin-left:-2.722081pt;}
._0_c01058{margin-left:-1.236303pt;}
._1_c01058{width:1.728000pt;}
._3_c01058{width:2.963103pt;}
._4_c01058{width:4.736000pt;}
._c_c01058{width:6.144000pt;}
._d_c01058{width:7.329009pt;}
._6_c01058{width:8.606991pt;}
._5_c01058{width:9.664000pt;}
._7_c01058{width:10.753009pt;}
._e_c01058{width:12.288000pt;}
._2_c01058{width:19.562688pt;}
._8_c01058{width:20.476782pt;}
._f_c01058{width:22.016000pt;}
.fs2_c01058{font-size:53.120000pt;}
.fs0_c01058{font-size:58.880000pt;}
.fs1_c01058{font-size:64.000000pt;}
.y0_c01058{bottom:0.000000pt;}
.y20_c01058{bottom:8.813333pt;}
.y2_c01058{bottom:93.792000pt;}
.y1e_c01058{bottom:123.712000pt;}
.y1d_c01058{bottom:143.546667pt;}
.y1c_c01058{bottom:163.386667pt;}
.y1b_c01058{bottom:183.226667pt;}
.y1a_c01058{bottom:213.946667pt;}
.y19_c01058{bottom:233.626667pt;}
.y18_c01058{bottom:253.506667pt;}
.y17_c01058{bottom:273.346667pt;}
.y16_c01058{bottom:293.186667pt;}
.y1f_c01058{bottom:327.573333pt;}
.y15_c01058{bottom:644.413333pt;}
.y14_c01058{bottom:664.093333pt;}
.y13_c01058{bottom:683.933333pt;}
.y12_c01058{bottom:703.773333pt;}
.y11_c01058{bottom:723.613333pt;}
.y10_c01058{bottom:743.453333pt;}
.yf_c01058{bottom:763.333333pt;}
.ye_c01058{bottom:794.053333pt;}
.yd_c01058{bottom:813.733333pt;}
.yc_c01058{bottom:833.573333pt;}
.yb_c01058{bottom:853.413333pt;}
.ya_c01058{bottom:873.253333pt;}
.y9_c01058{bottom:893.253333pt;}
.y8_c01058{bottom:913.093333pt;}
.y7_c01058{bottom:932.933333pt;}
.y6_c01058{bottom:952.773333pt;}
.y5_c01058{bottom:972.613333pt;}
.y4_c01058{bottom:992.453333pt;}
.y3_c01058{bottom:1012.320000pt;}
.y1_c01058{bottom:1062.080000pt;}
.h5_c01058{height:20.960000pt;}
.h3_c01058{height:44.468750pt;}
.h2_c01058{height:44.648750pt;}
.h6_c01058{height:47.958438pt;}
.h4_c01058{height:57.375000pt;}
.h0_c01058{height:1122.560000pt;}
.h1_c01058{height:1122.666667pt;}
.w2_c01058{width:357.026667pt;}
.w0_c01058{width:793.760000pt;}
.w1_c01058{width:794.000000pt;}
.x0_c01058{left:0.000000pt;}
.x3_c01058{left:122.912000pt;}
.x1_c01058{left:151.066667pt;}
.x4_c01058{left:180.680000pt;}
.x2_c01058{left:656.453333pt;}
}





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

.ir_c01059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01059;src:url('chunks/assets/font_49d42961858cfae986ec3558.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01059;src:url('chunks/assets/font_392b66b0b8a666e8b24d1e73.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01059;src:url('chunks/assets/font_8fb6e73e33850f873c2a8bd3.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:1.104492;font-style:normal;font-weight: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_c01059;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01059{font-family:ff5_c01059;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.v1_c01059{vertical-align:23.760000px;}
.ls2_c01059{letter-spacing:-0.576000px;}
.ls1_c01059{letter-spacing:-0.216000px;}
.ls0_c01059{letter-spacing:0.000000px;}
.ls3_c01059{letter-spacing:0.144000px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01059{word-spacing:-19.800000px;}
.ws1_c01059{word-spacing:-13.410720px;}
.ws2_c01059{word-spacing:0.000000px;}
._8_c01059{margin-left:-4.389782px;}
._1_c01059{margin-left:-3.205109px;}
._0_c01059{margin-left:-1.258891px;}
._2_c01059{width:1.330891px;}
._3_c01059{width:2.382653px;}
._4_c01059{width:3.384000px;}
._7_c01059{width:4.752000px;}
._b_c01059{width:5.857157px;}
._c_c01059{width:7.174843px;}
._9_c01059{width:8.712000px;}
._6_c01059{width:9.896674px;}
._5_c01059{width:10.944000px;}
._10_c01059{width:12.744000px;}
._11_c01059{width:13.752000px;}
._12_c01059{width:14.880024px;}
._a_c01059{width:18.466891px;}
._e_c01059{width:21.648024px;}
._d_c01059{width:41.904000px;}
._f_c01059{width:45.720000px;}
.fc0_c01059{color:rgb(0,0,0);}
.fs2_c01059{font-size:48.240000px;}
.fs3_c01059{font-size:59.760000px;}
.fs0_c01059{font-size:66.240000px;}
.fs1_c01059{font-size:72.000000px;}
.y0_c01059{bottom:0.000000px;}
.y2f_c01059{bottom:9.915000px;}
.y4_c01059{bottom:71.136000px;}
.y3_c01059{bottom:105.516000px;}
.y2d_c01059{bottom:197.490000px;}
.y2c_c01059{bottom:219.630000px;}
.y2b_c01059{bottom:241.950000px;}
.y2a_c01059{bottom:264.270000px;}
.y29_c01059{bottom:286.635000px;}
.y28_c01059{bottom:308.955000px;}
.y27_c01059{bottom:331.275000px;}
.y26_c01059{bottom:353.595000px;}
.y25_c01059{bottom:375.915000px;}
.y2e_c01059{bottom:406.680000px;}
.y24_c01059{bottom:410.475000px;}
.y23_c01059{bottom:432.615000px;}
.y22_c01059{bottom:454.935000px;}
.y21_c01059{bottom:477.255000px;}
.y20_c01059{bottom:499.755000px;}
.y1f_c01059{bottom:522.075000px;}
.y1e_c01059{bottom:544.395000px;}
.y1d_c01059{bottom:566.745000px;}
.y1c_c01059{bottom:589.065000px;}
.y1b_c01059{bottom:611.385000px;}
.y1a_c01059{bottom:633.705000px;}
.y19_c01059{bottom:656.025000px;}
.y18_c01059{bottom:678.345000px;}
.y17_c01059{bottom:700.665000px;}
.y16_c01059{bottom:722.985000px;}
.y15_c01059{bottom:745.485000px;}
.y14_c01059{bottom:767.805000px;}
.y13_c01059{bottom:802.185000px;}
.y12_c01059{bottom:824.505000px;}
.y11_c01059{bottom:846.825000px;}
.y10_c01059{bottom:869.190000px;}
.yf_c01059{bottom:903.570000px;}
.ye_c01059{bottom:925.890000px;}
.yd_c01059{bottom:948.210000px;}
.yc_c01059{bottom:970.530000px;}
.yb_c01059{bottom:992.850000px;}
.ya_c01059{bottom:1015.170000px;}
.y9_c01059{bottom:1049.730000px;}
.y8_c01059{bottom:1071.870000px;}
.y7_c01059{bottom:1094.190000px;}
.y6_c01059{bottom:1116.510000px;}
.y5_c01059{bottom:1138.860000px;}
.y2_c01059{bottom:1160.100000px;}
.y1_c01059{bottom:1194.840000px;}
.h6_c01059{height:23.580000px;}
.h2_c01059{height:48.062812px;}
.h3_c01059{height:50.027344px;}
.h7_c01059{height:53.953242px;}
.h4_c01059{height:64.546875px;}
.h5_c01059{height:67.006406px;}
.h0_c01059{height:1262.880000px;}
.h1_c01059{height:1263.000000px;}
.w2_c01059{width:307.470000px;}
.w0_c01059{width:892.980000px;}
.w1_c01059{width:893.250000px;}
.x0_c01059{left:0.000000px;}
.x1_c01059{left:138.276000px;}
.x4_c01059{left:140.805000px;}
.x2_c01059{left:453.315000px;}
.x3_c01059{left:460.335000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.v1_c01059{vertical-align:21.120000pt;}
.ls2_c01059{letter-spacing:-0.512000pt;}
.ls1_c01059{letter-spacing:-0.192000pt;}
.ls0_c01059{letter-spacing:0.000000pt;}
.ls3_c01059{letter-spacing:0.128000pt;}
.ws0_c01059{word-spacing:-17.600000pt;}
.ws1_c01059{word-spacing:-11.920640pt;}
.ws2_c01059{word-spacing:0.000000pt;}
._8_c01059{margin-left:-3.902029pt;}
._1_c01059{margin-left:-2.848986pt;}
._0_c01059{margin-left:-1.119014pt;}
._2_c01059{width:1.183014pt;}
._3_c01059{width:2.117914pt;}
._4_c01059{width:3.008000pt;}
._7_c01059{width:4.224000pt;}
._b_c01059{width:5.206362pt;}
._c_c01059{width:6.377638pt;}
._9_c01059{width:7.744000pt;}
._6_c01059{width:8.797043pt;}
._5_c01059{width:9.728000pt;}
._10_c01059{width:11.328000pt;}
._11_c01059{width:12.224000pt;}
._12_c01059{width:13.226688pt;}
._a_c01059{width:16.415014pt;}
._e_c01059{width:19.242688pt;}
._d_c01059{width:37.248000pt;}
._f_c01059{width:40.640000pt;}
.fs2_c01059{font-size:42.880000pt;}
.fs3_c01059{font-size:53.120000pt;}
.fs0_c01059{font-size:58.880000pt;}
.fs1_c01059{font-size:64.000000pt;}
.y0_c01059{bottom:0.000000pt;}
.y2f_c01059{bottom:8.813333pt;}
.y4_c01059{bottom:63.232000pt;}
.y3_c01059{bottom:93.792000pt;}
.y2d_c01059{bottom:175.546667pt;}
.y2c_c01059{bottom:195.226667pt;}
.y2b_c01059{bottom:215.066667pt;}
.y2a_c01059{bottom:234.906667pt;}
.y29_c01059{bottom:254.786667pt;}
.y28_c01059{bottom:274.626667pt;}
.y27_c01059{bottom:294.466667pt;}
.y26_c01059{bottom:314.306667pt;}
.y25_c01059{bottom:334.146667pt;}
.y2e_c01059{bottom:361.493333pt;}
.y24_c01059{bottom:364.866667pt;}
.y23_c01059{bottom:384.546667pt;}
.y22_c01059{bottom:404.386667pt;}
.y21_c01059{bottom:424.226667pt;}
.y20_c01059{bottom:444.226667pt;}
.y1f_c01059{bottom:464.066667pt;}
.y1e_c01059{bottom:483.906667pt;}
.y1d_c01059{bottom:503.773333pt;}
.y1c_c01059{bottom:523.613333pt;}
.y1b_c01059{bottom:543.453333pt;}
.y1a_c01059{bottom:563.293333pt;}
.y19_c01059{bottom:583.133333pt;}
.y18_c01059{bottom:602.973333pt;}
.y17_c01059{bottom:622.813333pt;}
.y16_c01059{bottom:642.653333pt;}
.y15_c01059{bottom:662.653333pt;}
.y14_c01059{bottom:682.493333pt;}
.y13_c01059{bottom:713.053333pt;}
.y12_c01059{bottom:732.893333pt;}
.y11_c01059{bottom:752.733333pt;}
.y10_c01059{bottom:772.613333pt;}
.yf_c01059{bottom:803.173333pt;}
.ye_c01059{bottom:823.013333pt;}
.yd_c01059{bottom:842.853333pt;}
.yc_c01059{bottom:862.693333pt;}
.yb_c01059{bottom:882.533333pt;}
.ya_c01059{bottom:902.373333pt;}
.y9_c01059{bottom:933.093333pt;}
.y8_c01059{bottom:952.773333pt;}
.y7_c01059{bottom:972.613333pt;}
.y6_c01059{bottom:992.453333pt;}
.y5_c01059{bottom:1012.320000pt;}
.y2_c01059{bottom:1031.200000pt;}
.y1_c01059{bottom:1062.080000pt;}
.h6_c01059{height:20.960000pt;}
.h2_c01059{height:42.722500pt;}
.h3_c01059{height:44.468750pt;}
.h7_c01059{height:47.958438pt;}
.h4_c01059{height:57.375000pt;}
.h5_c01059{height:59.561250pt;}
.h0_c01059{height:1122.560000pt;}
.h1_c01059{height:1122.666667pt;}
.w2_c01059{width:273.306667pt;}
.w0_c01059{width:793.760000pt;}
.w1_c01059{width:794.000000pt;}
.x0_c01059{left:0.000000pt;}
.x1_c01059{left:122.912000pt;}
.x4_c01059{left:125.160000pt;}
.x2_c01059{left:402.946667pt;}
.x3_c01059{left:409.186667pt;}
}





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

.ir_c01060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01060;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01060;src:url('chunks/assets/font_0726ba4f7984056e249c9b94.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01060;src:url('chunks/assets/font_cc6b51bf6cf25ed022bb45f1.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01060;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01060{font-family:ff5_c01060;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01060;src:url('chunks/assets/font_dc8f4686f492ab53263bf669.woff2')format("woff");}.ff6_c01060{font-family:ff6_c01060;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01060;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff7_c01060{font-family:ff7_c01060;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;}
.m0_c01060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls3_c01060{letter-spacing:-0.864000px;}
.ls2_c01060{letter-spacing:-0.432000px;}
.ls0_c01060{letter-spacing:0.000000px;}
.ls4_c01060{letter-spacing:0.259800px;}
.ls1_c01060{letter-spacing:0.288000px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01060{word-spacing:-19.584000px;}
.ws1_c01060{word-spacing:-19.152000px;}
.ws2_c01060{word-spacing:-16.873080px;}
.ws3_c01060{word-spacing:0.000000px;}
._e_c01060{margin-left:-5.449159px;}
._5_c01060{margin-left:-4.032000px;}
._4_c01060{margin-left:-2.592000px;}
._0_c01060{margin-left:-1.390841px;}
._6_c01060{width:1.008000px;}
._b_c01060{width:2.422889px;}
._a_c01060{width:3.695976px;}
._c_c01060{width:5.112000px;}
._d_c01060{width:8.267976px;}
._9_c01060{width:13.608000px;}
._8_c01060{width:17.496000px;}
._7_c01060{width:18.768024px;}
._3_c01060{width:21.168000px;}
._f_c01060{width:27.504000px;}
._2_c01060{width:30.694841px;}
._1_c01060{width:31.824000px;}
.fc1_c01060{color:rgb(68,84,106);}
.fc0_c01060{color:rgb(0,0,0);}
.fs2_c01060{font-size:59.760000px;}
.fs0_c01060{font-size:66.240000px;}
.fs1_c01060{font-size:72.000000px;}
.y0_c01060{bottom:0.000000px;}
.y21_c01060{bottom:5.595000px;}
.y23_c01060{bottom:9.915000px;}
.y20_c01060{bottom:24.135000px;}
.y4_c01060{bottom:71.136000px;}
.y3_c01060{bottom:105.516000px;}
.y1e_c01060{bottom:180.390000px;}
.y1d_c01060{bottom:202.530000px;}
.y1c_c01060{bottom:224.850000px;}
.y1b_c01060{bottom:247.170000px;}
.y1a_c01060{bottom:269.490000px;}
.y19_c01060{bottom:292.035000px;}
.y18_c01060{bottom:326.415000px;}
.y22_c01060{bottom:327.120000px;}
.y17_c01060{bottom:356.655000px;}
.y16_c01060{bottom:723.165000px;}
.y15_c01060{bottom:745.485000px;}
.y14_c01060{bottom:767.805000px;}
.y13_c01060{bottom:790.125000px;}
.y12_c01060{bottom:812.445000px;}
.y11_c01060{bottom:834.765000px;}
.y10_c01060{bottom:857.130000px;}
.y1f_c01060{bottom:877.995000px;}
.yf_c01060{bottom:891.690000px;}
.ye_c01060{bottom:926.070000px;}
.yd_c01060{bottom:960.270000px;}
.yc_c01060{bottom:982.410000px;}
.yb_c01060{bottom:1004.910000px;}
.ya_c01060{bottom:1027.230000px;}
.y9_c01060{bottom:1049.550000px;}
.y8_c01060{bottom:1071.870000px;}
.y7_c01060{bottom:1094.190000px;}
.y6_c01060{bottom:1116.510000px;}
.y5_c01060{bottom:1138.860000px;}
.y2_c01060{bottom:1160.100000px;}
.y1_c01060{bottom:1194.840000px;}
.h7_c01060{height:23.580000px;}
.h5_c01060{height:37.800000px;}
.h3_c01060{height:50.027344px;}
.h2_c01060{height:50.229844px;}
.h6_c01060{height:53.428008px;}
.h8_c01060{height:62.327813px;}
.h4_c01060{height:64.546875px;}
.h0_c01060{height:1262.880000px;}
.h1_c01060{height:1263.000000px;}
.w2_c01060{width:307.155000px;}
.w3_c01060{width:404.895000px;}
.w0_c01060{width:892.980000px;}
.w1_c01060{width:893.250000px;}
.x0_c01060{left:0.000000px;}
.x2_c01060{left:138.276000px;}
.x1_c01060{left:169.950000px;}
.x6_c01060{left:243.945000px;}
.x5_c01060{left:458.355000px;}
.x4_c01060{left:673.665000px;}
.x3_c01060{left:738.510000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls3_c01060{letter-spacing:-0.768000pt;}
.ls2_c01060{letter-spacing:-0.384000pt;}
.ls0_c01060{letter-spacing:0.000000pt;}
.ls4_c01060{letter-spacing:0.230933pt;}
.ls1_c01060{letter-spacing:0.256000pt;}
.ws0_c01060{word-spacing:-17.408000pt;}
.ws1_c01060{word-spacing:-17.024000pt;}
.ws2_c01060{word-spacing:-14.998293pt;}
.ws3_c01060{word-spacing:0.000000pt;}
._e_c01060{margin-left:-4.843697pt;}
._5_c01060{margin-left:-3.584000pt;}
._4_c01060{margin-left:-2.304000pt;}
._0_c01060{margin-left:-1.236303pt;}
._6_c01060{width:0.896000pt;}
._b_c01060{width:2.153679pt;}
._a_c01060{width:3.285312pt;}
._c_c01060{width:4.544000pt;}
._d_c01060{width:7.349312pt;}
._9_c01060{width:12.096000pt;}
._8_c01060{width:15.552000pt;}
._7_c01060{width:16.682688pt;}
._3_c01060{width:18.816000pt;}
._f_c01060{width:24.448000pt;}
._2_c01060{width:27.284303pt;}
._1_c01060{width:28.288000pt;}
.fs2_c01060{font-size:53.120000pt;}
.fs0_c01060{font-size:58.880000pt;}
.fs1_c01060{font-size:64.000000pt;}
.y0_c01060{bottom:0.000000pt;}
.y21_c01060{bottom:4.973333pt;}
.y23_c01060{bottom:8.813333pt;}
.y20_c01060{bottom:21.453333pt;}
.y4_c01060{bottom:63.232000pt;}
.y3_c01060{bottom:93.792000pt;}
.y1e_c01060{bottom:160.346667pt;}
.y1d_c01060{bottom:180.026667pt;}
.y1c_c01060{bottom:199.866667pt;}
.y1b_c01060{bottom:219.706667pt;}
.y1a_c01060{bottom:239.546667pt;}
.y19_c01060{bottom:259.586667pt;}
.y18_c01060{bottom:290.146667pt;}
.y22_c01060{bottom:290.773333pt;}
.y17_c01060{bottom:317.026667pt;}
.y16_c01060{bottom:642.813333pt;}
.y15_c01060{bottom:662.653333pt;}
.y14_c01060{bottom:682.493333pt;}
.y13_c01060{bottom:702.333333pt;}
.y12_c01060{bottom:722.173333pt;}
.y11_c01060{bottom:742.013333pt;}
.y10_c01060{bottom:761.893333pt;}
.y1f_c01060{bottom:780.440000pt;}
.yf_c01060{bottom:792.613333pt;}
.ye_c01060{bottom:823.173333pt;}
.yd_c01060{bottom:853.573333pt;}
.yc_c01060{bottom:873.253333pt;}
.yb_c01060{bottom:893.253333pt;}
.ya_c01060{bottom:913.093333pt;}
.y9_c01060{bottom:932.933333pt;}
.y8_c01060{bottom:952.773333pt;}
.y7_c01060{bottom:972.613333pt;}
.y6_c01060{bottom:992.453333pt;}
.y5_c01060{bottom:1012.320000pt;}
.y2_c01060{bottom:1031.200000pt;}
.y1_c01060{bottom:1062.080000pt;}
.h7_c01060{height:20.960000pt;}
.h5_c01060{height:33.600000pt;}
.h3_c01060{height:44.468750pt;}
.h2_c01060{height:44.648750pt;}
.h6_c01060{height:47.491563pt;}
.h8_c01060{height:55.402500pt;}
.h4_c01060{height:57.375000pt;}
.h0_c01060{height:1122.560000pt;}
.h1_c01060{height:1122.666667pt;}
.w2_c01060{width:273.026667pt;}
.w3_c01060{width:359.906667pt;}
.w0_c01060{width:793.760000pt;}
.w1_c01060{width:794.000000pt;}
.x0_c01060{left:0.000000pt;}
.x2_c01060{left:122.912000pt;}
.x1_c01060{left:151.066667pt;}
.x6_c01060{left:216.840000pt;}
.x5_c01060{left:407.426667pt;}
.x4_c01060{left:598.813333pt;}
.x3_c01060{left:656.453333pt;}
}





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

.ir_c01061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01061;src:url('chunks/assets/font_47c350479c4a8d27f589ba28.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01061;src:url('chunks/assets/font_d83001522d225a3d5b2639d7.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01061;src:url('chunks/assets/font_133043119968cf940323bac1.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01061;src:url('chunks/assets/font_8f9836eaea7a6640a5ea9f6f.woff2')format("woff");}.ff5_c01061{font-family:ff5_c01061;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01061;src:url('chunks/assets/font_8f1b26aced5d32ea3cd6ed46.woff2')format("woff");}.ff6_c01061{font-family:ff6_c01061;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01061;src:url('chunks/assets/font_91f7e1b74203db67802ca29e.woff2')format("woff");}.ff7_c01061{font-family:ff7_c01061;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.ls3_c01061{letter-spacing:-0.247800px;}
.ls2_c01061{letter-spacing:-0.181200px;}
.ls4_c01061{letter-spacing:-0.152400px;}
.ls1_c01061{letter-spacing:0.000000px;}
.ls0_c01061{letter-spacing:0.152400px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01061{word-spacing:-21.187920px;}
.ws1_c01061{word-spacing:-21.035520px;}
.ws0_c01061{word-spacing:-20.016000px;}
.ws3_c01061{word-spacing:0.000000px;}
._f_c01061{margin-left:-5.544000px;}
._e_c01061{margin-left:-4.536000px;}
._9_c01061{margin-left:-3.312000px;}
._1e_c01061{margin-left:-2.301955px;}
._0_c01061{margin-left:-1.258891px;}
._3_c01061{width:1.008000px;}
._1a_c01061{width:2.028024px;}
._2_c01061{width:4.392000px;}
._1_c01061{width:5.472000px;}
._d_c01061{width:7.920000px;}
._c_c01061{width:8.928000px;}
._1c_c01061{width:12.453782px;}
._1b_c01061{width:13.608000px;}
._13_c01061{width:14.688000px;}
._1d_c01061{width:16.056000px;}
._6_c01061{width:17.640000px;}
._5_c01061{width:18.720000px;}
._12_c01061{width:21.384000px;}
._b_c01061{width:23.976000px;}
._a_c01061{width:24.984000px;}
._20_c01061{width:26.781782px;}
._1f_c01061{width:28.080000px;}
._19_c01061{width:36.610891px;}
._18_c01061{width:37.728000px;}
._4_c01061{width:48.528000px;}
._11_c01061{width:53.688024px;}
._10_c01061{width:54.936000px;}
._8_c01061{width:59.901782px;}
._7_c01061{width:60.912000px;}
._16_c01061{width:70.810891px;}
._15_c01061{width:71.856000px;}
._17_c01061{width:75.600000px;}
._14_c01061{width:81.720000px;}
.fc0_c01061{color:rgb(0,0,0);}
.fs3_c01061{font-size:38.880000px;}
.fs2_c01061{font-size:48.240000px;}
.fs4_c01061{font-size:59.760000px;}
.fs0_c01061{font-size:66.240000px;}
.fs1_c01061{font-size:72.000000px;}
.y0_c01061{bottom:0.000000px;}
.y37_c01061{bottom:8.820000px;}
.y4_c01061{bottom:71.136000px;}
.y3_c01061{bottom:105.516000px;}
.y35_c01061{bottom:124.776000px;}
.y34_c01061{bottom:142.956000px;}
.y33_c01061{bottom:161.310000px;}
.y32_c01061{bottom:179.490000px;}
.y31_c01061{bottom:197.670000px;}
.y30_c01061{bottom:215.850000px;}
.y2f_c01061{bottom:234.210000px;}
.y2e_c01061{bottom:252.390000px;}
.y2d_c01061{bottom:270.570000px;}
.y2c_c01061{bottom:288.795000px;}
.y2b_c01061{bottom:307.155000px;}
.y2a_c01061{bottom:325.335000px;}
.y29_c01061{bottom:343.515000px;}
.y28_c01061{bottom:361.875000px;}
.y27_c01061{bottom:380.055000px;}
.y26_c01061{bottom:398.235000px;}
.y25_c01061{bottom:416.415000px;}
.y24_c01061{bottom:421.635000px;}
.y23_c01061{bottom:449.715000px;}
.y21_c01061{bottom:513.435000px;}
.y22_c01061{bottom:519.375000px;}
.y20_c01061{bottom:535.755000px;}
.y1f_c01061{bottom:558.075000px;}
.y1e_c01061{bottom:580.425000px;}
.y1d_c01061{bottom:602.745000px;}
.y1c_c01061{bottom:625.065000px;}
.y1b_c01061{bottom:647.385000px;}
.y1a_c01061{bottom:669.705000px;}
.y19_c01061{bottom:692.025000px;}
.y18_c01061{bottom:714.345000px;}
.y36_c01061{bottom:724.425000px;}
.y17_c01061{bottom:736.665000px;}
.y16_c01061{bottom:758.985000px;}
.y15_c01061{bottom:781.485000px;}
.y14_c01061{bottom:803.805000px;}
.y13_c01061{bottom:826.125000px;}
.y12_c01061{bottom:848.490000px;}
.y11_c01061{bottom:870.810000px;}
.y10_c01061{bottom:893.130000px;}
.yf_c01061{bottom:915.450000px;}
.ye_c01061{bottom:937.770000px;}
.yd_c01061{bottom:960.090000px;}
.yc_c01061{bottom:982.410000px;}
.yb_c01061{bottom:1004.910000px;}
.ya_c01061{bottom:1027.230000px;}
.y9_c01061{bottom:1049.550000px;}
.y8_c01061{bottom:1071.870000px;}
.y7_c01061{bottom:1094.190000px;}
.y6_c01061{bottom:1116.510000px;}
.y5_c01061{bottom:1138.860000px;}
.y2_c01061{bottom:1160.100000px;}
.y1_c01061{bottom:1194.840000px;}
.ha_c01061{height:22.500000px;}
.h7_c01061{height:41.484960px;}
.h6_c01061{height:43.246406px;}
.h2_c01061{height:48.062812px;}
.h3_c01061{height:50.027344px;}
.hb_c01061{height:53.428008px;}
.h9_c01061{height:58.242656px;}
.h8_c01061{height:63.763920px;}
.h4_c01061{height:64.546875px;}
.h5_c01061{height:1262.865000px;}
.h0_c01061{height:1262.880000px;}
.h1_c01061{height:1263.000000px;}
.w3_c01061{width:274.155000px;}
.w2_c01061{width:892.957500px;}
.w0_c01061{width:892.980000px;}
.w1_c01061{width:893.250000px;}
.x0_c01061{left:0.000000px;}
.x1_c01061{left:138.276000px;}
.x7_c01061{left:156.630000px;}
.x4_c01061{left:235.267500px;}
.x5_c01061{left:255.270000px;}
.x6_c01061{left:354.315000px;}
.x2_c01061{left:421.815000px;}
.x3_c01061{left:423.975000px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls3_c01061{letter-spacing:-0.220267pt;}
.ls2_c01061{letter-spacing:-0.161067pt;}
.ls4_c01061{letter-spacing:-0.135467pt;}
.ls1_c01061{letter-spacing:0.000000pt;}
.ls0_c01061{letter-spacing:0.135467pt;}
.ws2_c01061{word-spacing:-18.833707pt;}
.ws1_c01061{word-spacing:-18.698240pt;}
.ws0_c01061{word-spacing:-17.792000pt;}
.ws3_c01061{word-spacing:0.000000pt;}
._f_c01061{margin-left:-4.928000pt;}
._e_c01061{margin-left:-4.032000pt;}
._9_c01061{margin-left:-2.944000pt;}
._1e_c01061{margin-left:-2.046182pt;}
._0_c01061{margin-left:-1.119014pt;}
._3_c01061{width:0.896000pt;}
._1a_c01061{width:1.802688pt;}
._2_c01061{width:3.904000pt;}
._1_c01061{width:4.864000pt;}
._d_c01061{width:7.040000pt;}
._c_c01061{width:7.936000pt;}
._1c_c01061{width:11.070029pt;}
._1b_c01061{width:12.096000pt;}
._13_c01061{width:13.056000pt;}
._1d_c01061{width:14.272000pt;}
._6_c01061{width:15.680000pt;}
._5_c01061{width:16.640000pt;}
._12_c01061{width:19.008000pt;}
._b_c01061{width:21.312000pt;}
._a_c01061{width:22.208000pt;}
._20_c01061{width:23.806029pt;}
._1f_c01061{width:24.960000pt;}
._19_c01061{width:32.543014pt;}
._18_c01061{width:33.536000pt;}
._4_c01061{width:43.136000pt;}
._11_c01061{width:47.722688pt;}
._10_c01061{width:48.832000pt;}
._8_c01061{width:53.246029pt;}
._7_c01061{width:54.144000pt;}
._16_c01061{width:62.943014pt;}
._15_c01061{width:63.872000pt;}
._17_c01061{width:67.200000pt;}
._14_c01061{width:72.640000pt;}
.fs3_c01061{font-size:34.560000pt;}
.fs2_c01061{font-size:42.880000pt;}
.fs4_c01061{font-size:53.120000pt;}
.fs0_c01061{font-size:58.880000pt;}
.fs1_c01061{font-size:64.000000pt;}
.y0_c01061{bottom:0.000000pt;}
.y37_c01061{bottom:7.840000pt;}
.y4_c01061{bottom:63.232000pt;}
.y3_c01061{bottom:93.792000pt;}
.y35_c01061{bottom:110.912000pt;}
.y34_c01061{bottom:127.072000pt;}
.y33_c01061{bottom:143.386667pt;}
.y32_c01061{bottom:159.546667pt;}
.y31_c01061{bottom:175.706667pt;}
.y30_c01061{bottom:191.866667pt;}
.y2f_c01061{bottom:208.186667pt;}
.y2e_c01061{bottom:224.346667pt;}
.y2d_c01061{bottom:240.506667pt;}
.y2c_c01061{bottom:256.706667pt;}
.y2b_c01061{bottom:273.026667pt;}
.y2a_c01061{bottom:289.186667pt;}
.y29_c01061{bottom:305.346667pt;}
.y28_c01061{bottom:321.666667pt;}
.y27_c01061{bottom:337.826667pt;}
.y26_c01061{bottom:353.986667pt;}
.y25_c01061{bottom:370.146667pt;}
.y24_c01061{bottom:374.786667pt;}
.y23_c01061{bottom:399.746667pt;}
.y21_c01061{bottom:456.386667pt;}
.y22_c01061{bottom:461.666667pt;}
.y20_c01061{bottom:476.226667pt;}
.y1f_c01061{bottom:496.066667pt;}
.y1e_c01061{bottom:515.933333pt;}
.y1d_c01061{bottom:535.773333pt;}
.y1c_c01061{bottom:555.613333pt;}
.y1b_c01061{bottom:575.453333pt;}
.y1a_c01061{bottom:595.293333pt;}
.y19_c01061{bottom:615.133333pt;}
.y18_c01061{bottom:634.973333pt;}
.y36_c01061{bottom:643.933333pt;}
.y17_c01061{bottom:654.813333pt;}
.y16_c01061{bottom:674.653333pt;}
.y15_c01061{bottom:694.653333pt;}
.y14_c01061{bottom:714.493333pt;}
.y13_c01061{bottom:734.333333pt;}
.y12_c01061{bottom:754.213333pt;}
.y11_c01061{bottom:774.053333pt;}
.y10_c01061{bottom:793.893333pt;}
.yf_c01061{bottom:813.733333pt;}
.ye_c01061{bottom:833.573333pt;}
.yd_c01061{bottom:853.413333pt;}
.yc_c01061{bottom:873.253333pt;}
.yb_c01061{bottom:893.253333pt;}
.ya_c01061{bottom:913.093333pt;}
.y9_c01061{bottom:932.933333pt;}
.y8_c01061{bottom:952.773333pt;}
.y7_c01061{bottom:972.613333pt;}
.y6_c01061{bottom:992.453333pt;}
.y5_c01061{bottom:1012.320000pt;}
.y2_c01061{bottom:1031.200000pt;}
.y1_c01061{bottom:1062.080000pt;}
.ha_c01061{height:20.000000pt;}
.h7_c01061{height:36.875520pt;}
.h6_c01061{height:38.441250pt;}
.h2_c01061{height:42.722500pt;}
.h3_c01061{height:44.468750pt;}
.hb_c01061{height:47.491563pt;}
.h9_c01061{height:51.771250pt;}
.h8_c01061{height:56.679040pt;}
.h4_c01061{height:57.375000pt;}
.h5_c01061{height:1122.546667pt;}
.h0_c01061{height:1122.560000pt;}
.h1_c01061{height:1122.666667pt;}
.w3_c01061{width:243.693333pt;}
.w2_c01061{width:793.740000pt;}
.w0_c01061{width:793.760000pt;}
.w1_c01061{width:794.000000pt;}
.x0_c01061{left:0.000000pt;}
.x1_c01061{left:122.912000pt;}
.x7_c01061{left:139.226667pt;}
.x4_c01061{left:209.126667pt;}
.x5_c01061{left:226.906667pt;}
.x6_c01061{left:314.946667pt;}
.x2_c01061{left:374.946667pt;}
.x3_c01061{left:376.866667pt;}
}





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

.ir_c01062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01062;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01062;src:url('chunks/assets/font_99e604469379bd2f8e32a8be.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01062;src:url('chunks/assets/font_3e446f72341e354219ee2302.woff2')format("woff");}.ff4_c01062{font-family:ff4_c01062;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01062;src:url('chunks/assets/font_557f1d272c4bc818af58c114.woff2')format("woff");}.ff5_c01062{font-family:ff5_c01062;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01062;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff6_c01062{font-family:ff6_c01062;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_c01062;src:url('chunks/assets/font_07d9f9f35deb4122f0a4f71f.woff2')format("woff");}.ff7_c01062{font-family:ff7_c01062;line-height:1.575000;font-style:normal;font-weight: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_c01062;src:url('chunks/assets/font_2dd1cd5225994ca6a9812a36.woff2')format("woff");}.ff8_c01062{font-family:ff8_c01062;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:ff9_c01062;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff9_c01062{font-family:ff9_c01062;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls4_c01062{letter-spacing:-0.247800px;}
.ls3_c01062{letter-spacing:-0.181200px;}
.ls1_c01062{letter-spacing:0.000000px;}
.ls0_c01062{letter-spacing:0.144000px;}
.ls2_c01062{letter-spacing:0.288000px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01062{word-spacing:-20.016000px;}
.ws1_c01062{word-spacing:0.000000px;}
._4_c01062{margin-left:-2.769270px;}
._0_c01062{margin-left:-1.390841px;}
._2_c01062{width:1.572048px;}
._6_c01062{width:2.997683px;}
._5_c01062{width:4.032000px;}
._1_c01062{width:5.472000px;}
._3_c01062{width:7.416000px;}
._9_c01062{width:9.192024px;}
._8_c01062{width:10.296000px;}
._13_c01062{width:13.152024px;}
._d_c01062{width:17.784000px;}
._10_c01062{width:21.720024px;}
._14_c01062{width:23.328000px;}
._7_c01062{width:28.872000px;}
._12_c01062{width:42.862841px;}
._11_c01062{width:43.992000px;}
._c_c01062{width:45.336024px;}
._b_c01062{width:47.016000px;}
._a_c01062{width:48.096000px;}
._f_c01062{width:62.062865px;}
._e_c01062{width:63.144000px;}
.fc1_c01062{color:rgb(0,102,204);}
.fc0_c01062{color:rgb(0,0,0);}
.fs4_c01062{font-size:38.880000px;}
.fs2_c01062{font-size:48.240000px;}
.fs5_c01062{font-size:59.760000px;}
.fs0_c01062{font-size:66.240000px;}
.fs1_c01062{font-size:72.000000px;}
.fs3_c01062{font-size:84.240000px;}
.y0_c01062{bottom:0.000000px;}
.y33_c01062{bottom:8.805000px;}
.y4_c01062{bottom:71.136000px;}
.y3_c01062{bottom:105.516000px;}
.y31_c01062{bottom:124.776000px;}
.y30_c01062{bottom:129.996000px;}
.y2f_c01062{bottom:158.070000px;}
.y2e_c01062{bottom:183.270000px;}
.y32_c01062{bottom:194.265000px;}
.y2d_c01062{bottom:205.410000px;}
.y2c_c01062{bottom:227.910000px;}
.y2b_c01062{bottom:250.230000px;}
.y2a_c01062{bottom:272.550000px;}
.y29_c01062{bottom:294.915000px;}
.y28_c01062{bottom:317.235000px;}
.y27_c01062{bottom:339.555000px;}
.y26_c01062{bottom:361.875000px;}
.y25_c01062{bottom:384.195000px;}
.y24_c01062{bottom:406.515000px;}
.y23_c01062{bottom:428.835000px;}
.y22_c01062{bottom:451.335000px;}
.y21_c01062{bottom:473.655000px;}
.y20_c01062{bottom:495.975000px;}
.y1f_c01062{bottom:518.295000px;}
.y1e_c01062{bottom:540.615000px;}
.y1d_c01062{bottom:562.935000px;}
.y1c_c01062{bottom:585.285000px;}
.y1b_c01062{bottom:607.605000px;}
.y1a_c01062{bottom:628.845000px;}
.y19_c01062{bottom:651.885000px;}
.y18_c01062{bottom:688.965000px;}
.y17_c01062{bottom:723.165000px;}
.y15_c01062{bottom:757.545000px;}
.y16_c01062{bottom:763.485000px;}
.y14_c01062{bottom:779.685000px;}
.y13_c01062{bottom:802.005000px;}
.y12_c01062{bottom:824.505000px;}
.y11_c01062{bottom:858.930000px;}
.y10_c01062{bottom:881.070000px;}
.yf_c01062{bottom:903.390000px;}
.ye_c01062{bottom:925.890000px;}
.yd_c01062{bottom:948.210000px;}
.yc_c01062{bottom:970.530000px;}
.yb_c01062{bottom:992.850000px;}
.ya_c01062{bottom:1015.170000px;}
.y9_c01062{bottom:1049.730000px;}
.y8_c01062{bottom:1071.870000px;}
.y7_c01062{bottom:1094.190000px;}
.y6_c01062{bottom:1116.510000px;}
.y5_c01062{bottom:1138.860000px;}
.y2_c01062{bottom:1160.100000px;}
.y1_c01062{bottom:1194.840000px;}
.ha_c01062{height:22.500000px;}
.h8_c01062{height:41.484960px;}
.h6_c01062{height:43.246406px;}
.h3_c01062{height:50.027344px;}
.h2_c01062{height:50.229844px;}
.hb_c01062{height:53.953242px;}
.h4_c01062{height:64.546875px;}
.h9_c01062{height:74.953125px;}
.h7_c01062{height:87.859687px;}
.h5_c01062{height:1262.865000px;}
.h0_c01062{height:1262.880000px;}
.h1_c01062{height:1263.000000px;}
.w3_c01062{width:267.375000px;}
.w2_c01062{width:892.957500px;}
.w0_c01062{width:892.980000px;}
.w1_c01062{width:893.250000px;}
.x0_c01062{left:0.000000px;}
.x2_c01062{left:138.276000px;}
.x7_c01062{left:156.630000px;}
.x1_c01062{left:169.950000px;}
.x4_c01062{left:260.287500px;}
.x5_c01062{left:280.290000px;}
.x6_c01062{left:354.315000px;}
.x8_c01062{left:470.955000px;}
.x3_c01062{left:738.510000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls4_c01062{letter-spacing:-0.220267pt;}
.ls3_c01062{letter-spacing:-0.161067pt;}
.ls1_c01062{letter-spacing:0.000000pt;}
.ls0_c01062{letter-spacing:0.128000pt;}
.ls2_c01062{letter-spacing:0.256000pt;}
.ws0_c01062{word-spacing:-17.792000pt;}
.ws1_c01062{word-spacing:0.000000pt;}
._4_c01062{margin-left:-2.461573pt;}
._0_c01062{margin-left:-1.236303pt;}
._2_c01062{width:1.397376pt;}
._6_c01062{width:2.664607pt;}
._5_c01062{width:3.584000pt;}
._1_c01062{width:4.864000pt;}
._3_c01062{width:6.592000pt;}
._9_c01062{width:8.170688pt;}
._8_c01062{width:9.152000pt;}
._13_c01062{width:11.690688pt;}
._d_c01062{width:15.808000pt;}
._10_c01062{width:19.306688pt;}
._14_c01062{width:20.736000pt;}
._7_c01062{width:25.664000pt;}
._12_c01062{width:38.100303pt;}
._11_c01062{width:39.104000pt;}
._c_c01062{width:40.298688pt;}
._b_c01062{width:41.792000pt;}
._a_c01062{width:42.752000pt;}
._f_c01062{width:55.166991pt;}
._e_c01062{width:56.128000pt;}
.fs4_c01062{font-size:34.560000pt;}
.fs2_c01062{font-size:42.880000pt;}
.fs5_c01062{font-size:53.120000pt;}
.fs0_c01062{font-size:58.880000pt;}
.fs1_c01062{font-size:64.000000pt;}
.fs3_c01062{font-size:74.880000pt;}
.y0_c01062{bottom:0.000000pt;}
.y33_c01062{bottom:7.826667pt;}
.y4_c01062{bottom:63.232000pt;}
.y3_c01062{bottom:93.792000pt;}
.y31_c01062{bottom:110.912000pt;}
.y30_c01062{bottom:115.552000pt;}
.y2f_c01062{bottom:140.506667pt;}
.y2e_c01062{bottom:162.906667pt;}
.y32_c01062{bottom:172.680000pt;}
.y2d_c01062{bottom:182.586667pt;}
.y2c_c01062{bottom:202.586667pt;}
.y2b_c01062{bottom:222.426667pt;}
.y2a_c01062{bottom:242.266667pt;}
.y29_c01062{bottom:262.146667pt;}
.y28_c01062{bottom:281.986667pt;}
.y27_c01062{bottom:301.826667pt;}
.y26_c01062{bottom:321.666667pt;}
.y25_c01062{bottom:341.506667pt;}
.y24_c01062{bottom:361.346667pt;}
.y23_c01062{bottom:381.186667pt;}
.y22_c01062{bottom:401.186667pt;}
.y21_c01062{bottom:421.026667pt;}
.y20_c01062{bottom:440.866667pt;}
.y1f_c01062{bottom:460.706667pt;}
.y1e_c01062{bottom:480.546667pt;}
.y1d_c01062{bottom:500.386667pt;}
.y1c_c01062{bottom:520.253333pt;}
.y1b_c01062{bottom:540.093333pt;}
.y1a_c01062{bottom:558.973333pt;}
.y19_c01062{bottom:579.453333pt;}
.y18_c01062{bottom:612.413333pt;}
.y17_c01062{bottom:642.813333pt;}
.y15_c01062{bottom:673.373333pt;}
.y16_c01062{bottom:678.653333pt;}
.y14_c01062{bottom:693.053333pt;}
.y13_c01062{bottom:712.893333pt;}
.y12_c01062{bottom:732.893333pt;}
.y11_c01062{bottom:763.493333pt;}
.y10_c01062{bottom:783.173333pt;}
.yf_c01062{bottom:803.013333pt;}
.ye_c01062{bottom:823.013333pt;}
.yd_c01062{bottom:842.853333pt;}
.yc_c01062{bottom:862.693333pt;}
.yb_c01062{bottom:882.533333pt;}
.ya_c01062{bottom:902.373333pt;}
.y9_c01062{bottom:933.093333pt;}
.y8_c01062{bottom:952.773333pt;}
.y7_c01062{bottom:972.613333pt;}
.y6_c01062{bottom:992.453333pt;}
.y5_c01062{bottom:1012.320000pt;}
.y2_c01062{bottom:1031.200000pt;}
.y1_c01062{bottom:1062.080000pt;}
.ha_c01062{height:20.000000pt;}
.h8_c01062{height:36.875520pt;}
.h6_c01062{height:38.441250pt;}
.h3_c01062{height:44.468750pt;}
.h2_c01062{height:44.648750pt;}
.hb_c01062{height:47.958438pt;}
.h4_c01062{height:57.375000pt;}
.h9_c01062{height:66.625000pt;}
.h7_c01062{height:78.097500pt;}
.h5_c01062{height:1122.546667pt;}
.h0_c01062{height:1122.560000pt;}
.h1_c01062{height:1122.666667pt;}
.w3_c01062{width:237.666667pt;}
.w2_c01062{width:793.740000pt;}
.w0_c01062{width:793.760000pt;}
.w1_c01062{width:794.000000pt;}
.x0_c01062{left:0.000000pt;}
.x2_c01062{left:122.912000pt;}
.x7_c01062{left:139.226667pt;}
.x1_c01062{left:151.066667pt;}
.x4_c01062{left:231.366667pt;}
.x5_c01062{left:249.146667pt;}
.x6_c01062{left:314.946667pt;}
.x8_c01062{left:418.626667pt;}
.x3_c01062{left:656.453333pt;}
}





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

.ir_c01063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01063;src:url('chunks/assets/font_3f7026d8b7b025224f45b1db.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01063;src:url('chunks/assets/font_d73765f05efb82220cd5d4e9.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01063;src:url('chunks/assets/font_97f74ca9e71d3dca71b9f6fb.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01063{vertical-align:0.000000px;}
.ls1_c01063{letter-spacing:0.000000px;}
.ls3_c01063{letter-spacing:0.144000px;}
.ls0_c01063{letter-spacing:0.216000px;}
.ls2_c01063{letter-spacing:0.288000px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01063{word-spacing:-20.232000px;}
.ws0_c01063{word-spacing:-20.016000px;}
.ws2_c01063{word-spacing:0.000000px;}
._d_c01063{margin-left:-4.896000px;}
._c_c01063{margin-left:-3.816000px;}
._b_c01063{margin-left:-2.592000px;}
._0_c01063{margin-left:-1.258891px;}
._2_c01063{width:1.008000px;}
._a_c01063{width:2.304000px;}
._4_c01063{width:3.587976px;}
._9_c01063{width:4.620240px;}
._6_c01063{width:5.952024px;}
._5_c01063{width:7.128000px;}
._11_c01063{width:8.784000px;}
._1_c01063{width:9.864000px;}
._3_c01063{width:11.016000px;}
._7_c01063{width:12.288024px;}
._10_c01063{width:13.968000px;}
._f_c01063{width:15.048000px;}
._12_c01063{width:16.272000px;}
._17_c01063{width:22.127976px;}
._16_c01063{width:23.448024px;}
._8_c01063{width:25.488000px;}
._e_c01063{width:26.604000px;}
._19_c01063{width:47.592000px;}
._18_c01063{width:48.600000px;}
._1a_c01063{width:50.832000px;}
._13_c01063{width:78.336000px;}
._15_c01063{width:80.424000px;}
._14_c01063{width:81.936000px;}
.fc0_c01063{color:rgb(0,0,0);}
.fs2_c01063{font-size:59.760000px;}
.fs0_c01063{font-size:66.240000px;}
.fs1_c01063{font-size:72.000000px;}
.y0_c01063{bottom:0.000000px;}
.y34_c01063{bottom:11.205000px;}
.y32_c01063{bottom:19.791000px;}
.y4_c01063{bottom:71.136000px;}
.y3_c01063{bottom:105.516000px;}
.y31_c01063{bottom:122.265000px;}
.y30_c01063{bottom:142.236000px;}
.y2f_c01063{bottom:164.550000px;}
.y2e_c01063{bottom:186.870000px;}
.y2d_c01063{bottom:209.190000px;}
.y2c_c01063{bottom:231.510000px;}
.y2b_c01063{bottom:253.830000px;}
.y2a_c01063{bottom:276.330000px;}
.y29_c01063{bottom:298.695000px;}
.y28_c01063{bottom:321.015000px;}
.y27_c01063{bottom:343.335000px;}
.y26_c01063{bottom:365.655000px;}
.y25_c01063{bottom:387.975000px;}
.y24_c01063{bottom:410.295000px;}
.y23_c01063{bottom:432.615000px;}
.y22_c01063{bottom:454.935000px;}
.y21_c01063{bottom:477.255000px;}
.y20_c01063{bottom:499.755000px;}
.y1f_c01063{bottom:522.075000px;}
.y1e_c01063{bottom:556.455000px;}
.y33_c01063{bottom:558.420000px;}
.y1d_c01063{bottom:590.865000px;}
.y1c_c01063{bottom:613.005000px;}
.y1b_c01063{bottom:635.325000px;}
.y1a_c01063{bottom:657.645000px;}
.y19_c01063{bottom:680.145000px;}
.y18_c01063{bottom:702.465000px;}
.y17_c01063{bottom:724.785000px;}
.y16_c01063{bottom:747.105000px;}
.y15_c01063{bottom:769.425000px;}
.y14_c01063{bottom:791.745000px;}
.y13_c01063{bottom:814.065000px;}
.y12_c01063{bottom:836.385000px;}
.y11_c01063{bottom:858.750000px;}
.y10_c01063{bottom:881.070000px;}
.yf_c01063{bottom:903.390000px;}
.ye_c01063{bottom:925.890000px;}
.yd_c01063{bottom:948.210000px;}
.yc_c01063{bottom:970.530000px;}
.yb_c01063{bottom:1005.090000px;}
.ya_c01063{bottom:1027.230000px;}
.y9_c01063{bottom:1049.550000px;}
.y8_c01063{bottom:1071.870000px;}
.y7_c01063{bottom:1094.190000px;}
.y6_c01063{bottom:1116.510000px;}
.y5_c01063{bottom:1138.860000px;}
.y2_c01063{bottom:1160.100000px;}
.y1_c01063{bottom:1194.840000px;}
.h7_c01063{height:24.885000px;}
.h5_c01063{height:33.480000px;}
.h2_c01063{height:48.062812px;}
.h3_c01063{height:50.027344px;}
.h6_c01063{height:53.428008px;}
.h4_c01063{height:64.546875px;}
.h0_c01063{height:1262.880000px;}
.h1_c01063{height:1263.000000px;}
.w2_c01063{width:291.495000px;}
.w3_c01063{width:376.275000px;}
.w0_c01063{width:892.980000px;}
.w1_c01063{width:893.250000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:138.276000px;}
.x3_c01063{left:474.915000px;}
.x2_c01063{left:525.345000px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls1_c01063{letter-spacing:0.000000pt;}
.ls3_c01063{letter-spacing:0.128000pt;}
.ls0_c01063{letter-spacing:0.192000pt;}
.ls2_c01063{letter-spacing:0.256000pt;}
.ws1_c01063{word-spacing:-17.984000pt;}
.ws0_c01063{word-spacing:-17.792000pt;}
.ws2_c01063{word-spacing:0.000000pt;}
._d_c01063{margin-left:-4.352000pt;}
._c_c01063{margin-left:-3.392000pt;}
._b_c01063{margin-left:-2.304000pt;}
._0_c01063{margin-left:-1.119014pt;}
._2_c01063{width:0.896000pt;}
._a_c01063{width:2.048000pt;}
._4_c01063{width:3.189312pt;}
._9_c01063{width:4.106880pt;}
._6_c01063{width:5.290688pt;}
._5_c01063{width:6.336000pt;}
._11_c01063{width:7.808000pt;}
._1_c01063{width:8.768000pt;}
._3_c01063{width:9.792000pt;}
._7_c01063{width:10.922688pt;}
._10_c01063{width:12.416000pt;}
._f_c01063{width:13.376000pt;}
._12_c01063{width:14.464000pt;}
._17_c01063{width:19.669312pt;}
._16_c01063{width:20.842688pt;}
._8_c01063{width:22.656000pt;}
._e_c01063{width:23.648000pt;}
._19_c01063{width:42.304000pt;}
._18_c01063{width:43.200000pt;}
._1a_c01063{width:45.184000pt;}
._13_c01063{width:69.632000pt;}
._15_c01063{width:71.488000pt;}
._14_c01063{width:72.832000pt;}
.fs2_c01063{font-size:53.120000pt;}
.fs0_c01063{font-size:58.880000pt;}
.fs1_c01063{font-size:64.000000pt;}
.y0_c01063{bottom:0.000000pt;}
.y34_c01063{bottom:9.960000pt;}
.y32_c01063{bottom:17.592000pt;}
.y4_c01063{bottom:63.232000pt;}
.y3_c01063{bottom:93.792000pt;}
.y31_c01063{bottom:108.680000pt;}
.y30_c01063{bottom:126.432000pt;}
.y2f_c01063{bottom:146.266667pt;}
.y2e_c01063{bottom:166.106667pt;}
.y2d_c01063{bottom:185.946667pt;}
.y2c_c01063{bottom:205.786667pt;}
.y2b_c01063{bottom:225.626667pt;}
.y2a_c01063{bottom:245.626667pt;}
.y29_c01063{bottom:265.506667pt;}
.y28_c01063{bottom:285.346667pt;}
.y27_c01063{bottom:305.186667pt;}
.y26_c01063{bottom:325.026667pt;}
.y25_c01063{bottom:344.866667pt;}
.y24_c01063{bottom:364.706667pt;}
.y23_c01063{bottom:384.546667pt;}
.y22_c01063{bottom:404.386667pt;}
.y21_c01063{bottom:424.226667pt;}
.y20_c01063{bottom:444.226667pt;}
.y1f_c01063{bottom:464.066667pt;}
.y1e_c01063{bottom:494.626667pt;}
.y33_c01063{bottom:496.373333pt;}
.y1d_c01063{bottom:525.213333pt;}
.y1c_c01063{bottom:544.893333pt;}
.y1b_c01063{bottom:564.733333pt;}
.y1a_c01063{bottom:584.573333pt;}
.y19_c01063{bottom:604.573333pt;}
.y18_c01063{bottom:624.413333pt;}
.y17_c01063{bottom:644.253333pt;}
.y16_c01063{bottom:664.093333pt;}
.y15_c01063{bottom:683.933333pt;}
.y14_c01063{bottom:703.773333pt;}
.y13_c01063{bottom:723.613333pt;}
.y12_c01063{bottom:743.453333pt;}
.y11_c01063{bottom:763.333333pt;}
.y10_c01063{bottom:783.173333pt;}
.yf_c01063{bottom:803.013333pt;}
.ye_c01063{bottom:823.013333pt;}
.yd_c01063{bottom:842.853333pt;}
.yc_c01063{bottom:862.693333pt;}
.yb_c01063{bottom:893.413333pt;}
.ya_c01063{bottom:913.093333pt;}
.y9_c01063{bottom:932.933333pt;}
.y8_c01063{bottom:952.773333pt;}
.y7_c01063{bottom:972.613333pt;}
.y6_c01063{bottom:992.453333pt;}
.y5_c01063{bottom:1012.320000pt;}
.y2_c01063{bottom:1031.200000pt;}
.y1_c01063{bottom:1062.080000pt;}
.h7_c01063{height:22.120000pt;}
.h5_c01063{height:29.760000pt;}
.h2_c01063{height:42.722500pt;}
.h3_c01063{height:44.468750pt;}
.h6_c01063{height:47.491563pt;}
.h4_c01063{height:57.375000pt;}
.h0_c01063{height:1122.560000pt;}
.h1_c01063{height:1122.666667pt;}
.w2_c01063{width:259.106667pt;}
.w3_c01063{width:334.466667pt;}
.w0_c01063{width:793.760000pt;}
.w1_c01063{width:794.000000pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:122.912000pt;}
.x3_c01063{left:422.146667pt;}
.x2_c01063{left:466.973333pt;}
}





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

.ir_c01064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01064;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01064;src:url('chunks/assets/font_26a7d7888e2490c92402137e.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01064;src:url('chunks/assets/font_6ab0b933374ceac49f582d1e.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01064;src:url('chunks/assets/font_f4c30d9bad9026e11451cfc4.woff2')format("woff");}.ff5_c01064{font-family:ff5_c01064;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01064;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff6_c01064{font-family:ff6_c01064;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;}
.m0_c01064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls2_c01064{letter-spacing:-0.432000px;}
.ls1_c01064{letter-spacing:0.000000px;}
.ls0_c01064{letter-spacing:21.744000px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:-16.613280px;}
.ws1_c01064{word-spacing:0.000000px;}
._11_c01064{margin-left:-5.449159px;}
._10_c01064{margin-left:-4.320000px;}
._4_c01064{margin-left:-2.860635px;}
._0_c01064{margin-left:-1.390841px;}
._3_c01064{width:1.018817px;}
._2_c01064{width:2.376000px;}
._1_c01064{width:3.456000px;}
._13_c01064{width:4.977827px;}
._12_c01064{width:6.073111px;}
._b_c01064{width:7.390889px;}
._a_c01064{width:8.856000px;}
._14_c01064{width:11.520000px;}
._9_c01064{width:13.896000px;}
._5_c01064{width:18.238841px;}
._d_c01064{width:21.046841px;}
._c_c01064{width:22.248000px;}
._f_c01064{width:23.567976px;}
._e_c01064{width:24.672024px;}
._8_c01064{width:28.728000px;}
._6_c01064{width:30.096000px;}
._7_c01064{width:31.739976px;}
.fc0_c01064{color:rgb(0,0,0);}
.fs2_c01064{font-size:59.760000px;}
.fs0_c01064{font-size:66.240000px;}
.fs1_c01064{font-size:72.000000px;}
.fs3_c01064{font-size:84.240000px;}
.y0_c01064{bottom:0.000000px;}
.y4_c01064{bottom:71.136000px;}
.y3_c01064{bottom:105.516000px;}
.y2f_c01064{bottom:133.956000px;}
.y2e_c01064{bottom:156.270000px;}
.y2d_c01064{bottom:178.590000px;}
.y2c_c01064{bottom:200.910000px;}
.y2b_c01064{bottom:223.230000px;}
.y2a_c01064{bottom:245.550000px;}
.y29_c01064{bottom:267.870000px;}
.y28_c01064{bottom:290.415000px;}
.y27_c01064{bottom:312.735000px;}
.y26_c01064{bottom:347.115000px;}
.y25_c01064{bottom:369.435000px;}
.y24_c01064{bottom:391.755000px;}
.y23_c01064{bottom:414.075000px;}
.y22_c01064{bottom:436.395000px;}
.y21_c01064{bottom:458.715000px;}
.y20_c01064{bottom:493.275000px;}
.y1f_c01064{bottom:515.415000px;}
.y1e_c01064{bottom:537.735000px;}
.y1d_c01064{bottom:560.055000px;}
.y1c_c01064{bottom:582.405000px;}
.y1b_c01064{bottom:604.725000px;}
.y1a_c01064{bottom:625.965000px;}
.y19_c01064{bottom:649.005000px;}
.y18_c01064{bottom:685.005000px;}
.y17_c01064{bottom:715.605000px;}
.y16_c01064{bottom:747.285000px;}
.y15_c01064{bottom:769.425000px;}
.y14_c01064{bottom:791.745000px;}
.y13_c01064{bottom:814.065000px;}
.y12_c01064{bottom:836.385000px;}
.y11_c01064{bottom:858.750000px;}
.y10_c01064{bottom:881.070000px;}
.yf_c01064{bottom:903.390000px;}
.ye_c01064{bottom:937.950000px;}
.yd_c01064{bottom:960.090000px;}
.yc_c01064{bottom:982.410000px;}
.yb_c01064{bottom:1004.910000px;}
.ya_c01064{bottom:1027.230000px;}
.y9_c01064{bottom:1049.550000px;}
.y8_c01064{bottom:1071.870000px;}
.y7_c01064{bottom:1094.190000px;}
.y6_c01064{bottom:1116.510000px;}
.y5_c01064{bottom:1138.860000px;}
.y2_c01064{bottom:1160.100000px;}
.y1_c01064{bottom:1194.840000px;}
.h3_c01064{height:50.027344px;}
.h2_c01064{height:50.229844px;}
.h5_c01064{height:53.573906px;}
.h4_c01064{height:64.546875px;}
.h6_c01064{height:87.859687px;}
.h0_c01064{height:1262.880000px;}
.h1_c01064{height:1263.000000px;}
.w0_c01064{width:892.980000px;}
.w1_c01064{width:893.250000px;}
.x0_c01064{left:0.000000px;}
.x2_c01064{left:138.276000px;}
.x1_c01064{left:169.950000px;}
.x3_c01064{left:738.510000px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls2_c01064{letter-spacing:-0.384000pt;}
.ls1_c01064{letter-spacing:0.000000pt;}
.ls0_c01064{letter-spacing:19.328000pt;}
.ws0_c01064{word-spacing:-14.767360pt;}
.ws1_c01064{word-spacing:0.000000pt;}
._11_c01064{margin-left:-4.843697pt;}
._10_c01064{margin-left:-3.840000pt;}
._4_c01064{margin-left:-2.542787pt;}
._0_c01064{margin-left:-1.236303pt;}
._3_c01064{width:0.905615pt;}
._2_c01064{width:2.112000pt;}
._1_c01064{width:3.072000pt;}
._13_c01064{width:4.424735pt;}
._12_c01064{width:5.398321pt;}
._b_c01064{width:6.569679pt;}
._a_c01064{width:7.872000pt;}
._14_c01064{width:10.240000pt;}
._9_c01064{width:12.352000pt;}
._5_c01064{width:16.212303pt;}
._d_c01064{width:18.708303pt;}
._c_c01064{width:19.776000pt;}
._f_c01064{width:20.949312pt;}
._e_c01064{width:21.930688pt;}
._8_c01064{width:25.536000pt;}
._6_c01064{width:26.752000pt;}
._7_c01064{width:28.213312pt;}
.fs2_c01064{font-size:53.120000pt;}
.fs0_c01064{font-size:58.880000pt;}
.fs1_c01064{font-size:64.000000pt;}
.fs3_c01064{font-size:74.880000pt;}
.y0_c01064{bottom:0.000000pt;}
.y4_c01064{bottom:63.232000pt;}
.y3_c01064{bottom:93.792000pt;}
.y2f_c01064{bottom:119.072000pt;}
.y2e_c01064{bottom:138.906667pt;}
.y2d_c01064{bottom:158.746667pt;}
.y2c_c01064{bottom:178.586667pt;}
.y2b_c01064{bottom:198.426667pt;}
.y2a_c01064{bottom:218.266667pt;}
.y29_c01064{bottom:238.106667pt;}
.y28_c01064{bottom:258.146667pt;}
.y27_c01064{bottom:277.986667pt;}
.y26_c01064{bottom:308.546667pt;}
.y25_c01064{bottom:328.386667pt;}
.y24_c01064{bottom:348.226667pt;}
.y23_c01064{bottom:368.066667pt;}
.y22_c01064{bottom:387.906667pt;}
.y21_c01064{bottom:407.746667pt;}
.y20_c01064{bottom:438.466667pt;}
.y1f_c01064{bottom:458.146667pt;}
.y1e_c01064{bottom:477.986667pt;}
.y1d_c01064{bottom:497.826667pt;}
.y1c_c01064{bottom:517.693333pt;}
.y1b_c01064{bottom:537.533333pt;}
.y1a_c01064{bottom:556.413333pt;}
.y19_c01064{bottom:576.893333pt;}
.y18_c01064{bottom:608.893333pt;}
.y17_c01064{bottom:636.093333pt;}
.y16_c01064{bottom:664.253333pt;}
.y15_c01064{bottom:683.933333pt;}
.y14_c01064{bottom:703.773333pt;}
.y13_c01064{bottom:723.613333pt;}
.y12_c01064{bottom:743.453333pt;}
.y11_c01064{bottom:763.333333pt;}
.y10_c01064{bottom:783.173333pt;}
.yf_c01064{bottom:803.013333pt;}
.ye_c01064{bottom:833.733333pt;}
.yd_c01064{bottom:853.413333pt;}
.yc_c01064{bottom:873.253333pt;}
.yb_c01064{bottom:893.253333pt;}
.ya_c01064{bottom:913.093333pt;}
.y9_c01064{bottom:932.933333pt;}
.y8_c01064{bottom:952.773333pt;}
.y7_c01064{bottom:972.613333pt;}
.y6_c01064{bottom:992.453333pt;}
.y5_c01064{bottom:1012.320000pt;}
.y2_c01064{bottom:1031.200000pt;}
.y1_c01064{bottom:1062.080000pt;}
.h3_c01064{height:44.468750pt;}
.h2_c01064{height:44.648750pt;}
.h5_c01064{height:47.621250pt;}
.h4_c01064{height:57.375000pt;}
.h6_c01064{height:78.097500pt;}
.h0_c01064{height:1122.560000pt;}
.h1_c01064{height:1122.666667pt;}
.w0_c01064{width:793.760000pt;}
.w1_c01064{width:794.000000pt;}
.x0_c01064{left:0.000000pt;}
.x2_c01064{left:122.912000pt;}
.x1_c01064{left:151.066667pt;}
.x3_c01064{left:656.453333pt;}
}





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

.ir_c01065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01065;src:url('chunks/assets/font_0063f7caa74aa17e9a797a46.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01065;src:url('chunks/assets/font_3dba4163f1063ae1c855e824.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01065;src:url('chunks/assets/font_3b961f30a739dd7ff5e4e05a.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.ls1_c01065{letter-spacing:-0.720000px;}
.ls0_c01065{letter-spacing:0.000000px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:0.000000px;}
._f_c01065{margin-left:-6.194218px;}
._e_c01065{margin-left:-4.464000px;}
._0_c01065{margin-left:-1.258891px;}
._3_c01065{width:1.405109px;}
._d_c01065{width:3.384000px;}
._a_c01065{width:4.392000px;}
._9_c01065{width:5.688000px;}
._b_c01065{width:6.765782px;}
._8_c01065{width:9.000000px;}
._7_c01065{width:10.440000px;}
._c_c01065{width:11.952000px;}
._2_c01065{width:15.730891px;}
._1_c01065{width:17.064000px;}
._4_c01065{width:18.480024px;}
._6_c01065{width:42.984000px;}
._5_c01065{width:43.992000px;}
.fc0_c01065{color:rgb(0,0,0);}
.fs2_c01065{font-size:59.760000px;}
.fs0_c01065{font-size:66.240000px;}
.fs1_c01065{font-size:72.000000px;}
.y0_c01065{bottom:0.000000px;}
.y23_c01065{bottom:9.000000px;}
.y4_c01065{bottom:71.136000px;}
.y3_c01065{bottom:105.516000px;}
.y21_c01065{bottom:129.276000px;}
.y20_c01065{bottom:151.590000px;}
.y1f_c01065{bottom:173.910000px;}
.y1e_c01065{bottom:196.230000px;}
.y1d_c01065{bottom:230.790000px;}
.y1c_c01065{bottom:252.930000px;}
.y1b_c01065{bottom:275.250000px;}
.y1a_c01065{bottom:297.615000px;}
.y19_c01065{bottom:319.935000px;}
.y18_c01065{bottom:342.255000px;}
.y17_c01065{bottom:376.815000px;}
.y16_c01065{bottom:398.955000px;}
.y15_c01065{bottom:421.275000px;}
.y14_c01065{bottom:443.595000px;}
.y13_c01065{bottom:466.095000px;}
.y12_c01065{bottom:488.595000px;}
.y11_c01065{bottom:522.795000px;}
.y10_c01065{bottom:544.935000px;}
.yf_c01065{bottom:567.285000px;}
.ye_c01065{bottom:589.785000px;}
.yd_c01065{bottom:624.165000px;}
.yc_c01065{bottom:646.305000px;}
.yb_c01065{bottom:668.805000px;}
.ya_c01065{bottom:691.125000px;}
.y9_c01065{bottom:713.445000px;}
.y22_c01065{bottom:740.265000px;}
.y8_c01065{bottom:749.985000px;}
.y7_c01065{bottom:777.345000px;}
.y6_c01065{bottom:1116.690000px;}
.y5_c01065{bottom:1138.860000px;}
.y2_c01065{bottom:1160.100000px;}
.y1_c01065{bottom:1194.840000px;}
.h6_c01065{height:22.680000px;}
.h2_c01065{height:48.062812px;}
.h3_c01065{height:50.027344px;}
.h5_c01065{height:53.428008px;}
.h4_c01065{height:64.546875px;}
.h0_c01065{height:1262.880000px;}
.h1_c01065{height:1263.000000px;}
.w2_c01065{width:303.375000px;}
.w0_c01065{width:892.980000px;}
.w1_c01065{width:893.250000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:138.276000px;}
.x3_c01065{left:229.005000px;}
.x2_c01065{left:676.905000px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls1_c01065{letter-spacing:-0.640000pt;}
.ls0_c01065{letter-spacing:0.000000pt;}
.ws0_c01065{word-spacing:0.000000pt;}
._f_c01065{margin-left:-5.505971pt;}
._e_c01065{margin-left:-3.968000pt;}
._0_c01065{margin-left:-1.119014pt;}
._3_c01065{width:1.248986pt;}
._d_c01065{width:3.008000pt;}
._a_c01065{width:3.904000pt;}
._9_c01065{width:5.056000pt;}
._b_c01065{width:6.014029pt;}
._8_c01065{width:8.000000pt;}
._7_c01065{width:9.280000pt;}
._c_c01065{width:10.624000pt;}
._2_c01065{width:13.983014pt;}
._1_c01065{width:15.168000pt;}
._4_c01065{width:16.426688pt;}
._6_c01065{width:38.208000pt;}
._5_c01065{width:39.104000pt;}
.fs2_c01065{font-size:53.120000pt;}
.fs0_c01065{font-size:58.880000pt;}
.fs1_c01065{font-size:64.000000pt;}
.y0_c01065{bottom:0.000000pt;}
.y23_c01065{bottom:8.000000pt;}
.y4_c01065{bottom:63.232000pt;}
.y3_c01065{bottom:93.792000pt;}
.y21_c01065{bottom:114.912000pt;}
.y20_c01065{bottom:134.746667pt;}
.y1f_c01065{bottom:154.586667pt;}
.y1e_c01065{bottom:174.426667pt;}
.y1d_c01065{bottom:205.146667pt;}
.y1c_c01065{bottom:224.826667pt;}
.y1b_c01065{bottom:244.666667pt;}
.y1a_c01065{bottom:264.546667pt;}
.y19_c01065{bottom:284.386667pt;}
.y18_c01065{bottom:304.226667pt;}
.y17_c01065{bottom:334.946667pt;}
.y16_c01065{bottom:354.626667pt;}
.y15_c01065{bottom:374.466667pt;}
.y14_c01065{bottom:394.306667pt;}
.y13_c01065{bottom:414.306667pt;}
.y12_c01065{bottom:434.306667pt;}
.y11_c01065{bottom:464.706667pt;}
.y10_c01065{bottom:484.386667pt;}
.yf_c01065{bottom:504.253333pt;}
.ye_c01065{bottom:524.253333pt;}
.yd_c01065{bottom:554.813333pt;}
.yc_c01065{bottom:574.493333pt;}
.yb_c01065{bottom:594.493333pt;}
.ya_c01065{bottom:614.333333pt;}
.y9_c01065{bottom:634.173333pt;}
.y22_c01065{bottom:658.013333pt;}
.y8_c01065{bottom:666.653333pt;}
.y7_c01065{bottom:690.973333pt;}
.y6_c01065{bottom:992.613333pt;}
.y5_c01065{bottom:1012.320000pt;}
.y2_c01065{bottom:1031.200000pt;}
.y1_c01065{bottom:1062.080000pt;}
.h6_c01065{height:20.160000pt;}
.h2_c01065{height:42.722500pt;}
.h3_c01065{height:44.468750pt;}
.h5_c01065{height:47.491563pt;}
.h4_c01065{height:57.375000pt;}
.h0_c01065{height:1122.560000pt;}
.h1_c01065{height:1122.666667pt;}
.w2_c01065{width:269.666667pt;}
.w0_c01065{width:793.760000pt;}
.w1_c01065{width:794.000000pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:122.912000pt;}
.x3_c01065{left:203.560000pt;}
.x2_c01065{left:601.693333pt;}
}





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

.ir_c01066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01066;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01066;src:url('chunks/assets/font_fef15e8936a2057fcbb7d4ae.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01066;src:url('chunks/assets/font_6e7cf258dcadc228a1d71307.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01066;src:url('chunks/assets/font_06d4a2b6588fcb723b192793.woff2')format("woff");}.ff5_c01066{font-family:ff5_c01066;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01066;src:url('chunks/assets/font_b0f921d9e7d335cfb2ae8d52.woff2')format("woff");}.ff6_c01066{font-family:ff6_c01066;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01066;src:url('chunks/assets/font_42f577fb3704c4ad476d2c22.woff2')format("woff");}.ff7_c01066{font-family:ff7_c01066;line-height:1.211914;font-style:normal;font-weight: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_c01066;src:url('chunks/assets/font_5476d180880cf5a71ff96c90.woff2')format("woff");}.ff8_c01066{font-family:ff8_c01066;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls4_c01066{letter-spacing:-0.576000px;}
.ls7_c01066{letter-spacing:-0.337200px;}
.ls6_c01066{letter-spacing:-0.247800px;}
.ls2_c01066{letter-spacing:-0.181200px;}
.ls5_c01066{letter-spacing:-0.144000px;}
.ls1_c01066{letter-spacing:0.000000px;}
.ls3_c01066{letter-spacing:0.144000px;}
.ls0_c01066{letter-spacing:0.564480px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01066{word-spacing:-20.698320px;}
.ws0_c01066{word-spacing:-19.872000px;}
.ws2_c01066{word-spacing:0.000000px;}
._c_c01066{margin-left:-4.608000px;}
._b_c01066{margin-left:-3.384000px;}
._0_c01066{margin-left:-1.390841px;}
._1_c01066{width:1.738817px;}
._a_c01066{width:2.902841px;}
._6_c01066{width:4.248000px;}
._3_c01066{width:5.472000px;}
._5_c01066{width:7.582841px;}
._4_c01066{width:8.712000px;}
._f_c01066{width:9.964659px;}
._15_c01066{width:11.712024px;}
._9_c01066{width:13.104000px;}
._8_c01066{width:14.616000px;}
._d_c01066{width:15.957683px;}
._2_c01066{width:21.097207px;}
._7_c01066{width:23.976000px;}
._14_c01066{width:25.128000px;}
._13_c01066{width:26.496000px;}
._11_c01066{width:30.096000px;}
._10_c01066{width:31.176000px;}
._e_c01066{width:52.344000px;}
._12_c01066{width:64.872000px;}
.fc0_c01066{color:rgb(0,0,0);}
.fs3_c01066{font-size:38.880000px;}
.fs2_c01066{font-size:48.240000px;}
.fs4_c01066{font-size:59.760000px;}
.fs0_c01066{font-size:66.240000px;}
.fs1_c01066{font-size:72.000000px;}
.y0_c01066{bottom:0.000000px;}
.y37_c01066{bottom:62.130000px;}
.y4_c01066{bottom:71.136000px;}
.y36_c01066{bottom:81.030000px;}
.y3_c01066{bottom:105.516000px;}
.y34_c01066{bottom:124.776000px;}
.y33_c01066{bottom:142.956000px;}
.y32_c01066{bottom:148.176000px;}
.y31_c01066{bottom:161.310000px;}
.y30_c01066{bottom:179.490000px;}
.y2f_c01066{bottom:184.710000px;}
.y2e_c01066{bottom:212.790000px;}
.y2c_c01066{bottom:266.070000px;}
.y35_c01066{bottom:270.585000px;}
.y2d_c01066{bottom:272.010000px;}
.y2b_c01066{bottom:288.255000px;}
.y2a_c01066{bottom:310.755000px;}
.y29_c01066{bottom:332.895000px;}
.y28_c01066{bottom:355.395000px;}
.y27_c01066{bottom:377.715000px;}
.y26_c01066{bottom:400.035000px;}
.y25_c01066{bottom:422.355000px;}
.y24_c01066{bottom:444.675000px;}
.y23_c01066{bottom:466.995000px;}
.y22_c01066{bottom:489.315000px;}
.y21_c01066{bottom:511.635000px;}
.y20_c01066{bottom:533.955000px;}
.y1f_c01066{bottom:556.275000px;}
.y1e_c01066{bottom:578.625000px;}
.y1d_c01066{bottom:601.125000px;}
.y1c_c01066{bottom:623.445000px;}
.y1b_c01066{bottom:645.765000px;}
.y1a_c01066{bottom:680.325000px;}
.y19_c01066{bottom:702.465000px;}
.y18_c01066{bottom:724.785000px;}
.y17_c01066{bottom:747.105000px;}
.y16_c01066{bottom:769.425000px;}
.y15_c01066{bottom:791.745000px;}
.y14_c01066{bottom:814.065000px;}
.y13_c01066{bottom:836.385000px;}
.y12_c01066{bottom:858.750000px;}
.y10_c01066{bottom:881.070000px;}
.y11_c01066{bottom:887.010000px;}
.yf_c01066{bottom:903.390000px;}
.ye_c01066{bottom:937.950000px;}
.yd_c01066{bottom:960.090000px;}
.yc_c01066{bottom:982.410000px;}
.yb_c01066{bottom:1004.910000px;}
.ya_c01066{bottom:1027.230000px;}
.y9_c01066{bottom:1049.550000px;}
.y8_c01066{bottom:1071.870000px;}
.y7_c01066{bottom:1094.190000px;}
.y6_c01066{bottom:1116.510000px;}
.y5_c01066{bottom:1138.860000px;}
.y2_c01066{bottom:1160.100000px;}
.y1_c01066{bottom:1194.840000px;}
.h7_c01066{height:41.484960px;}
.h6_c01066{height:43.246406px;}
.h3_c01066{height:50.027344px;}
.h2_c01066{height:50.229844px;}
.ha_c01066{height:53.428008px;}
.h8_c01066{height:63.763920px;}
.h4_c01066{height:64.546875px;}
.h9_c01066{height:94.702500px;}
.h5_c01066{height:1262.865000px;}
.h0_c01066{height:1262.880000px;}
.h1_c01066{height:1263.000000px;}
.w3_c01066{width:258.675000px;}
.w2_c01066{width:892.957500px;}
.w0_c01066{width:892.980000px;}
.w1_c01066{width:893.250000px;}
.x0_c01066{left:0.000000px;}
.x2_c01066{left:138.276000px;}
.xb_c01066{left:156.630000px;}
.xc_c01066{left:158.085000px;}
.x1_c01066{left:169.950000px;}
.xa_c01066{left:354.315000px;}
.x6_c01066{left:426.315000px;}
.x7_c01066{left:428.115000px;}
.x4_c01066{left:505.882500px;}
.x5_c01066{left:525.885000px;}
.x3_c01066{left:738.510000px;}
.x8_c01066{left:745.507500px;}
.x9_c01066{left:765.510000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls4_c01066{letter-spacing:-0.512000pt;}
.ls7_c01066{letter-spacing:-0.299733pt;}
.ls6_c01066{letter-spacing:-0.220267pt;}
.ls2_c01066{letter-spacing:-0.161067pt;}
.ls5_c01066{letter-spacing:-0.128000pt;}
.ls1_c01066{letter-spacing:0.000000pt;}
.ls3_c01066{letter-spacing:0.128000pt;}
.ls0_c01066{letter-spacing:0.501760pt;}
.ws1_c01066{word-spacing:-18.398507pt;}
.ws0_c01066{word-spacing:-17.664000pt;}
.ws2_c01066{word-spacing:0.000000pt;}
._c_c01066{margin-left:-4.096000pt;}
._b_c01066{margin-left:-3.008000pt;}
._0_c01066{margin-left:-1.236303pt;}
._1_c01066{width:1.545615pt;}
._a_c01066{width:2.580303pt;}
._6_c01066{width:3.776000pt;}
._3_c01066{width:4.864000pt;}
._5_c01066{width:6.740303pt;}
._4_c01066{width:7.744000pt;}
._f_c01066{width:8.857475pt;}
._15_c01066{width:10.410688pt;}
._9_c01066{width:11.648000pt;}
._8_c01066{width:12.992000pt;}
._d_c01066{width:14.184607pt;}
._2_c01066{width:18.753073pt;}
._7_c01066{width:21.312000pt;}
._14_c01066{width:22.336000pt;}
._13_c01066{width:23.552000pt;}
._11_c01066{width:26.752000pt;}
._10_c01066{width:27.712000pt;}
._e_c01066{width:46.528000pt;}
._12_c01066{width:57.664000pt;}
.fs3_c01066{font-size:34.560000pt;}
.fs2_c01066{font-size:42.880000pt;}
.fs4_c01066{font-size:53.120000pt;}
.fs0_c01066{font-size:58.880000pt;}
.fs1_c01066{font-size:64.000000pt;}
.y0_c01066{bottom:0.000000pt;}
.y37_c01066{bottom:55.226667pt;}
.y4_c01066{bottom:63.232000pt;}
.y36_c01066{bottom:72.026667pt;}
.y3_c01066{bottom:93.792000pt;}
.y34_c01066{bottom:110.912000pt;}
.y33_c01066{bottom:127.072000pt;}
.y32_c01066{bottom:131.712000pt;}
.y31_c01066{bottom:143.386667pt;}
.y30_c01066{bottom:159.546667pt;}
.y2f_c01066{bottom:164.186667pt;}
.y2e_c01066{bottom:189.146667pt;}
.y2c_c01066{bottom:236.506667pt;}
.y35_c01066{bottom:240.520000pt;}
.y2d_c01066{bottom:241.786667pt;}
.y2b_c01066{bottom:256.226667pt;}
.y2a_c01066{bottom:276.226667pt;}
.y29_c01066{bottom:295.906667pt;}
.y28_c01066{bottom:315.906667pt;}
.y27_c01066{bottom:335.746667pt;}
.y26_c01066{bottom:355.586667pt;}
.y25_c01066{bottom:375.426667pt;}
.y24_c01066{bottom:395.266667pt;}
.y23_c01066{bottom:415.106667pt;}
.y22_c01066{bottom:434.946667pt;}
.y21_c01066{bottom:454.786667pt;}
.y20_c01066{bottom:474.626667pt;}
.y1f_c01066{bottom:494.466667pt;}
.y1e_c01066{bottom:514.333333pt;}
.y1d_c01066{bottom:534.333333pt;}
.y1c_c01066{bottom:554.173333pt;}
.y1b_c01066{bottom:574.013333pt;}
.y1a_c01066{bottom:604.733333pt;}
.y19_c01066{bottom:624.413333pt;}
.y18_c01066{bottom:644.253333pt;}
.y17_c01066{bottom:664.093333pt;}
.y16_c01066{bottom:683.933333pt;}
.y15_c01066{bottom:703.773333pt;}
.y14_c01066{bottom:723.613333pt;}
.y13_c01066{bottom:743.453333pt;}
.y12_c01066{bottom:763.333333pt;}
.y10_c01066{bottom:783.173333pt;}
.y11_c01066{bottom:788.453333pt;}
.yf_c01066{bottom:803.013333pt;}
.ye_c01066{bottom:833.733333pt;}
.yd_c01066{bottom:853.413333pt;}
.yc_c01066{bottom:873.253333pt;}
.yb_c01066{bottom:893.253333pt;}
.ya_c01066{bottom:913.093333pt;}
.y9_c01066{bottom:932.933333pt;}
.y8_c01066{bottom:952.773333pt;}
.y7_c01066{bottom:972.613333pt;}
.y6_c01066{bottom:992.453333pt;}
.y5_c01066{bottom:1012.320000pt;}
.y2_c01066{bottom:1031.200000pt;}
.y1_c01066{bottom:1062.080000pt;}
.h7_c01066{height:36.875520pt;}
.h6_c01066{height:38.441250pt;}
.h3_c01066{height:44.468750pt;}
.h2_c01066{height:44.648750pt;}
.ha_c01066{height:47.491563pt;}
.h8_c01066{height:56.679040pt;}
.h4_c01066{height:57.375000pt;}
.h9_c01066{height:84.180000pt;}
.h5_c01066{height:1122.546667pt;}
.h0_c01066{height:1122.560000pt;}
.h1_c01066{height:1122.666667pt;}
.w3_c01066{width:229.933333pt;}
.w2_c01066{width:793.740000pt;}
.w0_c01066{width:793.760000pt;}
.w1_c01066{width:794.000000pt;}
.x0_c01066{left:0.000000pt;}
.x2_c01066{left:122.912000pt;}
.xb_c01066{left:139.226667pt;}
.xc_c01066{left:140.520000pt;}
.x1_c01066{left:151.066667pt;}
.xa_c01066{left:314.946667pt;}
.x6_c01066{left:378.946667pt;}
.x7_c01066{left:380.546667pt;}
.x4_c01066{left:449.673333pt;}
.x5_c01066{left:467.453333pt;}
.x3_c01066{left:656.453333pt;}
.x8_c01066{left:662.673333pt;}
.x9_c01066{left:680.453333pt;}
}





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

.ir_c01067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01067;src:url('chunks/assets/font_ab2ae109f4aa89c89723fdef.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01067;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01067;src:url('chunks/assets/font_cc36b11f41651d7cf26cceec.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01067;src:url('chunks/assets/font_a09f605e7ebfed0511a71f3e.woff2')format("woff");}.ff5_c01067{font-family:ff5_c01067;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01067;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff6_c01067{font-family:ff6_c01067;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.ls0_c01067{letter-spacing:0.000000px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:0.000000px;}
._d_c01067{margin-left:-6.192000px;}
._c_c01067{margin-left:-4.464000px;}
._a_c01067{margin-left:-3.428698px;}
._9_c01067{margin-left:-2.304000px;}
._0_c01067{margin-left:-1.258891px;}
._4_c01067{width:1.089806px;}
._5_c01067{width:2.250677px;}
._8_c01067{width:3.528000px;}
._2_c01067{width:8.352000px;}
._1_c01067{width:10.872000px;}
._7_c01067{width:13.645109px;}
._6_c01067{width:14.688000px;}
._b_c01067{width:16.717133px;}
._3_c01067{width:18.466891px;}
._f_c01067{width:21.193085px;}
._e_c01067{width:22.248000px;}
.fc1_c01067{color:transparent;}
.fc0_c01067{color:rgb(0,0,0);}
.fs3_c01067{font-size:59.760000px;}
.fs0_c01067{font-size:66.240000px;}
.fs1_c01067{font-size:72.000000px;}
.fs2_c01067{font-size:84.240000px;}
.y2f_c01067{bottom:-1.785000px;}
.y0_c01067{bottom:0.000000px;}
.y27_c01067{bottom:4.140000px;}
.y1b_c01067{bottom:4.155000px;}
.y2d_c01067{bottom:7.755000px;}
.y2b_c01067{bottom:12.960000px;}
.y29_c01067{bottom:17.805000px;}
.y19_c01067{bottom:24.840000px;}
.y26_c01067{bottom:24.885000px;}
.y25_c01067{bottom:45.585000px;}
.y4_c01067{bottom:71.136000px;}
.y3_c01067{bottom:105.516000px;}
.y17_c01067{bottom:156.990000px;}
.y16_c01067{bottom:179.310000px;}
.y15_c01067{bottom:201.630000px;}
.y14_c01067{bottom:223.950000px;}
.y13_c01067{bottom:246.450000px;}
.y12_c01067{bottom:268.770000px;}
.y11_c01067{bottom:291.135000px;}
.y10_c01067{bottom:313.455000px;}
.yf_c01067{bottom:335.775000px;}
.ye_c01067{bottom:358.095000px;}
.yd_c01067{bottom:380.415000px;}
.yc_c01067{bottom:402.735000px;}
.yb_c01067{bottom:425.055000px;}
.ya_c01067{bottom:459.615000px;}
.y2c_c01067{bottom:461.040000px;}
.y9_c01067{bottom:489.855000px;}
.y8_c01067{bottom:775.905000px;}
.y28_c01067{bottom:799.500000px;}
.y2a_c01067{bottom:811.005000px;}
.y24_c01067{bottom:833.865000px;}
.y7_c01067{bottom:847.410000px;}
.y23_c01067{bottom:895.995000px;}
.y22_c01067{bottom:896.010000px;}
.y21_c01067{bottom:937.395000px;}
.y20_c01067{bottom:937.410000px;}
.y2e_c01067{bottom:969.795000px;}
.y1f_c01067{bottom:978.795000px;}
.y1e_c01067{bottom:978.810000px;}
.y1d_c01067{bottom:1020.195000px;}
.y1c_c01067{bottom:1020.210000px;}
.y1a_c01067{bottom:1061.595000px;}
.y18_c01067{bottom:1061.610000px;}
.y6_c01067{bottom:1113.270000px;}
.y5_c01067{bottom:1136.340000px;}
.y2_c01067{bottom:1160.100000px;}
.y1_c01067{bottom:1194.840000px;}
.he_c01067{height:11.880000px;}
.hd_c01067{height:21.420000px;}
.hb_c01067{height:26.640000px;}
.ha_c01067{height:34.365000px;}
.h6_c01067{height:41.385000px;}
.h7_c01067{height:41.391000px;}
.h8_c01067{height:41.400000px;}
.h2_c01067{height:48.062812px;}
.h3_c01067{height:50.027344px;}
.hc_c01067{height:53.428008px;}
.hf_c01067{height:53.953242px;}
.h9_c01067{height:62.122500px;}
.h5_c01067{height:64.546875px;}
.h4_c01067{height:87.859687px;}
.h0_c01067{height:1262.880000px;}
.h1_c01067{height:1263.000000px;}
.w2_c01067{width:17.820000px;}
.w7_c01067{width:21.622500px;}
.w6_c01067{width:257.790000px;}
.w3_c01067{width:268.980000px;}
.w4_c01067{width:268.995000px;}
.w5_c01067{width:308.010000px;}
.w0_c01067{width:892.980000px;}
.w1_c01067{width:893.250000px;}
.x0_c01067{left:0.000000px;}
.x5_c01067{left:8.100000px;}
.x8_c01067{left:10.785000px;}
.x1_c01067{left:138.276000px;}
.x7_c01067{left:275.625000px;}
.x3_c01067{left:408.315000px;}
.x2_c01067{left:441.975000px;}
.x4_c01067{left:466.095000px;}
.x6_c01067{left:483.915000px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls0_c01067{letter-spacing:0.000000pt;}
.ws0_c01067{word-spacing:0.000000pt;}
._d_c01067{margin-left:-5.504000pt;}
._c_c01067{margin-left:-3.968000pt;}
._a_c01067{margin-left:-3.047731pt;}
._9_c01067{margin-left:-2.048000pt;}
._0_c01067{margin-left:-1.119014pt;}
._4_c01067{width:0.968717pt;}
._5_c01067{width:2.000602pt;}
._8_c01067{width:3.136000pt;}
._2_c01067{width:7.424000pt;}
._1_c01067{width:9.664000pt;}
._7_c01067{width:12.128986pt;}
._6_c01067{width:13.056000pt;}
._b_c01067{width:14.859674pt;}
._3_c01067{width:16.415014pt;}
._f_c01067{width:18.838298pt;}
._e_c01067{width:19.776000pt;}
.fs3_c01067{font-size:53.120000pt;}
.fs0_c01067{font-size:58.880000pt;}
.fs1_c01067{font-size:64.000000pt;}
.fs2_c01067{font-size:74.880000pt;}
.y2f_c01067{bottom:-1.586667pt;}
.y0_c01067{bottom:0.000000pt;}
.y27_c01067{bottom:3.680000pt;}
.y1b_c01067{bottom:3.693333pt;}
.y2d_c01067{bottom:6.893333pt;}
.y2b_c01067{bottom:11.520000pt;}
.y29_c01067{bottom:15.826667pt;}
.y19_c01067{bottom:22.080000pt;}
.y26_c01067{bottom:22.120000pt;}
.y25_c01067{bottom:40.520000pt;}
.y4_c01067{bottom:63.232000pt;}
.y3_c01067{bottom:93.792000pt;}
.y17_c01067{bottom:139.546667pt;}
.y16_c01067{bottom:159.386667pt;}
.y15_c01067{bottom:179.226667pt;}
.y14_c01067{bottom:199.066667pt;}
.y13_c01067{bottom:219.066667pt;}
.y12_c01067{bottom:238.906667pt;}
.y11_c01067{bottom:258.786667pt;}
.y10_c01067{bottom:278.626667pt;}
.yf_c01067{bottom:298.466667pt;}
.ye_c01067{bottom:318.306667pt;}
.yd_c01067{bottom:338.146667pt;}
.yc_c01067{bottom:357.986667pt;}
.yb_c01067{bottom:377.826667pt;}
.ya_c01067{bottom:408.546667pt;}
.y2c_c01067{bottom:409.813333pt;}
.y9_c01067{bottom:435.426667pt;}
.y8_c01067{bottom:689.693333pt;}
.y28_c01067{bottom:710.666667pt;}
.y2a_c01067{bottom:720.893333pt;}
.y24_c01067{bottom:741.213333pt;}
.y7_c01067{bottom:753.253333pt;}
.y23_c01067{bottom:796.440000pt;}
.y22_c01067{bottom:796.453333pt;}
.y21_c01067{bottom:833.240000pt;}
.y20_c01067{bottom:833.253333pt;}
.y2e_c01067{bottom:862.040000pt;}
.y1f_c01067{bottom:870.040000pt;}
.y1e_c01067{bottom:870.053333pt;}
.y1d_c01067{bottom:906.840000pt;}
.y1c_c01067{bottom:906.853333pt;}
.y1a_c01067{bottom:943.640000pt;}
.y18_c01067{bottom:943.653333pt;}
.y6_c01067{bottom:989.573333pt;}
.y5_c01067{bottom:1010.080000pt;}
.y2_c01067{bottom:1031.200000pt;}
.y1_c01067{bottom:1062.080000pt;}
.he_c01067{height:10.560000pt;}
.hd_c01067{height:19.040000pt;}
.hb_c01067{height:23.680000pt;}
.ha_c01067{height:30.546667pt;}
.h6_c01067{height:36.786667pt;}
.h7_c01067{height:36.792000pt;}
.h8_c01067{height:36.800000pt;}
.h2_c01067{height:42.722500pt;}
.h3_c01067{height:44.468750pt;}
.hc_c01067{height:47.491563pt;}
.hf_c01067{height:47.958438pt;}
.h9_c01067{height:55.220000pt;}
.h5_c01067{height:57.375000pt;}
.h4_c01067{height:78.097500pt;}
.h0_c01067{height:1122.560000pt;}
.h1_c01067{height:1122.666667pt;}
.w2_c01067{width:15.840000pt;}
.w7_c01067{width:19.220000pt;}
.w6_c01067{width:229.146667pt;}
.w3_c01067{width:239.093333pt;}
.w4_c01067{width:239.106667pt;}
.w5_c01067{width:273.786667pt;}
.w0_c01067{width:793.760000pt;}
.w1_c01067{width:794.000000pt;}
.x0_c01067{left:0.000000pt;}
.x5_c01067{left:7.200000pt;}
.x8_c01067{left:9.586667pt;}
.x1_c01067{left:122.912000pt;}
.x7_c01067{left:245.000000pt;}
.x3_c01067{left:362.946667pt;}
.x2_c01067{left:392.866667pt;}
.x4_c01067{left:414.306667pt;}
.x6_c01067{left:430.146667pt;}
}





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

.ir_c01068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01068;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01068;src:url('chunks/assets/font_49d42961858cfae986ec3558.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01068;src:url('chunks/assets/font_f0c08fd1d90a0114c6fcdd5d.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01068;src:url('chunks/assets/font_62fc02f82de75fc28e00e9f9.woff2')format("woff");}.ff5_c01068{font-family:ff5_c01068;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01068;src:url('chunks/assets/font_0ed5f69bee21be28bad4094a.woff2')format("woff");}.ff6_c01068{font-family:ff6_c01068;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.ls2_c01068{letter-spacing:-0.864000px;}
.ls3_c01068{letter-spacing:-0.720000px;}
.ls1_c01068{letter-spacing:0.000000px;}
.ls0_c01068{letter-spacing:0.144000px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:-20.016000px;}
.ws1_c01068{word-spacing:0.000000px;}
._e_c01068{margin-left:-4.297159px;}
._f_c01068{margin-left:-2.435976px;}
._0_c01068{margin-left:-1.390841px;}
._2_c01068{width:1.008000px;}
._6_c01068{width:2.244024px;}
._8_c01068{width:3.801683px;}
._7_c01068{width:5.256000px;}
._9_c01068{width:6.336000px;}
._3_c01068{width:7.632000px;}
._b_c01068{width:8.712000px;}
._d_c01068{width:9.720000px;}
._a_c01068{width:14.832000px;}
._c_c01068{width:17.352000px;}
._1_c01068{width:21.144024px;}
._5_c01068{width:32.904000px;}
._4_c01068{width:34.032024px;}
.fc0_c01068{color:rgb(0,0,0);}
.fs2_c01068{font-size:59.760000px;}
.fs0_c01068{font-size:66.240000px;}
.fs1_c01068{font-size:72.000000px;}
.y0_c01068{bottom:0.000000px;}
.y21_c01068{bottom:7.740000px;}
.y4_c01068{bottom:71.136000px;}
.y3_c01068{bottom:105.516000px;}
.y1f_c01068{bottom:200.730000px;}
.y1e_c01068{bottom:232.410000px;}
.y1d_c01068{bottom:266.790000px;}
.y1c_c01068{bottom:301.035000px;}
.y1b_c01068{bottom:323.355000px;}
.y1a_c01068{bottom:345.675000px;}
.y19_c01068{bottom:367.995000px;}
.y18_c01068{bottom:390.495000px;}
.y17_c01068{bottom:412.815000px;}
.y16_c01068{bottom:435.135000px;}
.y15_c01068{bottom:457.275000px;}
.y14_c01068{bottom:479.775000px;}
.y13_c01068{bottom:502.095000px;}
.y12_c01068{bottom:524.235000px;}
.y11_c01068{bottom:546.555000px;}
.y10_c01068{bottom:569.085000px;}
.yf_c01068{bottom:591.585000px;}
.ye_c01068{bottom:613.725000px;}
.yd_c01068{bottom:636.225000px;}
.yc_c01068{bottom:658.365000px;}
.yb_c01068{bottom:680.685000px;}
.ya_c01068{bottom:715.245000px;}
.y9_c01068{bottom:748.725000px;}
.y8_c01068{bottom:779.325000px;}
.y22_c01068{bottom:781.665000px;}
.y20_c01068{bottom:782.745000px;}
.y7_c01068{bottom:806.505000px;}
.y6_c01068{bottom:1116.690000px;}
.y5_c01068{bottom:1138.860000px;}
.y2_c01068{bottom:1160.100000px;}
.y1_c01068{bottom:1194.840000px;}
.h9_c01068{height:21.420000px;}
.h3_c01068{height:50.027344px;}
.h2_c01068{height:50.229844px;}
.h6_c01068{height:53.428008px;}
.h5_c01068{height:53.573906px;}
.h7_c01068{height:53.953242px;}
.h4_c01068{height:64.546875px;}
.h8_c01068{height:65.003906px;}
.h0_c01068{height:1262.880000px;}
.h1_c01068{height:1263.000000px;}
.w2_c01068{width:217.290000px;}
.w3_c01068{width:257.805000px;}
.w0_c01068{width:892.980000px;}
.w1_c01068{width:893.250000px;}
.x0_c01068{left:0.000000px;}
.x2_c01068{left:138.276000px;}
.x7_c01068{left:147.825000px;}
.x1_c01068{left:169.950000px;}
.x8_c01068{left:378.975000px;}
.x6_c01068{left:451.875000px;}
.x5_c01068{left:649.005000px;}
.x3_c01068{left:738.510000px;}
.x4_c01068{left:764.970000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls2_c01068{letter-spacing:-0.768000pt;}
.ls3_c01068{letter-spacing:-0.640000pt;}
.ls1_c01068{letter-spacing:0.000000pt;}
.ls0_c01068{letter-spacing:0.128000pt;}
.ws0_c01068{word-spacing:-17.792000pt;}
.ws1_c01068{word-spacing:0.000000pt;}
._e_c01068{margin-left:-3.819697pt;}
._f_c01068{margin-left:-2.165312pt;}
._0_c01068{margin-left:-1.236303pt;}
._2_c01068{width:0.896000pt;}
._6_c01068{width:1.994688pt;}
._8_c01068{width:3.379273pt;}
._7_c01068{width:4.672000pt;}
._9_c01068{width:5.632000pt;}
._3_c01068{width:6.784000pt;}
._b_c01068{width:7.744000pt;}
._d_c01068{width:8.640000pt;}
._a_c01068{width:13.184000pt;}
._c_c01068{width:15.424000pt;}
._1_c01068{width:18.794688pt;}
._5_c01068{width:29.248000pt;}
._4_c01068{width:30.250688pt;}
.fs2_c01068{font-size:53.120000pt;}
.fs0_c01068{font-size:58.880000pt;}
.fs1_c01068{font-size:64.000000pt;}
.y0_c01068{bottom:0.000000pt;}
.y21_c01068{bottom:6.880000pt;}
.y4_c01068{bottom:63.232000pt;}
.y3_c01068{bottom:93.792000pt;}
.y1f_c01068{bottom:178.426667pt;}
.y1e_c01068{bottom:206.586667pt;}
.y1d_c01068{bottom:237.146667pt;}
.y1c_c01068{bottom:267.586667pt;}
.y1b_c01068{bottom:287.426667pt;}
.y1a_c01068{bottom:307.266667pt;}
.y19_c01068{bottom:327.106667pt;}
.y18_c01068{bottom:347.106667pt;}
.y17_c01068{bottom:366.946667pt;}
.y16_c01068{bottom:386.786667pt;}
.y15_c01068{bottom:406.466667pt;}
.y14_c01068{bottom:426.466667pt;}
.y13_c01068{bottom:446.306667pt;}
.y12_c01068{bottom:465.986667pt;}
.y11_c01068{bottom:485.826667pt;}
.y10_c01068{bottom:505.853333pt;}
.yf_c01068{bottom:525.853333pt;}
.ye_c01068{bottom:545.533333pt;}
.yd_c01068{bottom:565.533333pt;}
.yc_c01068{bottom:585.213333pt;}
.yb_c01068{bottom:605.053333pt;}
.ya_c01068{bottom:635.773333pt;}
.y9_c01068{bottom:665.533333pt;}
.y8_c01068{bottom:692.733333pt;}
.y22_c01068{bottom:694.813333pt;}
.y20_c01068{bottom:695.773333pt;}
.y7_c01068{bottom:716.893333pt;}
.y6_c01068{bottom:992.613333pt;}
.y5_c01068{bottom:1012.320000pt;}
.y2_c01068{bottom:1031.200000pt;}
.y1_c01068{bottom:1062.080000pt;}
.h9_c01068{height:19.040000pt;}
.h3_c01068{height:44.468750pt;}
.h2_c01068{height:44.648750pt;}
.h6_c01068{height:47.491563pt;}
.h5_c01068{height:47.621250pt;}
.h7_c01068{height:47.958438pt;}
.h4_c01068{height:57.375000pt;}
.h8_c01068{height:57.781250pt;}
.h0_c01068{height:1122.560000pt;}
.h1_c01068{height:1122.666667pt;}
.w2_c01068{width:193.146667pt;}
.w3_c01068{width:229.160000pt;}
.w0_c01068{width:793.760000pt;}
.w1_c01068{width:794.000000pt;}
.x0_c01068{left:0.000000pt;}
.x2_c01068{left:122.912000pt;}
.x7_c01068{left:131.400000pt;}
.x1_c01068{left:151.066667pt;}
.x8_c01068{left:336.866667pt;}
.x6_c01068{left:401.666667pt;}
.x5_c01068{left:576.893333pt;}
.x3_c01068{left:656.453333pt;}
.x4_c01068{left:679.973333pt;}
}





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

.ir_c01069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01069;src:url('chunks/assets/font_49d42961858cfae986ec3558.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01069;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01069;src:url('chunks/assets/font_845af9ce499611cbf147ad63.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01069;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01069{font-family:ff5_c01069;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01069{vertical-align:0.000000px;}
.ls0_c01069{letter-spacing:0.000000px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01069{word-spacing:0.000000px;}
._0_c01069{margin-left:-1.258891px;}
._1_c01069{width:1.015800px;}
._2_c01069{width:2.450399px;}
.fc0_c01069{color:rgb(0,0,0);}
.fs2_c01069{font-size:59.760000px;}
.fs0_c01069{font-size:66.240000px;}
.fs1_c01069{font-size:72.000000px;}
.y0_c01069{bottom:0.000000px;}
.yf_c01069{bottom:7.725000px;}
.yd_c01069{bottom:7.740000px;}
.y4_c01069{bottom:71.136000px;}
.y3_c01069{bottom:105.516000px;}
.yb_c01069{bottom:138.456000px;}
.ya_c01069{bottom:172.650000px;}
.y9_c01069{bottom:207.030000px;}
.y8_c01069{bottom:240.510000px;}
.ye_c01069{bottom:243.585000px;}
.y7_c01069{bottom:267.870000px;}
.y6_c01069{bottom:696.345000px;}
.yc_c01069{bottom:698.685000px;}
.y5_c01069{bottom:723.525000px;}
.y2_c01069{bottom:1160.100000px;}
.y1_c01069{bottom:1194.840000px;}
.h7_c01069{height:21.420000px;}
.h2_c01069{height:48.062812px;}
.h3_c01069{height:50.027344px;}
.h5_c01069{height:53.428008px;}
.h4_c01069{height:53.573906px;}
.h6_c01069{height:65.003906px;}
.h0_c01069{height:1262.880000px;}
.h1_c01069{height:1263.000000px;}
.w3_c01069{width:257.790000px;}
.w2_c01069{width:257.955000px;}
.w0_c01069{width:892.980000px;}
.w1_c01069{width:893.250000px;}
.x0_c01069{left:0.000000px;}
.x1_c01069{left:138.276000px;}
.x3_c01069{left:203.805000px;}
.x2_c01069{left:699.990000px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls0_c01069{letter-spacing:0.000000pt;}
.ws0_c01069{word-spacing:0.000000pt;}
._0_c01069{margin-left:-1.119014pt;}
._1_c01069{width:0.902934pt;}
._2_c01069{width:2.178132pt;}
.fs2_c01069{font-size:53.120000pt;}
.fs0_c01069{font-size:58.880000pt;}
.fs1_c01069{font-size:64.000000pt;}
.y0_c01069{bottom:0.000000pt;}
.yf_c01069{bottom:6.866667pt;}
.yd_c01069{bottom:6.880000pt;}
.y4_c01069{bottom:63.232000pt;}
.y3_c01069{bottom:93.792000pt;}
.yb_c01069{bottom:123.072000pt;}
.ya_c01069{bottom:153.466667pt;}
.y9_c01069{bottom:184.026667pt;}
.y8_c01069{bottom:213.786667pt;}
.ye_c01069{bottom:216.520000pt;}
.y7_c01069{bottom:238.106667pt;}
.y6_c01069{bottom:618.973333pt;}
.yc_c01069{bottom:621.053333pt;}
.y5_c01069{bottom:643.133333pt;}
.y2_c01069{bottom:1031.200000pt;}
.y1_c01069{bottom:1062.080000pt;}
.h7_c01069{height:19.040000pt;}
.h2_c01069{height:42.722500pt;}
.h3_c01069{height:44.468750pt;}
.h5_c01069{height:47.491563pt;}
.h4_c01069{height:47.621250pt;}
.h6_c01069{height:57.781250pt;}
.h0_c01069{height:1122.560000pt;}
.h1_c01069{height:1122.666667pt;}
.w3_c01069{width:229.146667pt;}
.w2_c01069{width:229.293333pt;}
.w0_c01069{width:793.760000pt;}
.w1_c01069{width:794.000000pt;}
.x0_c01069{left:0.000000pt;}
.x1_c01069{left:122.912000pt;}
.x3_c01069{left:181.160000pt;}
.x2_c01069{left:622.213333pt;}
}





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

.ir_c01070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01070;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01070;src:url('chunks/assets/font_abbaac717abfb775e6fdbdbc.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01070;src:url('chunks/assets/font_b79996cf18dd25e71e8ee3fa.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01070;src:url('chunks/assets/font_2149ff384c3c929a2ae8752a.woff2')format("woff");}.ff5_c01070{font-family:ff5_c01070;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01070;src:url('chunks/assets/font_e527dc35bf05dd23fb1ea6c0.woff2')format("woff");}.ff6_c01070{font-family:ff6_c01070;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.ls1_c01070{letter-spacing:-0.053400px;}
.ls0_c01070{letter-spacing:0.000000px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:-20.016000px;}
.ws1_c01070{word-spacing:0.000000px;}
._c_c01070{margin-left:-3.888000px;}
._0_c01070{margin-left:-1.390841px;}
._3_c01070{width:1.114865px;}
._2_c01070{width:2.410865px;}
._7_c01070{width:3.744000px;}
._9_c01070{width:5.184000px;}
._a_c01070{width:6.336000px;}
._b_c01070{width:7.704000px;}
._f_c01070{width:11.160000px;}
._e_c01070{width:12.168000px;}
._d_c01070{width:13.320000px;}
._1_c01070{width:15.912000px;}
._4_c01070{width:17.280000px;}
._8_c01070{width:21.096000px;}
._6_c01070{width:31.032000px;}
._5_c01070{width:32.328000px;}
.fc0_c01070{color:rgb(0,0,0);}
.fs2_c01070{font-size:59.760000px;}
.fs0_c01070{font-size:66.240000px;}
.fs1_c01070{font-size:72.000000px;}
.y0_c01070{bottom:0.000000px;}
.y22_c01070{bottom:7.755000px;}
.y25_c01070{bottom:9.360000px;}
.y24_c01070{bottom:28.080000px;}
.y4_c01070{bottom:71.136000px;}
.y3_c01070{bottom:105.516000px;}
.y20_c01070{bottom:140.796000px;}
.y1f_c01070{bottom:163.110000px;}
.y1e_c01070{bottom:185.430000px;}
.y1d_c01070{bottom:207.750000px;}
.y1c_c01070{bottom:230.070000px;}
.y1b_c01070{bottom:252.390000px;}
.y21_c01070{bottom:285.000000px;}
.y1a_c01070{bottom:286.095000px;}
.y19_c01070{bottom:313.455000px;}
.y18_c01070{bottom:702.645000px;}
.y23_c01070{bottom:711.645000px;}
.y17_c01070{bottom:724.965000px;}
.y16_c01070{bottom:747.105000px;}
.y15_c01070{bottom:769.605000px;}
.y14_c01070{bottom:791.745000px;}
.y13_c01070{bottom:814.065000px;}
.y12_c01070{bottom:836.385000px;}
.y11_c01070{bottom:858.750000px;}
.y10_c01070{bottom:881.070000px;}
.yf_c01070{bottom:903.390000px;}
.ye_c01070{bottom:926.070000px;}
.yd_c01070{bottom:948.210000px;}
.yc_c01070{bottom:970.530000px;}
.yb_c01070{bottom:992.850000px;}
.ya_c01070{bottom:1015.170000px;}
.y9_c01070{bottom:1037.490000px;}
.y8_c01070{bottom:1059.810000px;}
.y7_c01070{bottom:1082.130000px;}
.y6_c01070{bottom:1104.450000px;}
.y5_c01070{bottom:1139.040000px;}
.y2_c01070{bottom:1160.100000px;}
.y1_c01070{bottom:1194.840000px;}
.h7_c01070{height:21.420000px;}
.h8_c01070{height:41.760000px;}
.h3_c01070{height:50.027344px;}
.h2_c01070{height:50.229844px;}
.h6_c01070{height:53.428008px;}
.h5_c01070{height:64.546875px;}
.h4_c01070{height:65.003906px;}
.h0_c01070{height:1262.880000px;}
.h1_c01070{height:1263.000000px;}
.w3_c01070{width:151.740000px;}
.w2_c01070{width:469.515000px;}
.w0_c01070{width:892.980000px;}
.w1_c01070{width:893.250000px;}
.x0_c01070{left:0.000000px;}
.x2_c01070{left:138.276000px;}
.x1_c01070{left:169.950000px;}
.x7_c01070{left:206.865000px;}
.x5_c01070{left:300.315000px;}
.x4_c01070{left:302.475000px;}
.x6_c01070{left:699.450000px;}
.x3_c01070{left:738.510000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls1_c01070{letter-spacing:-0.047467pt;}
.ls0_c01070{letter-spacing:0.000000pt;}
.ws0_c01070{word-spacing:-17.792000pt;}
.ws1_c01070{word-spacing:0.000000pt;}
._c_c01070{margin-left:-3.456000pt;}
._0_c01070{margin-left:-1.236303pt;}
._3_c01070{width:0.990991pt;}
._2_c01070{width:2.142991pt;}
._7_c01070{width:3.328000pt;}
._9_c01070{width:4.608000pt;}
._a_c01070{width:5.632000pt;}
._b_c01070{width:6.848000pt;}
._f_c01070{width:9.920000pt;}
._e_c01070{width:10.816000pt;}
._d_c01070{width:11.840000pt;}
._1_c01070{width:14.144000pt;}
._4_c01070{width:15.360000pt;}
._8_c01070{width:18.752000pt;}
._6_c01070{width:27.584000pt;}
._5_c01070{width:28.736000pt;}
.fs2_c01070{font-size:53.120000pt;}
.fs0_c01070{font-size:58.880000pt;}
.fs1_c01070{font-size:64.000000pt;}
.y0_c01070{bottom:0.000000pt;}
.y22_c01070{bottom:6.893333pt;}
.y25_c01070{bottom:8.320000pt;}
.y24_c01070{bottom:24.960000pt;}
.y4_c01070{bottom:63.232000pt;}
.y3_c01070{bottom:93.792000pt;}
.y20_c01070{bottom:125.152000pt;}
.y1f_c01070{bottom:144.986667pt;}
.y1e_c01070{bottom:164.826667pt;}
.y1d_c01070{bottom:184.666667pt;}
.y1c_c01070{bottom:204.506667pt;}
.y1b_c01070{bottom:224.346667pt;}
.y21_c01070{bottom:253.333333pt;}
.y1a_c01070{bottom:254.306667pt;}
.y19_c01070{bottom:278.626667pt;}
.y18_c01070{bottom:624.573333pt;}
.y23_c01070{bottom:632.573333pt;}
.y17_c01070{bottom:644.413333pt;}
.y16_c01070{bottom:664.093333pt;}
.y15_c01070{bottom:684.093333pt;}
.y14_c01070{bottom:703.773333pt;}
.y13_c01070{bottom:723.613333pt;}
.y12_c01070{bottom:743.453333pt;}
.y11_c01070{bottom:763.333333pt;}
.y10_c01070{bottom:783.173333pt;}
.yf_c01070{bottom:803.013333pt;}
.ye_c01070{bottom:823.173333pt;}
.yd_c01070{bottom:842.853333pt;}
.yc_c01070{bottom:862.693333pt;}
.yb_c01070{bottom:882.533333pt;}
.ya_c01070{bottom:902.373333pt;}
.y9_c01070{bottom:922.213333pt;}
.y8_c01070{bottom:942.053333pt;}
.y7_c01070{bottom:961.893333pt;}
.y6_c01070{bottom:981.733333pt;}
.y5_c01070{bottom:1012.480000pt;}
.y2_c01070{bottom:1031.200000pt;}
.y1_c01070{bottom:1062.080000pt;}
.h7_c01070{height:19.040000pt;}
.h8_c01070{height:37.120000pt;}
.h3_c01070{height:44.468750pt;}
.h2_c01070{height:44.648750pt;}
.h6_c01070{height:47.491563pt;}
.h5_c01070{height:57.375000pt;}
.h4_c01070{height:57.781250pt;}
.h0_c01070{height:1122.560000pt;}
.h1_c01070{height:1122.666667pt;}
.w3_c01070{width:134.880000pt;}
.w2_c01070{width:417.346667pt;}
.w0_c01070{width:793.760000pt;}
.w1_c01070{width:794.000000pt;}
.x0_c01070{left:0.000000pt;}
.x2_c01070{left:122.912000pt;}
.x1_c01070{left:151.066667pt;}
.x7_c01070{left:183.880000pt;}
.x5_c01070{left:266.946667pt;}
.x4_c01070{left:268.866667pt;}
.x6_c01070{left:621.733333pt;}
.x3_c01070{left:656.453333pt;}
}





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

.ir_c01071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01071;src:url('chunks/assets/font_da4d0048ea8c1cac66f54101.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01071;src:url('chunks/assets/font_b081ce652dea3f1f5a8a56f8.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01071;src:url('chunks/assets/font_de290d1f526f915923f275f8.woff2')format("woff");}.ff4_c01071{font-family:ff4_c01071;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.ls2_c01071{letter-spacing:-0.720000px;}
.ls3_c01071{letter-spacing:-0.576000px;}
.ls4_c01071{letter-spacing:-0.053400px;}
.ls1_c01071{letter-spacing:0.000000px;}
.ls0_c01071{letter-spacing:3.024000px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01071{word-spacing:-20.016000px;}
.ws1_c01071{word-spacing:-19.440000px;}
.ws2_c01071{word-spacing:0.000000px;}
._5_c01071{margin-left:-4.176000px;}
._10_c01071{margin-left:-2.952000px;}
._0_c01071{margin-left:-1.258891px;}
._2_c01071{width:1.102891px;}
._3_c01071{width:3.024000px;}
._1_c01071{width:4.224000px;}
._e_c01071{width:5.773133px;}
._6_c01071{width:10.440000px;}
._11_c01071{width:11.561544px;}
._9_c01071{width:12.634891px;}
._7_c01071{width:13.968000px;}
._4_c01071{width:15.336000px;}
._13_c01071{width:17.208000px;}
._b_c01071{width:21.576000px;}
._f_c01071{width:22.608000px;}
._d_c01071{width:30.960000px;}
._c_c01071{width:33.552000px;}
._12_c01071{width:43.128000px;}
._a_c01071{width:51.552000px;}
._8_c01071{width:75.744000px;}
.fc0_c01071{color:rgb(0,0,0);}
.fs2_c01071{font-size:59.760000px;}
.fs0_c01071{font-size:66.240000px;}
.fs1_c01071{font-size:72.000000px;}
.y0_c01071{bottom:0.000000px;}
.y21_c01071{bottom:7.755000px;}
.y24_c01071{bottom:11.340000px;}
.y23_c01071{bottom:30.060000px;}
.y4_c01071{bottom:71.136000px;}
.y3_c01071{bottom:105.516000px;}
.y1f_c01071{bottom:166.350000px;}
.y1e_c01071{bottom:188.670000px;}
.y1d_c01071{bottom:211.170000px;}
.y1c_c01071{bottom:233.490000px;}
.y1b_c01071{bottom:255.810000px;}
.y1a_c01071{bottom:278.130000px;}
.y19_c01071{bottom:300.495000px;}
.y18_c01071{bottom:322.815000px;}
.y17_c01071{bottom:345.315000px;}
.y20_c01071{bottom:375.360000px;}
.y16_c01071{bottom:378.795000px;}
.y15_c01071{bottom:406.155000px;}
.y22_c01071{bottom:786.345000px;}
.y14_c01071{bottom:803.985000px;}
.y13_c01071{bottom:826.125000px;}
.y12_c01071{bottom:848.490000px;}
.y11_c01071{bottom:870.810000px;}
.y10_c01071{bottom:893.130000px;}
.yf_c01071{bottom:915.630000px;}
.ye_c01071{bottom:937.770000px;}
.yd_c01071{bottom:960.090000px;}
.yc_c01071{bottom:982.410000px;}
.yb_c01071{bottom:1004.910000px;}
.ya_c01071{bottom:1027.230000px;}
.y9_c01071{bottom:1049.730000px;}
.y8_c01071{bottom:1072.050000px;}
.y7_c01071{bottom:1094.190000px;}
.y6_c01071{bottom:1116.510000px;}
.y5_c01071{bottom:1139.040000px;}
.y2_c01071{bottom:1160.100000px;}
.y1_c01071{bottom:1194.840000px;}
.h6_c01071{height:21.420000px;}
.h7_c01071{height:43.740000px;}
.h2_c01071{height:48.062812px;}
.h3_c01071{height:50.027344px;}
.h5_c01071{height:53.428008px;}
.h4_c01071{height:64.546875px;}
.h0_c01071{height:1262.880000px;}
.h1_c01071{height:1263.000000px;}
.w3_c01071{width:332.490000px;}
.w2_c01071{width:469.335000px;}
.w0_c01071{width:892.980000px;}
.w1_c01071{width:893.250000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:138.276000px;}
.x4_c01071{left:200.565000px;}
.x2_c01071{left:482.475000px;}
.x3_c01071{left:705.030000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls2_c01071{letter-spacing:-0.640000pt;}
.ls3_c01071{letter-spacing:-0.512000pt;}
.ls4_c01071{letter-spacing:-0.047467pt;}
.ls1_c01071{letter-spacing:0.000000pt;}
.ls0_c01071{letter-spacing:2.688000pt;}
.ws0_c01071{word-spacing:-17.792000pt;}
.ws1_c01071{word-spacing:-17.280000pt;}
.ws2_c01071{word-spacing:0.000000pt;}
._5_c01071{margin-left:-3.712000pt;}
._10_c01071{margin-left:-2.624000pt;}
._0_c01071{margin-left:-1.119014pt;}
._2_c01071{width:0.980348pt;}
._3_c01071{width:2.688000pt;}
._1_c01071{width:3.754667pt;}
._e_c01071{width:5.131674pt;}
._6_c01071{width:9.280000pt;}
._11_c01071{width:10.276928pt;}
._9_c01071{width:11.231014pt;}
._7_c01071{width:12.416000pt;}
._4_c01071{width:13.632000pt;}
._13_c01071{width:15.296000pt;}
._b_c01071{width:19.178667pt;}
._f_c01071{width:20.096000pt;}
._d_c01071{width:27.520000pt;}
._c_c01071{width:29.824000pt;}
._12_c01071{width:38.336000pt;}
._a_c01071{width:45.824000pt;}
._8_c01071{width:67.328000pt;}
.fs2_c01071{font-size:53.120000pt;}
.fs0_c01071{font-size:58.880000pt;}
.fs1_c01071{font-size:64.000000pt;}
.y0_c01071{bottom:0.000000pt;}
.y21_c01071{bottom:6.893333pt;}
.y24_c01071{bottom:10.080000pt;}
.y23_c01071{bottom:26.720000pt;}
.y4_c01071{bottom:63.232000pt;}
.y3_c01071{bottom:93.792000pt;}
.y1f_c01071{bottom:147.866667pt;}
.y1e_c01071{bottom:167.706667pt;}
.y1d_c01071{bottom:187.706667pt;}
.y1c_c01071{bottom:207.546667pt;}
.y1b_c01071{bottom:227.386667pt;}
.y1a_c01071{bottom:247.226667pt;}
.y19_c01071{bottom:267.106667pt;}
.y18_c01071{bottom:286.946667pt;}
.y17_c01071{bottom:306.946667pt;}
.y20_c01071{bottom:333.653333pt;}
.y16_c01071{bottom:336.706667pt;}
.y15_c01071{bottom:361.026667pt;}
.y22_c01071{bottom:698.973333pt;}
.y14_c01071{bottom:714.653333pt;}
.y13_c01071{bottom:734.333333pt;}
.y12_c01071{bottom:754.213333pt;}
.y11_c01071{bottom:774.053333pt;}
.y10_c01071{bottom:793.893333pt;}
.yf_c01071{bottom:813.893333pt;}
.ye_c01071{bottom:833.573333pt;}
.yd_c01071{bottom:853.413333pt;}
.yc_c01071{bottom:873.253333pt;}
.yb_c01071{bottom:893.253333pt;}
.ya_c01071{bottom:913.093333pt;}
.y9_c01071{bottom:933.093333pt;}
.y8_c01071{bottom:952.933333pt;}
.y7_c01071{bottom:972.613333pt;}
.y6_c01071{bottom:992.453333pt;}
.y5_c01071{bottom:1012.480000pt;}
.y2_c01071{bottom:1031.200000pt;}
.y1_c01071{bottom:1062.080000pt;}
.h6_c01071{height:19.040000pt;}
.h7_c01071{height:38.880000pt;}
.h2_c01071{height:42.722500pt;}
.h3_c01071{height:44.468750pt;}
.h5_c01071{height:47.491563pt;}
.h4_c01071{height:57.375000pt;}
.h0_c01071{height:1122.560000pt;}
.h1_c01071{height:1122.666667pt;}
.w3_c01071{width:295.546667pt;}
.w2_c01071{width:417.186667pt;}
.w0_c01071{width:793.760000pt;}
.w1_c01071{width:794.000000pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:122.912000pt;}
.x4_c01071{left:178.280000pt;}
.x2_c01071{left:428.866667pt;}
.x3_c01071{left:626.693333pt;}
}





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

.ir_c01072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01072;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01072;src:url('chunks/assets/font_46eb08c022b6e6b601e70cd0.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01072;src:url('chunks/assets/font_1fe42201908abcf59bb92128.woff2')format("woff");}.ff4_c01072{font-family:ff4_c01072;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01072;src:url('chunks/assets/font_e6fe6a2dbb0eaa9388b37385.woff2')format("woff");}.ff5_c01072{font-family:ff5_c01072;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01072;src:url('chunks/assets/font_a1802ede9f7a5ca819e02181.woff2')format("woff");}.ff6_c01072{font-family:ff6_c01072;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01072;src:url('chunks/assets/font_122bf1a3217702915d9ce4ff.woff2')format("woff");}.ff7_c01072{font-family:ff7_c01072;line-height:1.211914;font-style:normal;font-weight: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_c01072;src:url('chunks/assets/font_fc82e24f3c68655d96fcfd77.woff2')format("woff");}.ff8_c01072{font-family:ff8_c01072;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.ls4_c01072{letter-spacing:-0.247800px;}
.ls3_c01072{letter-spacing:-0.181200px;}
.ls2_c01072{letter-spacing:0.000000px;}
.ls0_c01072{letter-spacing:0.144000px;}
.ls1_c01072{letter-spacing:0.152400px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01072{word-spacing:-21.187920px;}
.ws0_c01072{word-spacing:-20.016000px;}
.ws2_c01072{word-spacing:0.000000px;}
._0_c01072{margin-left:-1.390841px;}
._3_c01072{width:1.152000px;}
._6_c01072{width:2.301707px;}
._7_c01072{width:3.602293px;}
._9_c01072{width:6.264000px;}
._8_c01072{width:8.136000px;}
._a_c01072{width:9.681000px;}
._4_c01072{width:11.016000px;}
._5_c01072{width:13.448524px;}
._2_c01072{width:25.416000px;}
._1_c01072{width:27.000000px;}
.fc0_c01072{color:rgb(0,0,0);}
.fs4_c01072{font-size:38.880000px;}
.fs2_c01072{font-size:48.240000px;}
.fs3_c01072{font-size:59.760000px;}
.fs0_c01072{font-size:66.240000px;}
.fs1_c01072{font-size:72.000000px;}
.y0_c01072{bottom:0.000000px;}
.y17_c01072{bottom:7.575000px;}
.y4_c01072{bottom:71.136000px;}
.y3_c01072{bottom:105.516000px;}
.y15_c01072{bottom:147.456000px;}
.y14_c01072{bottom:166.890000px;}
.y13_c01072{bottom:186.690000px;}
.y12_c01072{bottom:191.910000px;}
.y11_c01072{bottom:240.870000px;}
.y16_c01072{bottom:543.300000px;}
.y10_c01072{bottom:544.215000px;}
.yf_c01072{bottom:571.605000px;}
.ye_c01072{bottom:960.270000px;}
.yd_c01072{bottom:982.590000px;}
.yc_c01072{bottom:1004.910000px;}
.yb_c01072{bottom:1027.230000px;}
.ya_c01072{bottom:1049.550000px;}
.y9_c01072{bottom:1071.870000px;}
.y8_c01072{bottom:1094.370000px;}
.y7_c01072{bottom:1116.690000px;}
.y5_c01072{bottom:1138.860000px;}
.y6_c01072{bottom:1144.800000px;}
.y2_c01072{bottom:1160.100000px;}
.y1_c01072{bottom:1194.840000px;}
.hc_c01072{height:21.285000px;}
.h9_c01072{height:41.484960px;}
.h6_c01072{height:43.246406px;}
.h3_c01072{height:50.027344px;}
.h2_c01072{height:50.229844px;}
.h8_c01072{height:53.428008px;}
.h7_c01072{height:53.573906px;}
.hb_c01072{height:59.789180px;}
.ha_c01072{height:63.763920px;}
.h4_c01072{height:64.546875px;}
.h5_c01072{height:1262.865000px;}
.h0_c01072{height:1262.880000px;}
.h1_c01072{height:1263.000000px;}
.w3_c01072{width:469.335000px;}
.w2_c01072{width:892.957500px;}
.w0_c01072{width:892.980000px;}
.w1_c01072{width:893.250000px;}
.x0_c01072{left:0.000000px;}
.x2_c01072{left:138.276000px;}
.x9_c01072{left:156.630000px;}
.x7_c01072{left:163.830000px;}
.x1_c01072{left:169.950000px;}
.xa_c01072{left:203.085000px;}
.x8_c01072{left:354.315000px;}
.x4_c01072{left:394.432500px;}
.x5_c01072{left:414.435000px;}
.x6_c01072{left:699.450000px;}
.x3_c01072{left:738.510000px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls4_c01072{letter-spacing:-0.220267pt;}
.ls3_c01072{letter-spacing:-0.161067pt;}
.ls2_c01072{letter-spacing:0.000000pt;}
.ls0_c01072{letter-spacing:0.128000pt;}
.ls1_c01072{letter-spacing:0.135467pt;}
.ws1_c01072{word-spacing:-18.833707pt;}
.ws0_c01072{word-spacing:-17.792000pt;}
.ws2_c01072{word-spacing:0.000000pt;}
._0_c01072{margin-left:-1.236303pt;}
._3_c01072{width:1.024000pt;}
._6_c01072{width:2.045961pt;}
._7_c01072{width:3.202039pt;}
._9_c01072{width:5.568000pt;}
._8_c01072{width:7.232000pt;}
._a_c01072{width:8.605334pt;}
._4_c01072{width:9.792000pt;}
._5_c01072{width:11.954243pt;}
._2_c01072{width:22.592000pt;}
._1_c01072{width:24.000000pt;}
.fs4_c01072{font-size:34.560000pt;}
.fs2_c01072{font-size:42.880000pt;}
.fs3_c01072{font-size:53.120000pt;}
.fs0_c01072{font-size:58.880000pt;}
.fs1_c01072{font-size:64.000000pt;}
.y0_c01072{bottom:0.000000pt;}
.y17_c01072{bottom:6.733333pt;}
.y4_c01072{bottom:63.232000pt;}
.y3_c01072{bottom:93.792000pt;}
.y15_c01072{bottom:131.072000pt;}
.y14_c01072{bottom:148.346667pt;}
.y13_c01072{bottom:165.946667pt;}
.y12_c01072{bottom:170.586667pt;}
.y11_c01072{bottom:214.106667pt;}
.y16_c01072{bottom:482.933333pt;}
.y10_c01072{bottom:483.746667pt;}
.yf_c01072{bottom:508.093333pt;}
.ye_c01072{bottom:853.573333pt;}
.yd_c01072{bottom:873.413333pt;}
.yc_c01072{bottom:893.253333pt;}
.yb_c01072{bottom:913.093333pt;}
.ya_c01072{bottom:932.933333pt;}
.y9_c01072{bottom:952.773333pt;}
.y8_c01072{bottom:972.773333pt;}
.y7_c01072{bottom:992.613333pt;}
.y5_c01072{bottom:1012.320000pt;}
.y6_c01072{bottom:1017.600000pt;}
.y2_c01072{bottom:1031.200000pt;}
.y1_c01072{bottom:1062.080000pt;}
.hc_c01072{height:18.920000pt;}
.h9_c01072{height:36.875520pt;}
.h6_c01072{height:38.441250pt;}
.h3_c01072{height:44.468750pt;}
.h2_c01072{height:44.648750pt;}
.h8_c01072{height:47.491563pt;}
.h7_c01072{height:47.621250pt;}
.hb_c01072{height:53.145938pt;}
.ha_c01072{height:56.679040pt;}
.h4_c01072{height:57.375000pt;}
.h5_c01072{height:1122.546667pt;}
.h0_c01072{height:1122.560000pt;}
.h1_c01072{height:1122.666667pt;}
.w3_c01072{width:417.186667pt;}
.w2_c01072{width:793.740000pt;}
.w0_c01072{width:793.760000pt;}
.w1_c01072{width:794.000000pt;}
.x0_c01072{left:0.000000pt;}
.x2_c01072{left:122.912000pt;}
.x9_c01072{left:139.226667pt;}
.x7_c01072{left:145.626667pt;}
.x1_c01072{left:151.066667pt;}
.xa_c01072{left:180.520000pt;}
.x8_c01072{left:314.946667pt;}
.x4_c01072{left:350.606667pt;}
.x5_c01072{left:368.386667pt;}
.x6_c01072{left:621.733333pt;}
.x3_c01072{left:656.453333pt;}
}





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

.ir_c01073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01073;src:url('chunks/assets/font_b6942e2c29a4b50e7c9a3202.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01073;src:url('chunks/assets/font_291f85177dafaabded4f33a0.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01073;src:url('chunks/assets/font_60005255cea03aa65395514a.woff2')format("woff");}.ff4_c01073{font-family:ff4_c01073;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01073;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01073{font-family:ff5_c01073;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:ff6_c01073;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff6_c01073{font-family:ff6_c01073;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.ls4_c01073{letter-spacing:-0.576000px;}
.ls3_c01073{letter-spacing:-0.432000px;}
.ls5_c01073{letter-spacing:-0.053400px;}
.ls2_c01073{letter-spacing:0.000000px;}
.ls1_c01073{letter-spacing:0.288000px;}
.ls0_c01073{letter-spacing:33.264000px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:-20.016000px;}
.ws1_c01073{word-spacing:0.000000px;}
._b_c01073{margin-left:-6.048000px;}
._4_c01073{margin-left:-4.320000px;}
._f_c01073{margin-left:-2.557109px;}
._0_c01073{margin-left:-1.258891px;}
._3_c01073{width:1.080000px;}
._11_c01073{width:2.664000px;}
._5_c01073{width:6.624000px;}
._2_c01073{width:8.208000px;}
._1_c01073{width:9.288000px;}
._10_c01073{width:10.296000px;}
._e_c01073{width:11.448000px;}
._a_c01073{width:15.408000px;}
._8_c01073{width:22.608000px;}
._9_c01073{width:32.760000px;}
._7_c01073{width:34.344000px;}
._6_c01073{width:35.784000px;}
._c_c01073{width:50.976000px;}
._d_c01073{width:52.128000px;}
.fc0_c01073{color:rgb(0,0,0);}
.fs2_c01073{font-size:59.760000px;}
.fs0_c01073{font-size:66.240000px;}
.fs1_c01073{font-size:72.000000px;}
.y0_c01073{bottom:0.000000px;}
.y25_c01073{bottom:5.235000px;}
.y23_c01073{bottom:7.725000px;}
.y4_c01073{bottom:71.136000px;}
.y3_c01073{bottom:105.516000px;}
.y21_c01073{bottom:132.516000px;}
.y20_c01073{bottom:165.990000px;}
.y22_c01073{bottom:166.545000px;}
.y1f_c01073{bottom:193.170000px;}
.y1e_c01073{bottom:580.785000px;}
.y1d_c01073{bottom:602.925000px;}
.y1c_c01073{bottom:625.065000px;}
.y1b_c01073{bottom:647.385000px;}
.y1a_c01073{bottom:669.885000px;}
.y19_c01073{bottom:692.025000px;}
.y18_c01073{bottom:714.525000px;}
.y17_c01073{bottom:736.845000px;}
.y16_c01073{bottom:758.985000px;}
.y15_c01073{bottom:781.665000px;}
.y14_c01073{bottom:803.985000px;}
.y13_c01073{bottom:826.125000px;}
.y12_c01073{bottom:848.670000px;}
.y24_c01073{bottom:858.555000px;}
.y11_c01073{bottom:870.810000px;}
.y10_c01073{bottom:893.130000px;}
.yf_c01073{bottom:915.450000px;}
.ye_c01073{bottom:937.950000px;}
.yd_c01073{bottom:960.270000px;}
.yc_c01073{bottom:982.590000px;}
.yb_c01073{bottom:1005.090000px;}
.ya_c01073{bottom:1027.230000px;}
.y9_c01073{bottom:1049.550000px;}
.y8_c01073{bottom:1071.870000px;}
.y7_c01073{bottom:1094.190000px;}
.y6_c01073{bottom:1116.510000px;}
.y5_c01073{bottom:1138.860000px;}
.y2_c01073{bottom:1160.100000px;}
.y1_c01073{bottom:1194.840000px;}
.h9_c01073{height:18.900000px;}
.h8_c01073{height:21.420000px;}
.h2_c01073{height:48.062812px;}
.h3_c01073{height:50.027344px;}
.h6_c01073{height:53.428008px;}
.h5_c01073{height:62.327813px;}
.h4_c01073{height:64.546875px;}
.h7_c01073{height:65.003906px;}
.h0_c01073{height:1262.880000px;}
.h1_c01073{height:1263.000000px;}
.w3_c01073{width:374.295000px;}
.w2_c01073{width:469.335000px;}
.w0_c01073{width:892.980000px;}
.w1_c01073{width:893.250000px;}
.x0_c01073{left:0.000000px;}
.x1_c01073{left:138.276000px;}
.x4_c01073{left:205.605000px;}
.x2_c01073{left:523.005000px;}
.x3_c01073{left:698.370000px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls4_c01073{letter-spacing:-0.512000pt;}
.ls3_c01073{letter-spacing:-0.384000pt;}
.ls5_c01073{letter-spacing:-0.047467pt;}
.ls2_c01073{letter-spacing:0.000000pt;}
.ls1_c01073{letter-spacing:0.256000pt;}
.ls0_c01073{letter-spacing:29.568000pt;}
.ws0_c01073{word-spacing:-17.792000pt;}
.ws1_c01073{word-spacing:0.000000pt;}
._b_c01073{margin-left:-5.376000pt;}
._4_c01073{margin-left:-3.840000pt;}
._f_c01073{margin-left:-2.272986pt;}
._0_c01073{margin-left:-1.119014pt;}
._3_c01073{width:0.960000pt;}
._11_c01073{width:2.368000pt;}
._5_c01073{width:5.888000pt;}
._2_c01073{width:7.296000pt;}
._1_c01073{width:8.256000pt;}
._10_c01073{width:9.152000pt;}
._e_c01073{width:10.176000pt;}
._a_c01073{width:13.696000pt;}
._8_c01073{width:20.096000pt;}
._9_c01073{width:29.120000pt;}
._7_c01073{width:30.528000pt;}
._6_c01073{width:31.808000pt;}
._c_c01073{width:45.312000pt;}
._d_c01073{width:46.336000pt;}
.fs2_c01073{font-size:53.120000pt;}
.fs0_c01073{font-size:58.880000pt;}
.fs1_c01073{font-size:64.000000pt;}
.y0_c01073{bottom:0.000000pt;}
.y25_c01073{bottom:4.653333pt;}
.y23_c01073{bottom:6.866667pt;}
.y4_c01073{bottom:63.232000pt;}
.y3_c01073{bottom:93.792000pt;}
.y21_c01073{bottom:117.792000pt;}
.y20_c01073{bottom:147.546667pt;}
.y22_c01073{bottom:148.040000pt;}
.y1f_c01073{bottom:171.706667pt;}
.y1e_c01073{bottom:516.253333pt;}
.y1d_c01073{bottom:535.933333pt;}
.y1c_c01073{bottom:555.613333pt;}
.y1b_c01073{bottom:575.453333pt;}
.y1a_c01073{bottom:595.453333pt;}
.y19_c01073{bottom:615.133333pt;}
.y18_c01073{bottom:635.133333pt;}
.y17_c01073{bottom:654.973333pt;}
.y16_c01073{bottom:674.653333pt;}
.y15_c01073{bottom:694.813333pt;}
.y14_c01073{bottom:714.653333pt;}
.y13_c01073{bottom:734.333333pt;}
.y12_c01073{bottom:754.373333pt;}
.y24_c01073{bottom:763.160000pt;}
.y11_c01073{bottom:774.053333pt;}
.y10_c01073{bottom:793.893333pt;}
.yf_c01073{bottom:813.733333pt;}
.ye_c01073{bottom:833.733333pt;}
.yd_c01073{bottom:853.573333pt;}
.yc_c01073{bottom:873.413333pt;}
.yb_c01073{bottom:893.413333pt;}
.ya_c01073{bottom:913.093333pt;}
.y9_c01073{bottom:932.933333pt;}
.y8_c01073{bottom:952.773333pt;}
.y7_c01073{bottom:972.613333pt;}
.y6_c01073{bottom:992.453333pt;}
.y5_c01073{bottom:1012.320000pt;}
.y2_c01073{bottom:1031.200000pt;}
.y1_c01073{bottom:1062.080000pt;}
.h9_c01073{height:16.800000pt;}
.h8_c01073{height:19.040000pt;}
.h2_c01073{height:42.722500pt;}
.h3_c01073{height:44.468750pt;}
.h6_c01073{height:47.491563pt;}
.h5_c01073{height:55.402500pt;}
.h4_c01073{height:57.375000pt;}
.h7_c01073{height:57.781250pt;}
.h0_c01073{height:1122.560000pt;}
.h1_c01073{height:1122.666667pt;}
.w3_c01073{width:332.706667pt;}
.w2_c01073{width:417.186667pt;}
.w0_c01073{width:793.760000pt;}
.w1_c01073{width:794.000000pt;}
.x0_c01073{left:0.000000pt;}
.x1_c01073{left:122.912000pt;}
.x4_c01073{left:182.760000pt;}
.x2_c01073{left:464.893333pt;}
.x3_c01073{left:620.773333pt;}
}





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

.ir_c01074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01074;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01074;src:url('chunks/assets/font_35bb535b3129ba8a340e3a8b.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01074;src:url('chunks/assets/font_7a58e21c01ee65e105a81bf0.woff2')format("woff");}.ff4_c01074{font-family:ff4_c01074;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01074;src:url('chunks/assets/font_278c289cfe0e30799f5c4629.woff2')format("woff");}.ff5_c01074{font-family:ff5_c01074;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01074;src:url('chunks/assets/font_2f95f1ab692f18b5425843b0.woff2')format("woff");}.ff6_c01074{font-family:ff6_c01074;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01074;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff7_c01074{font-family:ff7_c01074;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;}
.m0_c01074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.ls3_c01074{letter-spacing:-0.053400px;}
.ls0_c01074{letter-spacing:0.000000px;}
.ls2_c01074{letter-spacing:0.144000px;}
.ls1_c01074{letter-spacing:0.288000px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01074{word-spacing:0.000000px;}
._7_c01074{margin-left:-3.941516px;}
._6_c01074{margin-left:-2.909794px;}
._0_c01074{margin-left:-1.390841px;}
._1_c01074{width:1.056024px;}
._3_c01074{width:2.880000px;}
._2_c01074{width:4.392000px;}
._9_c01074{width:5.937611px;}
._8_c01074{width:7.128000px;}
._5_c01074{width:13.752000px;}
._4_c01074{width:14.904000px;}
._a_c01074{width:18.720000px;}
.fc0_c01074{color:rgb(0,0,0);}
.fs2_c01074{font-size:59.760000px;}
.fs0_c01074{font-size:66.240000px;}
.fs1_c01074{font-size:72.000000px;}
.y0_c01074{bottom:0.000000px;}
.y1a_c01074{bottom:7.755000px;}
.y4_c01074{bottom:71.136000px;}
.y3_c01074{bottom:105.516000px;}
.y18_c01074{bottom:314.535000px;}
.y19_c01074{bottom:316.860000px;}
.y17_c01074{bottom:341.895000px;}
.y16_c01074{bottom:735.225000px;}
.y15_c01074{bottom:757.545000px;}
.y14_c01074{bottom:779.865000px;}
.y13_c01074{bottom:802.185000px;}
.y12_c01074{bottom:824.685000px;}
.y11_c01074{bottom:847.005000px;}
.y10_c01074{bottom:869.190000px;}
.yf_c01074{bottom:891.510000px;}
.ye_c01074{bottom:914.010000px;}
.yd_c01074{bottom:936.150000px;}
.yc_c01074{bottom:958.470000px;}
.yb_c01074{bottom:980.790000px;}
.ya_c01074{bottom:1015.350000px;}
.y9_c01074{bottom:1037.490000px;}
.y8_c01074{bottom:1059.810000px;}
.y7_c01074{bottom:1082.130000px;}
.y6_c01074{bottom:1104.450000px;}
.y5_c01074{bottom:1139.040000px;}
.y2_c01074{bottom:1160.100000px;}
.y1_c01074{bottom:1194.840000px;}
.h8_c01074{height:21.420000px;}
.h3_c01074{height:50.027344px;}
.h2_c01074{height:50.229844px;}
.h6_c01074{height:53.428008px;}
.h7_c01074{height:62.327813px;}
.h5_c01074{height:64.546875px;}
.h4_c01074{height:65.003906px;}
.h0_c01074{height:1262.880000px;}
.h1_c01074{height:1263.000000px;}
.w2_c01074{width:469.515000px;}
.w0_c01074{width:892.980000px;}
.w1_c01074{width:893.250000px;}
.x0_c01074{left:0.000000px;}
.x2_c01074{left:138.276000px;}
.x1_c01074{left:169.950000px;}
.x5_c01074{left:201.285000px;}
.x4_c01074{left:701.610000px;}
.x3_c01074{left:738.510000px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls3_c01074{letter-spacing:-0.047467pt;}
.ls0_c01074{letter-spacing:0.000000pt;}
.ls2_c01074{letter-spacing:0.128000pt;}
.ls1_c01074{letter-spacing:0.256000pt;}
.ws0_c01074{word-spacing:0.000000pt;}
._7_c01074{margin-left:-3.503570pt;}
._6_c01074{margin-left:-2.586483pt;}
._0_c01074{margin-left:-1.236303pt;}
._1_c01074{width:0.938688pt;}
._3_c01074{width:2.560000pt;}
._2_c01074{width:3.904000pt;}
._9_c01074{width:5.277876pt;}
._8_c01074{width:6.336000pt;}
._5_c01074{width:12.224000pt;}
._4_c01074{width:13.248000pt;}
._a_c01074{width:16.640000pt;}
.fs2_c01074{font-size:53.120000pt;}
.fs0_c01074{font-size:58.880000pt;}
.fs1_c01074{font-size:64.000000pt;}
.y0_c01074{bottom:0.000000pt;}
.y1a_c01074{bottom:6.893333pt;}
.y4_c01074{bottom:63.232000pt;}
.y3_c01074{bottom:93.792000pt;}
.y18_c01074{bottom:279.586667pt;}
.y19_c01074{bottom:281.653333pt;}
.y17_c01074{bottom:303.906667pt;}
.y16_c01074{bottom:653.533333pt;}
.y15_c01074{bottom:673.373333pt;}
.y14_c01074{bottom:693.213333pt;}
.y13_c01074{bottom:713.053333pt;}
.y12_c01074{bottom:733.053333pt;}
.y11_c01074{bottom:752.893333pt;}
.y10_c01074{bottom:772.613333pt;}
.yf_c01074{bottom:792.453333pt;}
.ye_c01074{bottom:812.453333pt;}
.yd_c01074{bottom:832.133333pt;}
.yc_c01074{bottom:851.973333pt;}
.yb_c01074{bottom:871.813333pt;}
.ya_c01074{bottom:902.533333pt;}
.y9_c01074{bottom:922.213333pt;}
.y8_c01074{bottom:942.053333pt;}
.y7_c01074{bottom:961.893333pt;}
.y6_c01074{bottom:981.733333pt;}
.y5_c01074{bottom:1012.480000pt;}
.y2_c01074{bottom:1031.200000pt;}
.y1_c01074{bottom:1062.080000pt;}
.h8_c01074{height:19.040000pt;}
.h3_c01074{height:44.468750pt;}
.h2_c01074{height:44.648750pt;}
.h6_c01074{height:47.491563pt;}
.h7_c01074{height:55.402500pt;}
.h5_c01074{height:57.375000pt;}
.h4_c01074{height:57.781250pt;}
.h0_c01074{height:1122.560000pt;}
.h1_c01074{height:1122.666667pt;}
.w2_c01074{width:417.346667pt;}
.w0_c01074{width:793.760000pt;}
.w1_c01074{width:794.000000pt;}
.x0_c01074{left:0.000000pt;}
.x2_c01074{left:122.912000pt;}
.x1_c01074{left:151.066667pt;}
.x5_c01074{left:178.920000pt;}
.x4_c01074{left:623.653333pt;}
.x3_c01074{left:656.453333pt;}
}





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

.ir_c01075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01075;src:url('chunks/assets/font_774c50c79999f7a2bc4a5b7b.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01075;src:url('chunks/assets/font_bae80a91d3c7e7e3da834b35.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01075;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c01075{font-family:ff4_c01075;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:ff5_c01075;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff5_c01075{font-family:ff5_c01075;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls1_c01075{letter-spacing:-0.053400px;}
.ls0_c01075{letter-spacing:0.000000px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01075{word-spacing:0.000000px;}
._0_c01075{margin-left:-1.258891px;}
._1_c01075{width:1.015800px;}
._2_c01075{width:2.350319px;}
.fc0_c01075{color:rgb(0,0,0);}
.fs2_c01075{font-size:59.760000px;}
.fs0_c01075{font-size:66.240000px;}
.fs1_c01075{font-size:72.000000px;}
.y0_c01075{bottom:0.000000px;}
.y9_c01075{bottom:7.740000px;}
.yb_c01075{bottom:7.755000px;}
.y4_c01075{bottom:71.136000px;}
.y3_c01075{bottom:105.516000px;}
.y8_c01075{bottom:326.235000px;}
.ya_c01075{bottom:326.760000px;}
.y7_c01075{bottom:353.595000px;}
.y6_c01075{bottom:750.345000px;}
.y5_c01075{bottom:777.705000px;}
.y2_c01075{bottom:1160.100000px;}
.y1_c01075{bottom:1194.840000px;}
.h7_c01075{height:21.420000px;}
.h2_c01075{height:48.062812px;}
.h3_c01075{height:50.027344px;}
.h4_c01075{height:53.428008px;}
.h6_c01075{height:53.573906px;}
.h5_c01075{height:62.327813px;}
.h0_c01075{height:1262.880000px;}
.h1_c01075{height:1263.000000px;}
.w2_c01075{width:469.335000px;}
.w0_c01075{width:892.980000px;}
.w1_c01075{width:893.250000px;}
.x0_c01075{left:0.000000px;}
.x1_c01075{left:138.276000px;}
.x5_c01075{left:198.945000px;}
.x4_c01075{left:202.185000px;}
.x2_c01075{left:702.690000px;}
.x3_c01075{left:705.030000px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls1_c01075{letter-spacing:-0.047467pt;}
.ls0_c01075{letter-spacing:0.000000pt;}
.ws0_c01075{word-spacing:0.000000pt;}
._0_c01075{margin-left:-1.119014pt;}
._1_c01075{width:0.902934pt;}
._2_c01075{width:2.089172pt;}
.fs2_c01075{font-size:53.120000pt;}
.fs0_c01075{font-size:58.880000pt;}
.fs1_c01075{font-size:64.000000pt;}
.y0_c01075{bottom:0.000000pt;}
.y9_c01075{bottom:6.880000pt;}
.yb_c01075{bottom:6.893333pt;}
.y4_c01075{bottom:63.232000pt;}
.y3_c01075{bottom:93.792000pt;}
.y8_c01075{bottom:289.986667pt;}
.ya_c01075{bottom:290.453333pt;}
.y7_c01075{bottom:314.306667pt;}
.y6_c01075{bottom:666.973333pt;}
.y5_c01075{bottom:691.293333pt;}
.y2_c01075{bottom:1031.200000pt;}
.y1_c01075{bottom:1062.080000pt;}
.h7_c01075{height:19.040000pt;}
.h2_c01075{height:42.722500pt;}
.h3_c01075{height:44.468750pt;}
.h4_c01075{height:47.491563pt;}
.h6_c01075{height:47.621250pt;}
.h5_c01075{height:55.402500pt;}
.h0_c01075{height:1122.560000pt;}
.h1_c01075{height:1122.666667pt;}
.w2_c01075{width:417.186667pt;}
.w0_c01075{width:793.760000pt;}
.w1_c01075{width:794.000000pt;}
.x0_c01075{left:0.000000pt;}
.x1_c01075{left:122.912000pt;}
.x5_c01075{left:176.840000pt;}
.x4_c01075{left:179.720000pt;}
.x2_c01075{left:624.613333pt;}
.x3_c01075{left:626.693333pt;}
}





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

.ir_c01076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01076;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01076;src:url('chunks/assets/font_6961207b3831d6cc54547cea.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01076;src:url('chunks/assets/font_82486d338134daec0585ae3f.woff2')format("woff");}.ff4_c01076{font-family:ff4_c01076;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01076;src:url('chunks/assets/font_049dc74dc81935f172728d8a.woff2')format("woff");}.ff5_c01076{font-family:ff5_c01076;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.ls0_c01076{letter-spacing:0.000000px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:0.000000px;}
._c_c01076{margin-left:-2.465794px;}
._0_c01076{margin-left:-1.390841px;}
._1_c01076{width:1.872000px;}
._a_c01076{width:3.168000px;}
._9_c01076{width:5.638841px;}
._8_c01076{width:6.696000px;}
._7_c01076{width:8.134769px;}
._6_c01076{width:9.696024px;}
._b_c01076{width:11.232000px;}
._4_c01076{width:13.104000px;}
._5_c01076{width:14.160024px;}
._3_c01076{width:18.576000px;}
._2_c01076{width:25.416000px;}
.fc0_c01076{color:rgb(0,0,0);}
.fs2_c01076{font-size:59.760000px;}
.fs0_c01076{font-size:66.240000px;}
.fs1_c01076{font-size:72.000000px;}
.y0_c01076{bottom:0.000000px;}
.y20_c01076{bottom:7.725000px;}
.y4_c01076{bottom:71.136000px;}
.y3_c01076{bottom:105.516000px;}
.y1e_c01076{bottom:133.596000px;}
.y1d_c01076{bottom:167.970000px;}
.y1c_c01076{bottom:202.350000px;}
.y1b_c01076{bottom:236.550000px;}
.y1a_c01076{bottom:270.930000px;}
.y19_c01076{bottom:305.175000px;}
.y18_c01076{bottom:327.315000px;}
.y17_c01076{bottom:349.635000px;}
.y16_c01076{bottom:384.195000px;}
.y15_c01076{bottom:406.515000px;}
.y14_c01076{bottom:428.835000px;}
.y13_c01076{bottom:450.975000px;}
.y12_c01076{bottom:473.475000px;}
.y11_c01076{bottom:495.795000px;}
.y10_c01076{bottom:517.935000px;}
.yf_c01076{bottom:540.255000px;}
.ye_c01076{bottom:562.935000px;}
.yd_c01076{bottom:585.105000px;}
.yc_c01076{bottom:607.425000px;}
.yb_c01076{bottom:629.745000px;}
.ya_c01076{bottom:652.065000px;}
.y9_c01076{bottom:674.385000px;}
.y8_c01076{bottom:696.705000px;}
.y7_c01076{bottom:719.025000px;}
.y6_c01076{bottom:752.685000px;}
.y1f_c01076{bottom:755.040000px;}
.y5_c01076{bottom:780.045000px;}
.y2_c01076{bottom:1160.100000px;}
.y1_c01076{bottom:1194.840000px;}
.h8_c01076{height:21.420000px;}
.h3_c01076{height:50.027344px;}
.h2_c01076{height:50.229844px;}
.h5_c01076{height:53.428008px;}
.h4_c01076{height:53.573906px;}
.h7_c01076{height:64.371094px;}
.h6_c01076{height:64.546875px;}
.h0_c01076{height:1262.880000px;}
.h1_c01076{height:1263.000000px;}
.w2_c01076{width:469.335000px;}
.w0_c01076{width:892.980000px;}
.w1_c01076{width:893.250000px;}
.x0_c01076{left:0.000000px;}
.x2_c01076{left:138.276000px;}
.x1_c01076{left:169.950000px;}
.x5_c01076{left:200.565000px;}
.x4_c01076{left:703.230000px;}
.x3_c01076{left:738.510000px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls0_c01076{letter-spacing:0.000000pt;}
.ws0_c01076{word-spacing:0.000000pt;}
._c_c01076{margin-left:-2.191817pt;}
._0_c01076{margin-left:-1.236303pt;}
._1_c01076{width:1.664000pt;}
._a_c01076{width:2.816000pt;}
._9_c01076{width:5.012303pt;}
._8_c01076{width:5.952000pt;}
._7_c01076{width:7.230906pt;}
._6_c01076{width:8.618688pt;}
._b_c01076{width:9.984000pt;}
._4_c01076{width:11.648000pt;}
._5_c01076{width:12.586688pt;}
._3_c01076{width:16.512000pt;}
._2_c01076{width:22.592000pt;}
.fs2_c01076{font-size:53.120000pt;}
.fs0_c01076{font-size:58.880000pt;}
.fs1_c01076{font-size:64.000000pt;}
.y0_c01076{bottom:0.000000pt;}
.y20_c01076{bottom:6.866667pt;}
.y4_c01076{bottom:63.232000pt;}
.y3_c01076{bottom:93.792000pt;}
.y1e_c01076{bottom:118.752000pt;}
.y1d_c01076{bottom:149.306667pt;}
.y1c_c01076{bottom:179.866667pt;}
.y1b_c01076{bottom:210.266667pt;}
.y1a_c01076{bottom:240.826667pt;}
.y19_c01076{bottom:271.266667pt;}
.y18_c01076{bottom:290.946667pt;}
.y17_c01076{bottom:310.786667pt;}
.y16_c01076{bottom:341.506667pt;}
.y15_c01076{bottom:361.346667pt;}
.y14_c01076{bottom:381.186667pt;}
.y13_c01076{bottom:400.866667pt;}
.y12_c01076{bottom:420.866667pt;}
.y11_c01076{bottom:440.706667pt;}
.y10_c01076{bottom:460.386667pt;}
.yf_c01076{bottom:480.226667pt;}
.ye_c01076{bottom:500.386667pt;}
.yd_c01076{bottom:520.093333pt;}
.yc_c01076{bottom:539.933333pt;}
.yb_c01076{bottom:559.773333pt;}
.ya_c01076{bottom:579.613333pt;}
.y9_c01076{bottom:599.453333pt;}
.y8_c01076{bottom:619.293333pt;}
.y7_c01076{bottom:639.133333pt;}
.y6_c01076{bottom:669.053333pt;}
.y1f_c01076{bottom:671.146667pt;}
.y5_c01076{bottom:693.373333pt;}
.y2_c01076{bottom:1031.200000pt;}
.y1_c01076{bottom:1062.080000pt;}
.h8_c01076{height:19.040000pt;}
.h3_c01076{height:44.468750pt;}
.h2_c01076{height:44.648750pt;}
.h5_c01076{height:47.491563pt;}
.h4_c01076{height:47.621250pt;}
.h7_c01076{height:57.218750pt;}
.h6_c01076{height:57.375000pt;}
.h0_c01076{height:1122.560000pt;}
.h1_c01076{height:1122.666667pt;}
.w2_c01076{width:417.186667pt;}
.w0_c01076{width:793.760000pt;}
.w1_c01076{width:794.000000pt;}
.x0_c01076{left:0.000000pt;}
.x2_c01076{left:122.912000pt;}
.x1_c01076{left:151.066667pt;}
.x5_c01076{left:178.280000pt;}
.x4_c01076{left:625.093333pt;}
.x3_c01076{left:656.453333pt;}
}





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

.ir_c01077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01077;src:url('chunks/assets/font_1bc47b588dbd6fe2472c602f.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01077;src:url('chunks/assets/font_4ae581db89b5f816388a0244.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01077;src:url('chunks/assets/font_4d5fd454f9d8aa5f404c3f2a.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01077;src:url('chunks/assets/font_291bfb03eb12c849e8f721d0.woff2')format("woff");}.ff5_c01077{font-family:ff5_c01077;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01077{vertical-align:0.000000px;}
.ls1_c01077{letter-spacing:-0.432000px;}
.ls0_c01077{letter-spacing:0.000000px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:0.000000px;}
._b_c01077{margin-left:-5.005109px;}
._9_c01077{margin-left:-3.888000px;}
._0_c01077{margin-left:-1.258891px;}
._1_c01077{width:1.020024px;}
._7_c01077{width:2.376000px;}
._5_c01077{width:3.744000px;}
._6_c01077{width:5.124024px;}
._8_c01077{width:6.215904px;}
._e_c01077{width:7.307491px;}
._a_c01077{width:8.784000px;}
._3_c01077{width:11.155565px;}
._2_c01077{width:12.672000px;}
._c_c01077{width:14.040000px;}
._d_c01077{width:15.479976px;}
._4_c01077{width:51.768000px;}
._f_c01077{width:56.880000px;}
.fc0_c01077{color:rgb(0,0,0);}
.fs0_c01077{font-size:66.240000px;}
.fs1_c01077{font-size:72.000000px;}
.y0_c01077{bottom:0.000000px;}
.y4_c01077{bottom:71.136000px;}
.y3_c01077{bottom:105.516000px;}
.y22_c01077{bottom:455.115000px;}
.y21_c01077{bottom:477.255000px;}
.y20_c01077{bottom:499.755000px;}
.y1f_c01077{bottom:534.135000px;}
.y1e_c01077{bottom:556.275000px;}
.y1d_c01077{bottom:578.625000px;}
.y1c_c01077{bottom:601.305000px;}
.y1b_c01077{bottom:623.445000px;}
.y1a_c01077{bottom:645.765000px;}
.y19_c01077{bottom:668.085000px;}
.y18_c01077{bottom:690.405000px;}
.y17_c01077{bottom:712.725000px;}
.y16_c01077{bottom:735.045000px;}
.y15_c01077{bottom:757.545000px;}
.y14_c01077{bottom:779.865000px;}
.y13_c01077{bottom:802.005000px;}
.y12_c01077{bottom:836.565000px;}
.y11_c01077{bottom:858.750000px;}
.y10_c01077{bottom:881.070000px;}
.yf_c01077{bottom:903.390000px;}
.ye_c01077{bottom:925.890000px;}
.yd_c01077{bottom:948.210000px;}
.yc_c01077{bottom:970.530000px;}
.yb_c01077{bottom:992.850000px;}
.ya_c01077{bottom:1015.170000px;}
.y9_c01077{bottom:1037.490000px;}
.y8_c01077{bottom:1059.810000px;}
.y7_c01077{bottom:1082.130000px;}
.y6_c01077{bottom:1104.450000px;}
.y5_c01077{bottom:1139.040000px;}
.y2_c01077{bottom:1160.100000px;}
.y1_c01077{bottom:1194.840000px;}
.h2_c01077{height:48.062812px;}
.h3_c01077{height:50.027344px;}
.h5_c01077{height:64.546875px;}
.h4_c01077{height:65.003906px;}
.h0_c01077{height:1262.880000px;}
.h1_c01077{height:1263.000000px;}
.w0_c01077{width:892.980000px;}
.w1_c01077{width:893.250000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:138.276000px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls1_c01077{letter-spacing:-0.384000pt;}
.ls0_c01077{letter-spacing:0.000000pt;}
.ws0_c01077{word-spacing:0.000000pt;}
._b_c01077{margin-left:-4.448986pt;}
._9_c01077{margin-left:-3.456000pt;}
._0_c01077{margin-left:-1.119014pt;}
._1_c01077{width:0.906688pt;}
._7_c01077{width:2.112000pt;}
._5_c01077{width:3.328000pt;}
._6_c01077{width:4.554688pt;}
._8_c01077{width:5.525248pt;}
._e_c01077{width:6.495548pt;}
._a_c01077{width:7.808000pt;}
._3_c01077{width:9.916058pt;}
._2_c01077{width:11.264000pt;}
._c_c01077{width:12.480000pt;}
._d_c01077{width:13.759979pt;}
._4_c01077{width:46.016000pt;}
._f_c01077{width:50.560000pt;}
.fs0_c01077{font-size:58.880000pt;}
.fs1_c01077{font-size:64.000000pt;}
.y0_c01077{bottom:0.000000pt;}
.y4_c01077{bottom:63.232000pt;}
.y3_c01077{bottom:93.792000pt;}
.y22_c01077{bottom:404.546667pt;}
.y21_c01077{bottom:424.226667pt;}
.y20_c01077{bottom:444.226667pt;}
.y1f_c01077{bottom:474.786667pt;}
.y1e_c01077{bottom:494.466667pt;}
.y1d_c01077{bottom:514.333333pt;}
.y1c_c01077{bottom:534.493333pt;}
.y1b_c01077{bottom:554.173333pt;}
.y1a_c01077{bottom:574.013333pt;}
.y19_c01077{bottom:593.853333pt;}
.y18_c01077{bottom:613.693333pt;}
.y17_c01077{bottom:633.533333pt;}
.y16_c01077{bottom:653.373333pt;}
.y15_c01077{bottom:673.373333pt;}
.y14_c01077{bottom:693.213333pt;}
.y13_c01077{bottom:712.893333pt;}
.y12_c01077{bottom:743.613333pt;}
.y11_c01077{bottom:763.333333pt;}
.y10_c01077{bottom:783.173333pt;}
.yf_c01077{bottom:803.013333pt;}
.ye_c01077{bottom:823.013333pt;}
.yd_c01077{bottom:842.853333pt;}
.yc_c01077{bottom:862.693333pt;}
.yb_c01077{bottom:882.533333pt;}
.ya_c01077{bottom:902.373333pt;}
.y9_c01077{bottom:922.213333pt;}
.y8_c01077{bottom:942.053333pt;}
.y7_c01077{bottom:961.893333pt;}
.y6_c01077{bottom:981.733333pt;}
.y5_c01077{bottom:1012.480000pt;}
.y2_c01077{bottom:1031.200000pt;}
.y1_c01077{bottom:1062.080000pt;}
.h2_c01077{height:42.722500pt;}
.h3_c01077{height:44.468750pt;}
.h5_c01077{height:57.375000pt;}
.h4_c01077{height:57.781250pt;}
.h0_c01077{height:1122.560000pt;}
.h1_c01077{height:1122.666667pt;}
.w0_c01077{width:793.760000pt;}
.w1_c01077{width:794.000000pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:122.912000pt;}
}





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

.ir_c01078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01078;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01078;src:url('chunks/assets/font_0726ba4f7984056e249c9b94.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_3d78772a5cc0d4770ec36ee7.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01078;src:url('chunks/assets/font_a29414d553dd3e9a9ccdfd1f.woff2')format("woff");}.ff5_c01078{font-family:ff5_c01078;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:ff6_c01078;src:url('chunks/assets/font_df265df6c2be946895ca191a.woff2')format("woff");}.ff6_c01078{font-family:ff6_c01078;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.ls1_c01078{letter-spacing:-0.053400px;}
.ls0_c01078{letter-spacing:0.000000px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01078{word-spacing:0.000000px;}
._3_c01078{margin-left:-2.736000px;}
._0_c01078{margin-left:-1.390841px;}
._1_c01078{width:1.417800px;}
._4_c01078{width:2.881241px;}
._7_c01078{width:4.338476px;}
._6_c01078{width:8.482745px;}
._5_c01078{width:10.056024px;}
._2_c01078{width:838.200240px;}
.fc0_c01078{color:rgb(0,0,0);}
.fs2_c01078{font-size:59.760000px;}
.fs0_c01078{font-size:66.240000px;}
.fs1_c01078{font-size:72.000000px;}
.y0_c01078{bottom:0.000000px;}
.y15_c01078{bottom:7.740000px;}
.y1a_c01078{bottom:9.195000px;}
.y18_c01078{bottom:9.375000px;}
.y19_c01078{bottom:27.735000px;}
.y17_c01078{bottom:27.915000px;}
.y4_c01078{bottom:71.136000px;}
.y3_c01078{bottom:105.516000px;}
.y13_c01078{bottom:147.276000px;}
.y12_c01078{bottom:169.590000px;}
.y11_c01078{bottom:191.910000px;}
.y10_c01078{bottom:214.410000px;}
.yf_c01078{bottom:236.730000px;}
.ye_c01078{bottom:258.870000px;}
.yd_c01078{bottom:281.190000px;}
.yc_c01078{bottom:303.555000px;}
.yb_c01078{bottom:325.875000px;}
.ya_c01078{bottom:360.435000px;}
.y9_c01078{bottom:394.815000px;}
.y16_c01078{bottom:412.800000px;}
.y8_c01078{bottom:429.195000px;}
.y7_c01078{bottom:459.255000px;}
.y6_c01078{bottom:759.345000px;}
.y14_c01078{bottom:760.965000px;}
.y5_c01078{bottom:786.705000px;}
.y2_c01078{bottom:1160.100000px;}
.y1_c01078{bottom:1194.840000px;}
.h8_c01078{height:21.420000px;}
.hb_c01078{height:41.400000px;}
.ha_c01078{height:41.580000px;}
.h3_c01078{height:50.027344px;}
.h2_c01078{height:50.229844px;}
.h9_c01078{height:53.428008px;}
.h4_c01078{height:53.573906px;}
.h5_c01078{height:62.327813px;}
.h7_c01078{height:64.546875px;}
.h6_c01078{height:75.093750px;}
.h0_c01078{height:1262.880000px;}
.h1_c01078{height:1263.000000px;}
.w4_c01078{width:206.505000px;}
.w3_c01078{width:210.615000px;}
.w2_c01078{width:469.515000px;}
.w0_c01078{width:892.980000px;}
.w1_c01078{width:893.250000px;}
.x0_c01078{left:0.000000px;}
.x2_c01078{left:138.276000px;}
.x1_c01078{left:169.950000px;}
.x6_c01078{left:206.325000px;}
.x7_c01078{left:237.465000px;}
.x5_c01078{left:447.735000px;}
.x8_c01078{left:456.555000px;}
.x4_c01078{left:697.290000px;}
.x3_c01078{left:738.510000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls1_c01078{letter-spacing:-0.047467pt;}
.ls0_c01078{letter-spacing:0.000000pt;}
.ws0_c01078{word-spacing:0.000000pt;}
._3_c01078{margin-left:-2.432000pt;}
._0_c01078{margin-left:-1.236303pt;}
._1_c01078{width:1.260267pt;}
._4_c01078{width:2.561103pt;}
._7_c01078{width:3.856423pt;}
._6_c01078{width:7.540218pt;}
._5_c01078{width:8.938688pt;}
._2_c01078{width:745.066880pt;}
.fs2_c01078{font-size:53.120000pt;}
.fs0_c01078{font-size:58.880000pt;}
.fs1_c01078{font-size:64.000000pt;}
.y0_c01078{bottom:0.000000pt;}
.y15_c01078{bottom:6.880000pt;}
.y1a_c01078{bottom:8.173333pt;}
.y18_c01078{bottom:8.333333pt;}
.y19_c01078{bottom:24.653333pt;}
.y17_c01078{bottom:24.813333pt;}
.y4_c01078{bottom:63.232000pt;}
.y3_c01078{bottom:93.792000pt;}
.y13_c01078{bottom:130.912000pt;}
.y12_c01078{bottom:150.746667pt;}
.y11_c01078{bottom:170.586667pt;}
.y10_c01078{bottom:190.586667pt;}
.yf_c01078{bottom:210.426667pt;}
.ye_c01078{bottom:230.106667pt;}
.yd_c01078{bottom:249.946667pt;}
.yc_c01078{bottom:269.826667pt;}
.yb_c01078{bottom:289.666667pt;}
.ya_c01078{bottom:320.386667pt;}
.y9_c01078{bottom:350.946667pt;}
.y16_c01078{bottom:366.933333pt;}
.y8_c01078{bottom:381.506667pt;}
.y7_c01078{bottom:408.226667pt;}
.y6_c01078{bottom:674.973333pt;}
.y14_c01078{bottom:676.413333pt;}
.y5_c01078{bottom:699.293333pt;}
.y2_c01078{bottom:1031.200000pt;}
.y1_c01078{bottom:1062.080000pt;}
.h8_c01078{height:19.040000pt;}
.hb_c01078{height:36.800000pt;}
.ha_c01078{height:36.960000pt;}
.h3_c01078{height:44.468750pt;}
.h2_c01078{height:44.648750pt;}
.h9_c01078{height:47.491563pt;}
.h4_c01078{height:47.621250pt;}
.h5_c01078{height:55.402500pt;}
.h7_c01078{height:57.375000pt;}
.h6_c01078{height:66.750000pt;}
.h0_c01078{height:1122.560000pt;}
.h1_c01078{height:1122.666667pt;}
.w4_c01078{width:183.560000pt;}
.w3_c01078{width:187.213333pt;}
.w2_c01078{width:417.346667pt;}
.w0_c01078{width:793.760000pt;}
.w1_c01078{width:794.000000pt;}
.x0_c01078{left:0.000000pt;}
.x2_c01078{left:122.912000pt;}
.x1_c01078{left:151.066667pt;}
.x6_c01078{left:183.400000pt;}
.x7_c01078{left:211.080000pt;}
.x5_c01078{left:397.986667pt;}
.x8_c01078{left:405.826667pt;}
.x4_c01078{left:619.813333pt;}
.x3_c01078{left:656.453333pt;}
}





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

.ir_c01079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01079;src:url('chunks/assets/font_abbaac717abfb775e6fdbdbc.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01079;src:url('chunks/assets/font_b2ffeba51040b5c9d6b269c4.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01079;src:url('chunks/assets/font_1fd3263de0b5a1d2957ed852.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01079;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff5_c01079{font-family:ff5_c01079;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:ff6_c01079;src:url('chunks/assets/font_002ae5c5d903802b87fdc320.woff2')format("woff");}.ff6_c01079{font-family:ff6_c01079;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01079;src:url('chunks/assets/font_be68c6cb80ef74adc2581c84.woff2')format("woff");}.ff7_c01079{font-family:ff7_c01079;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01079;src:url('chunks/assets/font_c39dbecb33d4ec8a3a8950cb.woff2')format("woff");}.ff8_c01079{font-family:ff8_c01079;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls4_c01079{letter-spacing:-0.247800px;}
.ls2_c01079{letter-spacing:-0.181200px;}
.ls1_c01079{letter-spacing:0.000000px;}
.ls0_c01079{letter-spacing:0.144000px;}
.ls3_c01079{letter-spacing:0.288000px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01079{word-spacing:-20.016000px;}
.ws1_c01079{word-spacing:0.000000px;}
._13_c01079{margin-left:-5.040000px;}
._11_c01079{margin-left:-3.888000px;}
._4_c01079{margin-left:-2.275762px;}
._0_c01079{margin-left:-1.258891px;}
._3_c01079{width:1.080000px;}
._6_c01079{width:2.986891px;}
._5_c01079{width:4.176000px;}
._7_c01079{width:6.182218px;}
._a_c01079{width:7.234694px;}
._9_c01079{width:8.772912px;}
._12_c01079{width:10.104394px;}
._10_c01079{width:11.301782px;}
._f_c01079{width:12.672000px;}
._2_c01079{width:14.112000px;}
._1_c01079{width:15.168000px;}
._8_c01079{width:16.848000px;}
._e_c01079{width:21.888000px;}
._d_c01079{width:23.616000px;}
._c_c01079{width:25.128000px;}
._14_c01079{width:26.784000px;}
._b_c01079{width:32.328000px;}
.fc0_c01079{color:rgb(0,0,0);}
.fs5_c01079{font-size:38.880000px;}
.fs2_c01079{font-size:48.240000px;}
.fs4_c01079{font-size:59.760000px;}
.fs0_c01079{font-size:66.240000px;}
.fs1_c01079{font-size:72.000000px;}
.fs3_c01079{font-size:84.240000px;}
.y0_c01079{bottom:0.000000px;}
.y4_c01079{bottom:71.136000px;}
.y3_c01079{bottom:105.516000px;}
.y31_c01079{bottom:138.456000px;}
.y30_c01079{bottom:157.890000px;}
.y2f_c01079{bottom:163.110000px;}
.y2e_c01079{bottom:191.190000px;}
.y2d_c01079{bottom:217.470000px;}
.y2c_c01079{bottom:239.790000px;}
.y2b_c01079{bottom:262.110000px;}
.y2a_c01079{bottom:284.475000px;}
.y29_c01079{bottom:306.975000px;}
.y28_c01079{bottom:329.295000px;}
.y27_c01079{bottom:351.615000px;}
.y26_c01079{bottom:373.935000px;}
.y25_c01079{bottom:396.255000px;}
.y24_c01079{bottom:418.575000px;}
.y23_c01079{bottom:440.895000px;}
.y22_c01079{bottom:475.455000px;}
.y21_c01079{bottom:497.595000px;}
.y20_c01079{bottom:519.915000px;}
.y1f_c01079{bottom:542.235000px;}
.y1e_c01079{bottom:564.585000px;}
.y1d_c01079{bottom:586.905000px;}
.y1c_c01079{bottom:609.225000px;}
.y1b_c01079{bottom:631.725000px;}
.y1a_c01079{bottom:654.045000px;}
.y19_c01079{bottom:676.365000px;}
.y18_c01079{bottom:698.685000px;}
.y17_c01079{bottom:721.005000px;}
.y16_c01079{bottom:743.325000px;}
.y15_c01079{bottom:765.645000px;}
.y14_c01079{bottom:787.965000px;}
.y13_c01079{bottom:810.285000px;}
.y12_c01079{bottom:831.525000px;}
.y11_c01079{bottom:854.610000px;}
.y10_c01079{bottom:891.690000px;}
.yf_c01079{bottom:926.070000px;}
.ye_c01079{bottom:960.270000px;}
.yd_c01079{bottom:982.410000px;}
.yc_c01079{bottom:1005.090000px;}
.ya_c01079{bottom:1027.230000px;}
.yb_c01079{bottom:1033.170000px;}
.y9_c01079{bottom:1049.730000px;}
.y8_c01079{bottom:1072.050000px;}
.y7_c01079{bottom:1094.370000px;}
.y6_c01079{bottom:1116.510000px;}
.y5_c01079{bottom:1139.040000px;}
.y2_c01079{bottom:1160.100000px;}
.y1_c01079{bottom:1194.840000px;}
.h8_c01079{height:41.484960px;}
.h6_c01079{height:43.246406px;}
.h2_c01079{height:48.062812px;}
.h3_c01079{height:50.027344px;}
.h9_c01079{height:63.763920px;}
.h4_c01079{height:64.546875px;}
.h7_c01079{height:87.859687px;}
.h5_c01079{height:1262.865000px;}
.h0_c01079{height:1262.880000px;}
.h1_c01079{height:1263.000000px;}
.w2_c01079{width:892.957500px;}
.w0_c01079{width:892.980000px;}
.w1_c01079{width:893.250000px;}
.x0_c01079{left:0.000000px;}
.x1_c01079{left:138.276000px;}
.x5_c01079{left:156.630000px;}
.x2_c01079{left:331.612500px;}
.x3_c01079{left:351.615000px;}
.x4_c01079{left:354.315000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls4_c01079{letter-spacing:-0.220267pt;}
.ls2_c01079{letter-spacing:-0.161067pt;}
.ls1_c01079{letter-spacing:0.000000pt;}
.ls0_c01079{letter-spacing:0.128000pt;}
.ls3_c01079{letter-spacing:0.256000pt;}
.ws0_c01079{word-spacing:-17.792000pt;}
.ws1_c01079{word-spacing:0.000000pt;}
._13_c01079{margin-left:-4.480000pt;}
._11_c01079{margin-left:-3.456000pt;}
._4_c01079{margin-left:-2.022899pt;}
._0_c01079{margin-left:-1.119014pt;}
._3_c01079{width:0.960000pt;}
._6_c01079{width:2.655014pt;}
._5_c01079{width:3.712000pt;}
._7_c01079{width:5.495305pt;}
._a_c01079{width:6.430839pt;}
._9_c01079{width:7.798144pt;}
._12_c01079{width:8.981683pt;}
._10_c01079{width:10.046029pt;}
._f_c01079{width:11.264000pt;}
._2_c01079{width:12.544000pt;}
._1_c01079{width:13.482667pt;}
._8_c01079{width:14.976000pt;}
._e_c01079{width:19.456000pt;}
._d_c01079{width:20.992000pt;}
._c_c01079{width:22.336000pt;}
._14_c01079{width:23.808000pt;}
._b_c01079{width:28.736000pt;}
.fs5_c01079{font-size:34.560000pt;}
.fs2_c01079{font-size:42.880000pt;}
.fs4_c01079{font-size:53.120000pt;}
.fs0_c01079{font-size:58.880000pt;}
.fs1_c01079{font-size:64.000000pt;}
.fs3_c01079{font-size:74.880000pt;}
.y0_c01079{bottom:0.000000pt;}
.y4_c01079{bottom:63.232000pt;}
.y3_c01079{bottom:93.792000pt;}
.y31_c01079{bottom:123.072000pt;}
.y30_c01079{bottom:140.346667pt;}
.y2f_c01079{bottom:144.986667pt;}
.y2e_c01079{bottom:169.946667pt;}
.y2d_c01079{bottom:193.306667pt;}
.y2c_c01079{bottom:213.146667pt;}
.y2b_c01079{bottom:232.986667pt;}
.y2a_c01079{bottom:252.866667pt;}
.y29_c01079{bottom:272.866667pt;}
.y28_c01079{bottom:292.706667pt;}
.y27_c01079{bottom:312.546667pt;}
.y26_c01079{bottom:332.386667pt;}
.y25_c01079{bottom:352.226667pt;}
.y24_c01079{bottom:372.066667pt;}
.y23_c01079{bottom:391.906667pt;}
.y22_c01079{bottom:422.626667pt;}
.y21_c01079{bottom:442.306667pt;}
.y20_c01079{bottom:462.146667pt;}
.y1f_c01079{bottom:481.986667pt;}
.y1e_c01079{bottom:501.853333pt;}
.y1d_c01079{bottom:521.693333pt;}
.y1c_c01079{bottom:541.533333pt;}
.y1b_c01079{bottom:561.533333pt;}
.y1a_c01079{bottom:581.373333pt;}
.y19_c01079{bottom:601.213333pt;}
.y18_c01079{bottom:621.053333pt;}
.y17_c01079{bottom:640.893333pt;}
.y16_c01079{bottom:660.733333pt;}
.y15_c01079{bottom:680.573333pt;}
.y14_c01079{bottom:700.413333pt;}
.y13_c01079{bottom:720.253333pt;}
.y12_c01079{bottom:739.133333pt;}
.y11_c01079{bottom:759.653333pt;}
.y10_c01079{bottom:792.613333pt;}
.yf_c01079{bottom:823.173333pt;}
.ye_c01079{bottom:853.573333pt;}
.yd_c01079{bottom:873.253333pt;}
.yc_c01079{bottom:893.413333pt;}
.ya_c01079{bottom:913.093333pt;}
.yb_c01079{bottom:918.373333pt;}
.y9_c01079{bottom:933.093333pt;}
.y8_c01079{bottom:952.933333pt;}
.y7_c01079{bottom:972.773333pt;}
.y6_c01079{bottom:992.453333pt;}
.y5_c01079{bottom:1012.480000pt;}
.y2_c01079{bottom:1031.200000pt;}
.y1_c01079{bottom:1062.080000pt;}
.h8_c01079{height:36.875520pt;}
.h6_c01079{height:38.441250pt;}
.h2_c01079{height:42.722500pt;}
.h3_c01079{height:44.468750pt;}
.h9_c01079{height:56.679040pt;}
.h4_c01079{height:57.375000pt;}
.h7_c01079{height:78.097500pt;}
.h5_c01079{height:1122.546667pt;}
.h0_c01079{height:1122.560000pt;}
.h1_c01079{height:1122.666667pt;}
.w2_c01079{width:793.740000pt;}
.w0_c01079{width:793.760000pt;}
.w1_c01079{width:794.000000pt;}
.x0_c01079{left:0.000000pt;}
.x1_c01079{left:122.912000pt;}
.x5_c01079{left:139.226667pt;}
.x2_c01079{left:294.766667pt;}
.x3_c01079{left:312.546667pt;}
.x4_c01079{left:314.946667pt;}
}





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

.ir_c01080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01080;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01080;src:url('chunks/assets/font_0726ba4f7984056e249c9b94.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01080;src:url('chunks/assets/font_0cf823d81365e6f53d383d63.woff2')format("woff");}.ff4_c01080{font-family:ff4_c01080;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01080;src:url('chunks/assets/font_9321ff49afdbe0549191f233.woff2')format("woff");}.ff5_c01080{font-family:ff5_c01080;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.ls2_c01080{letter-spacing:0.000000px;}
.ls3_c01080{letter-spacing:0.144000px;}
.ls0_c01080{letter-spacing:15.786720px;}
.ls1_c01080{letter-spacing:54.864000px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:-20.016000px;}
.ws1_c01080{word-spacing:0.000000px;}
._6_c01080{margin-left:-5.017159px;}
._5_c01080{margin-left:-3.960000px;}
._d_c01080{margin-left:-2.525990px;}
._0_c01080{margin-left:-1.390841px;}
._3_c01080{width:1.737611px;}
._4_c01080{width:3.670793px;}
._2_c01080{width:4.764024px;}
._1_c01080{width:6.048000px;}
._8_c01080{width:7.056000px;}
._7_c01080{width:8.424000px;}
._10_c01080{width:10.152000px;}
._f_c01080{width:11.160000px;}
._11_c01080{width:12.970961px;}
._a_c01080{width:13.991976px;}
._9_c01080{width:15.024024px;}
._e_c01080{width:17.352000px;}
._18_c01080{width:18.504000px;}
._16_c01080{width:23.246389px;}
._17_c01080{width:24.734442px;}
._c_c01080{width:26.856000px;}
._b_c01080{width:27.936000px;}
._13_c01080{width:37.728000px;}
._15_c01080{width:41.870413px;}
._14_c01080{width:43.488000px;}
._12_c01080{width:49.176000px;}
._19_c01080{width:54.864000px;}
.fc0_c01080{color:rgb(0,0,0);}
.fs2_c01080{font-size:59.760000px;}
.fs0_c01080{font-size:66.240000px;}
.fs1_c01080{font-size:72.000000px;}
.y0_c01080{bottom:0.000000px;}
.y33_c01080{bottom:7.935000px;}
.y31_c01080{bottom:27.705000px;}
.y4_c01080{bottom:71.136000px;}
.y3_c01080{bottom:105.516000px;}
.y2f_c01080{bottom:152.670000px;}
.y30_c01080{bottom:171.765000px;}
.y2e_c01080{bottom:187.050000px;}
.y2d_c01080{bottom:209.370000px;}
.y2c_c01080{bottom:231.510000px;}
.y2b_c01080{bottom:253.830000px;}
.y2a_c01080{bottom:276.330000px;}
.y29_c01080{bottom:298.695000px;}
.y28_c01080{bottom:321.015000px;}
.y32_c01080{bottom:341.340000px;}
.y27_c01080{bottom:343.335000px;}
.y26_c01080{bottom:365.655000px;}
.y25_c01080{bottom:387.975000px;}
.y24_c01080{bottom:410.295000px;}
.y23_c01080{bottom:432.615000px;}
.y22_c01080{bottom:454.935000px;}
.y21_c01080{bottom:477.255000px;}
.y20_c01080{bottom:499.755000px;}
.y1f_c01080{bottom:522.075000px;}
.y1e_c01080{bottom:544.395000px;}
.y1d_c01080{bottom:566.745000px;}
.y1c_c01080{bottom:589.065000px;}
.y1b_c01080{bottom:611.385000px;}
.y1a_c01080{bottom:645.945000px;}
.y19_c01080{bottom:668.085000px;}
.y18_c01080{bottom:690.405000px;}
.y17_c01080{bottom:712.725000px;}
.y16_c01080{bottom:747.285000px;}
.y15_c01080{bottom:769.425000px;}
.y14_c01080{bottom:791.745000px;}
.y13_c01080{bottom:814.065000px;}
.y12_c01080{bottom:836.385000px;}
.y11_c01080{bottom:858.750000px;}
.y10_c01080{bottom:881.070000px;}
.yf_c01080{bottom:903.390000px;}
.ye_c01080{bottom:925.890000px;}
.yd_c01080{bottom:948.210000px;}
.yc_c01080{bottom:970.530000px;}
.yb_c01080{bottom:992.850000px;}
.ya_c01080{bottom:1015.170000px;}
.y9_c01080{bottom:1049.730000px;}
.y8_c01080{bottom:1071.870000px;}
.y7_c01080{bottom:1094.190000px;}
.y6_c01080{bottom:1116.510000px;}
.y5_c01080{bottom:1138.860000px;}
.y2_c01080{bottom:1160.100000px;}
.y1_c01080{bottom:1194.840000px;}
.h7_c01080{height:21.600000px;}
.h5_c01080{height:41.580000px;}
.h3_c01080{height:50.027344px;}
.h2_c01080{height:50.229844px;}
.h6_c01080{height:53.428008px;}
.h4_c01080{height:64.546875px;}
.h0_c01080{height:1262.880000px;}
.h1_c01080{height:1263.000000px;}
.w3_c01080{width:166.335000px;}
.w2_c01080{width:181.470000px;}
.w0_c01080{width:892.980000px;}
.w1_c01080{width:893.250000px;}
.x0_c01080{left:0.000000px;}
.x2_c01080{left:138.276000px;}
.x1_c01080{left:169.950000px;}
.x5_c01080{left:331.815000px;}
.x4_c01080{left:333.975000px;}
.x6_c01080{left:451.875000px;}
.x7_c01080{left:598.440000px;}
.x3_c01080{left:738.510000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls2_c01080{letter-spacing:0.000000pt;}
.ls3_c01080{letter-spacing:0.128000pt;}
.ls0_c01080{letter-spacing:14.032640pt;}
.ls1_c01080{letter-spacing:48.768000pt;}
.ws0_c01080{word-spacing:-17.792000pt;}
.ws1_c01080{word-spacing:0.000000pt;}
._6_c01080{margin-left:-4.459697pt;}
._5_c01080{margin-left:-3.520000pt;}
._d_c01080{margin-left:-2.245325pt;}
._0_c01080{margin-left:-1.236303pt;}
._3_c01080{width:1.544543pt;}
._4_c01080{width:3.262927pt;}
._2_c01080{width:4.234688pt;}
._1_c01080{width:5.376000pt;}
._8_c01080{width:6.272000pt;}
._7_c01080{width:7.488000pt;}
._10_c01080{width:9.024000pt;}
._f_c01080{width:9.920000pt;}
._11_c01080{width:11.529743pt;}
._a_c01080{width:12.437312pt;}
._9_c01080{width:13.354688pt;}
._e_c01080{width:15.424000pt;}
._18_c01080{width:16.448000pt;}
._16_c01080{width:20.663457pt;}
._17_c01080{width:21.986171pt;}
._c_c01080{width:23.872000pt;}
._b_c01080{width:24.832000pt;}
._13_c01080{width:33.536000pt;}
._15_c01080{width:37.218145pt;}
._14_c01080{width:38.656000pt;}
._12_c01080{width:43.712000pt;}
._19_c01080{width:48.768000pt;}
.fs2_c01080{font-size:53.120000pt;}
.fs0_c01080{font-size:58.880000pt;}
.fs1_c01080{font-size:64.000000pt;}
.y0_c01080{bottom:0.000000pt;}
.y33_c01080{bottom:7.053333pt;}
.y31_c01080{bottom:24.626667pt;}
.y4_c01080{bottom:63.232000pt;}
.y3_c01080{bottom:93.792000pt;}
.y2f_c01080{bottom:135.706667pt;}
.y30_c01080{bottom:152.680000pt;}
.y2e_c01080{bottom:166.266667pt;}
.y2d_c01080{bottom:186.106667pt;}
.y2c_c01080{bottom:205.786667pt;}
.y2b_c01080{bottom:225.626667pt;}
.y2a_c01080{bottom:245.626667pt;}
.y29_c01080{bottom:265.506667pt;}
.y28_c01080{bottom:285.346667pt;}
.y32_c01080{bottom:303.413333pt;}
.y27_c01080{bottom:305.186667pt;}
.y26_c01080{bottom:325.026667pt;}
.y25_c01080{bottom:344.866667pt;}
.y24_c01080{bottom:364.706667pt;}
.y23_c01080{bottom:384.546667pt;}
.y22_c01080{bottom:404.386667pt;}
.y21_c01080{bottom:424.226667pt;}
.y20_c01080{bottom:444.226667pt;}
.y1f_c01080{bottom:464.066667pt;}
.y1e_c01080{bottom:483.906667pt;}
.y1d_c01080{bottom:503.773333pt;}
.y1c_c01080{bottom:523.613333pt;}
.y1b_c01080{bottom:543.453333pt;}
.y1a_c01080{bottom:574.173333pt;}
.y19_c01080{bottom:593.853333pt;}
.y18_c01080{bottom:613.693333pt;}
.y17_c01080{bottom:633.533333pt;}
.y16_c01080{bottom:664.253333pt;}
.y15_c01080{bottom:683.933333pt;}
.y14_c01080{bottom:703.773333pt;}
.y13_c01080{bottom:723.613333pt;}
.y12_c01080{bottom:743.453333pt;}
.y11_c01080{bottom:763.333333pt;}
.y10_c01080{bottom:783.173333pt;}
.yf_c01080{bottom:803.013333pt;}
.ye_c01080{bottom:823.013333pt;}
.yd_c01080{bottom:842.853333pt;}
.yc_c01080{bottom:862.693333pt;}
.yb_c01080{bottom:882.533333pt;}
.ya_c01080{bottom:902.373333pt;}
.y9_c01080{bottom:933.093333pt;}
.y8_c01080{bottom:952.773333pt;}
.y7_c01080{bottom:972.613333pt;}
.y6_c01080{bottom:992.453333pt;}
.y5_c01080{bottom:1012.320000pt;}
.y2_c01080{bottom:1031.200000pt;}
.y1_c01080{bottom:1062.080000pt;}
.h7_c01080{height:19.200000pt;}
.h5_c01080{height:36.960000pt;}
.h3_c01080{height:44.468750pt;}
.h2_c01080{height:44.648750pt;}
.h6_c01080{height:47.491563pt;}
.h4_c01080{height:57.375000pt;}
.h0_c01080{height:1122.560000pt;}
.h1_c01080{height:1122.666667pt;}
.w3_c01080{width:147.853333pt;}
.w2_c01080{width:161.306667pt;}
.w0_c01080{width:793.760000pt;}
.w1_c01080{width:794.000000pt;}
.x0_c01080{left:0.000000pt;}
.x2_c01080{left:122.912000pt;}
.x1_c01080{left:151.066667pt;}
.x5_c01080{left:294.946667pt;}
.x4_c01080{left:296.866667pt;}
.x6_c01080{left:401.666667pt;}
.x7_c01080{left:531.946667pt;}
.x3_c01080{left:656.453333pt;}
}





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

.ir_c01081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01081;src:url('chunks/assets/font_131303fb47b1127076594611.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01081;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01081;src:url('chunks/assets/font_e71e9b67c68404f555865fd4.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls0_c01081{letter-spacing:0.000000px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01081{word-spacing:0.000000px;}
._0_c01081{margin-left:-1.258891px;}
._1_c01081{width:1.073409px;}
._2_c01081{width:847.542720px;}
.fc0_c01081{color:rgb(0,0,0);}
.fs2_c01081{font-size:59.760000px;}
.fs0_c01081{font-size:66.240000px;}
.fs1_c01081{font-size:72.000000px;}
.y0_c01081{bottom:0.000000px;}
.y4_c01081{bottom:71.136000px;}
.y3_c01081{bottom:105.516000px;}
.yb_c01081{bottom:158.070000px;}
.ya_c01081{bottom:188.850000px;}
.y9_c01081{bottom:216.030000px;}
.y8_c01081{bottom:553.575000px;}
.y7_c01081{bottom:905.370000px;}
.y6_c01081{bottom:936.150000px;}
.y5_c01081{bottom:963.330000px;}
.y2_c01081{bottom:1160.100000px;}
.y1_c01081{bottom:1194.840000px;}
.h2_c01081{height:48.062812px;}
.h3_c01081{height:50.027344px;}
.h5_c01081{height:53.428008px;}
.h4_c01081{height:53.573906px;}
.h0_c01081{height:1262.880000px;}
.h1_c01081{height:1263.000000px;}
.w0_c01081{width:892.980000px;}
.w1_c01081{width:893.250000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:138.276000px;}
.x3_c01081{left:427.575000px;}
.x2_c01081{left:627.765000px;}
.x4_c01081{left:758.490000px;}
.x5_c01081{left:760.650000px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls0_c01081{letter-spacing:0.000000pt;}
.ws0_c01081{word-spacing:0.000000pt;}
._0_c01081{margin-left:-1.119014pt;}
._1_c01081{width:0.954141pt;}
._2_c01081{width:753.371307pt;}
.fs2_c01081{font-size:53.120000pt;}
.fs0_c01081{font-size:58.880000pt;}
.fs1_c01081{font-size:64.000000pt;}
.y0_c01081{bottom:0.000000pt;}
.y4_c01081{bottom:63.232000pt;}
.y3_c01081{bottom:93.792000pt;}
.yb_c01081{bottom:140.506667pt;}
.ya_c01081{bottom:167.866667pt;}
.y9_c01081{bottom:192.026667pt;}
.y8_c01081{bottom:492.066667pt;}
.y7_c01081{bottom:804.773333pt;}
.y6_c01081{bottom:832.133333pt;}
.y5_c01081{bottom:856.293333pt;}
.y2_c01081{bottom:1031.200000pt;}
.y1_c01081{bottom:1062.080000pt;}
.h2_c01081{height:42.722500pt;}
.h3_c01081{height:44.468750pt;}
.h5_c01081{height:47.491563pt;}
.h4_c01081{height:47.621250pt;}
.h0_c01081{height:1122.560000pt;}
.h1_c01081{height:1122.666667pt;}
.w0_c01081{width:793.760000pt;}
.w1_c01081{width:794.000000pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:122.912000pt;}
.x3_c01081{left:380.066667pt;}
.x2_c01081{left:558.013333pt;}
.x4_c01081{left:674.213333pt;}
.x5_c01081{left:676.133333pt;}
}





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

.ir_c01082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01082;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01082;src:url('chunks/assets/font_418e6a925ada8810d4f25133.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01082;src:url('chunks/assets/font_55973dde1843f2763d3323c9.woff2')format("woff");}.ff4_c01082{font-family:ff4_c01082;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01082;src:url('chunks/assets/font_ac737a2d0e159c179fb2cafd.woff2')format("woff");}.ff5_c01082{font-family:ff5_c01082;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01082;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff6_c01082{font-family:ff6_c01082;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:ff7_c01082;src:url('chunks/assets/font_5b70e5ba1ce9e90524fbd80a.woff2')format("woff");}.ff7_c01082{font-family:ff7_c01082;line-height:0.915039;font-style:normal;font-weight: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_c01082;src:url('chunks/assets/font_891a0af5de3654c7cdfc1c9e.woff2')format("woff");}.ff8_c01082{font-family:ff8_c01082;line-height:1.009766;font-style:normal;font-weight: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_c01082;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff9_c01082{font-family:ff9_c01082;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:ffa_c01082;src:url('chunks/assets/font_ac9ba92216c553747f3d58b7.woff2')format("woff");}.ffa_c01082{font-family:ffa_c01082;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls3_c01082{letter-spacing:-0.540600px;}
.ls2_c01082{letter-spacing:0.000000px;}
.ls4_c01082{letter-spacing:0.144000px;}
.ls0_c01082{letter-spacing:20.784000px;}
.ls1_c01082{letter-spacing:20.808000px;}
.sc__c01082{text-shadow:none;}
.sc1_c01082{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc1_c01082{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01082{word-spacing:-20.554560px;}
.ws0_c01082{word-spacing:-18.000000px;}
.ws2_c01082{word-spacing:0.000000px;}
._2_c01082{margin-left:-2.695848px;}
._0_c01082{margin-left:-1.390841px;}
._1_c01082{width:1.132944px;}
._7_c01082{width:3.319032px;}
._b_c01082{width:4.454929px;}
._c_c01082{width:5.904000px;}
._d_c01082{width:6.921071px;}
._3_c01082{width:7.992000px;}
._6_c01082{width:9.072000px;}
._5_c01082{width:10.080000px;}
._8_c01082{width:11.136024px;}
._a_c01082{width:14.566841px;}
._9_c01082{width:15.624000px;}
._4_c01082{width:21.744000px;}
._f_c01082{width:26.424000px;}
._e_c01082{width:27.576000px;}
._10_c01082{width:59.616000px;}
.fc1_c01082{color:rgb(238,119,0);}
.fc0_c01082{color:rgb(0,0,0);}
.fs3_c01082{font-size:59.760000px;}
.fs0_c01082{font-size:66.240000px;}
.fs1_c01082{font-size:72.000000px;}
.fs4_c01082{font-size:84.240000px;}
.fs2_c01082{font-size:95.760000px;}
.y0_c01082{bottom:0.000000px;}
.y30_c01082{bottom:3.225000px;}
.y7_c01082{bottom:5.040000px;}
.ya_c01082{bottom:5.055000px;}
.y13_c01082{bottom:5.220000px;}
.ye_c01082{bottom:8.820000px;}
.yd_c01082{bottom:14.760000px;}
.y6_c01082{bottom:31.140000px;}
.y12_c01082{bottom:31.350000px;}
.y10_c01082{bottom:31.365000px;}
.yc_c01082{bottom:40.860000px;}
.y2_c01082{bottom:105.516000px;}
.y2f_c01082{bottom:150.885000px;}
.y2e_c01082{bottom:168.330000px;}
.y2d_c01082{bottom:190.830000px;}
.y2c_c01082{bottom:213.150000px;}
.y2b_c01082{bottom:235.470000px;}
.y2a_c01082{bottom:257.790000px;}
.y29_c01082{bottom:280.110000px;}
.y28_c01082{bottom:302.475000px;}
.y27_c01082{bottom:324.795000px;}
.y26_c01082{bottom:347.115000px;}
.y25_c01082{bottom:369.435000px;}
.y24_c01082{bottom:391.755000px;}
.y23_c01082{bottom:414.075000px;}
.y22_c01082{bottom:436.575000px;}
.y21_c01082{bottom:458.895000px;}
.y20_c01082{bottom:481.215000px;}
.y1f_c01082{bottom:503.535000px;}
.y1e_c01082{bottom:525.855000px;}
.y1d_c01082{bottom:548.175000px;}
.y1c_c01082{bottom:570.525000px;}
.y1b_c01082{bottom:605.085000px;}
.y1a_c01082{bottom:627.225000px;}
.y19_c01082{bottom:649.545000px;}
.y18_c01082{bottom:671.865000px;}
.y17_c01082{bottom:694.185000px;}
.y16_c01082{bottom:716.505000px;}
.y15_c01082{bottom:738.825000px;}
.y14_c01082{bottom:783.105000px;}
.yf_c01082{bottom:832.965000px;}
.y11_c01082{bottom:832.980000px;}
.yb_c01082{bottom:887.550000px;}
.y9_c01082{bottom:951.615000px;}
.y8_c01082{bottom:951.630000px;}
.y5_c01082{bottom:1005.990000px;}
.y4_c01082{bottom:1101.930000px;}
.y3_c01082{bottom:1133.100000px;}
.y1_c01082{bottom:1194.840000px;}
.he_c01082{height:16.920000px;}
.h3_c01082{height:50.027344px;}
.h2_c01082{height:50.229844px;}
.h7_c01082{height:52.382812px;}
.hf_c01082{height:53.428008px;}
.h5_c01082{height:54.345000px;}
.h8_c01082{height:54.351000px;}
.h9_c01082{height:54.360000px;}
.hb_c01082{height:54.562500px;}
.h6_c01082{height:63.550195px;}
.ha_c01082{height:64.065000px;}
.hd_c01082{height:64.546875px;}
.h4_c01082{height:69.575625px;}
.hc_c01082{height:87.859687px;}
.h0_c01082{height:1262.880000px;}
.h1_c01082{height:1263.000000px;}
.w3_c01082{width:230.415000px;}
.w4_c01082{width:230.430000px;}
.w5_c01082{width:389.235000px;}
.w2_c01082{width:403.626000px;}
.w0_c01082{width:892.980000px;}
.w1_c01082{width:893.250000px;}
.x0_c01082{left:0.000000px;}
.x5_c01082{left:10.251000px;}
.x6_c01082{left:31.485000px;}
.x3_c01082{left:138.276000px;}
.x1_c01082{left:169.950000px;}
.x4_c01082{left:202.170000px;}
.x8_c01082{left:363.495000px;}
.x7_c01082{left:541.920000px;}
.x2_c01082{left:738.510000px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls3_c01082{letter-spacing:-0.480533pt;}
.ls2_c01082{letter-spacing:0.000000pt;}
.ls4_c01082{letter-spacing:0.128000pt;}
.ls0_c01082{letter-spacing:18.474667pt;}
.ls1_c01082{letter-spacing:18.496000pt;}
.ws1_c01082{word-spacing:-18.270720pt;}
.ws0_c01082{word-spacing:-16.000000pt;}
.ws2_c01082{word-spacing:0.000000pt;}
._2_c01082{margin-left:-2.396310pt;}
._0_c01082{margin-left:-1.236303pt;}
._1_c01082{width:1.007062pt;}
._7_c01082{width:2.950250pt;}
._b_c01082{width:3.959937pt;}
._c_c01082{width:5.248000pt;}
._d_c01082{width:6.152063pt;}
._3_c01082{width:7.104000pt;}
._6_c01082{width:8.064000pt;}
._5_c01082{width:8.960000pt;}
._8_c01082{width:9.898688pt;}
._a_c01082{width:12.948303pt;}
._9_c01082{width:13.888000pt;}
._4_c01082{width:19.328000pt;}
._f_c01082{width:23.488000pt;}
._e_c01082{width:24.512000pt;}
._10_c01082{width:52.992000pt;}
.fs3_c01082{font-size:53.120000pt;}
.fs0_c01082{font-size:58.880000pt;}
.fs1_c01082{font-size:64.000000pt;}
.fs4_c01082{font-size:74.880000pt;}
.fs2_c01082{font-size:85.120000pt;}
.y0_c01082{bottom:0.000000pt;}
.y30_c01082{bottom:2.866667pt;}
.y7_c01082{bottom:4.480000pt;}
.ya_c01082{bottom:4.493333pt;}
.y13_c01082{bottom:4.640000pt;}
.ye_c01082{bottom:7.840000pt;}
.yd_c01082{bottom:13.120000pt;}
.y6_c01082{bottom:27.680000pt;}
.y12_c01082{bottom:27.866667pt;}
.y10_c01082{bottom:27.880000pt;}
.yc_c01082{bottom:36.320000pt;}
.y2_c01082{bottom:93.792000pt;}
.y2f_c01082{bottom:134.120000pt;}
.y2e_c01082{bottom:149.626667pt;}
.y2d_c01082{bottom:169.626667pt;}
.y2c_c01082{bottom:189.466667pt;}
.y2b_c01082{bottom:209.306667pt;}
.y2a_c01082{bottom:229.146667pt;}
.y29_c01082{bottom:248.986667pt;}
.y28_c01082{bottom:268.866667pt;}
.y27_c01082{bottom:288.706667pt;}
.y26_c01082{bottom:308.546667pt;}
.y25_c01082{bottom:328.386667pt;}
.y24_c01082{bottom:348.226667pt;}
.y23_c01082{bottom:368.066667pt;}
.y22_c01082{bottom:388.066667pt;}
.y21_c01082{bottom:407.906667pt;}
.y20_c01082{bottom:427.746667pt;}
.y1f_c01082{bottom:447.586667pt;}
.y1e_c01082{bottom:467.426667pt;}
.y1d_c01082{bottom:487.266667pt;}
.y1c_c01082{bottom:507.133333pt;}
.y1b_c01082{bottom:537.853333pt;}
.y1a_c01082{bottom:557.533333pt;}
.y19_c01082{bottom:577.373333pt;}
.y18_c01082{bottom:597.213333pt;}
.y17_c01082{bottom:617.053333pt;}
.y16_c01082{bottom:636.893333pt;}
.y15_c01082{bottom:656.733333pt;}
.y14_c01082{bottom:696.093333pt;}
.yf_c01082{bottom:740.413333pt;}
.y11_c01082{bottom:740.426667pt;}
.yb_c01082{bottom:788.933333pt;}
.y9_c01082{bottom:845.880000pt;}
.y8_c01082{bottom:845.893333pt;}
.y5_c01082{bottom:894.213333pt;}
.y4_c01082{bottom:979.493333pt;}
.y3_c01082{bottom:1007.200000pt;}
.y1_c01082{bottom:1062.080000pt;}
.he_c01082{height:15.040000pt;}
.h3_c01082{height:44.468750pt;}
.h2_c01082{height:44.648750pt;}
.h7_c01082{height:46.562500pt;}
.hf_c01082{height:47.491563pt;}
.h5_c01082{height:48.306667pt;}
.h8_c01082{height:48.312000pt;}
.h9_c01082{height:48.320000pt;}
.hb_c01082{height:48.500000pt;}
.h6_c01082{height:56.489062pt;}
.ha_c01082{height:56.946667pt;}
.hd_c01082{height:57.375000pt;}
.h4_c01082{height:61.845000pt;}
.hc_c01082{height:78.097500pt;}
.h0_c01082{height:1122.560000pt;}
.h1_c01082{height:1122.666667pt;}
.w3_c01082{width:204.813333pt;}
.w4_c01082{width:204.826667pt;}
.w5_c01082{width:345.986667pt;}
.w2_c01082{width:358.778667pt;}
.w0_c01082{width:793.760000pt;}
.w1_c01082{width:794.000000pt;}
.x0_c01082{left:0.000000pt;}
.x5_c01082{left:9.112000pt;}
.x6_c01082{left:27.986667pt;}
.x3_c01082{left:122.912000pt;}
.x1_c01082{left:151.066667pt;}
.x4_c01082{left:179.706667pt;}
.x8_c01082{left:323.106667pt;}
.x7_c01082{left:481.706667pt;}
.x2_c01082{left:656.453333pt;}
}





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

.ir_c01083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01083;src:url('chunks/assets/font_6eb17fab03f9ea2af834621e.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01083;src:url('chunks/assets/font_3485fea02396e654aa1aa74d.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01083;src:url('chunks/assets/font_17f9938b4e0409476097c905.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01083;src:url('chunks/assets/font_a03c9883482e9233144c1b13.woff2')format("woff");}.ff5_c01083{font-family:ff5_c01083;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls3_c01083{letter-spacing:-0.720000px;}
.ls4_c01083{letter-spacing:-0.247800px;}
.ls2_c01083{letter-spacing:-0.181200px;}
.ls1_c01083{letter-spacing:0.000000px;}
.ls6_c01083{letter-spacing:0.152400px;}
.ls5_c01083{letter-spacing:0.226800px;}
.ls0_c01083{letter-spacing:0.288000px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01083{word-spacing:-21.262320px;}
.ws3_c01083{word-spacing:-21.187920px;}
.ws1_c01083{word-spacing:-20.304000px;}
.ws0_c01083{word-spacing:-20.016000px;}
.ws4_c01083{word-spacing:0.000000px;}
._f_c01083{margin-left:-4.322218px;}
._d_c01083{margin-left:-3.312000px;}
._9_c01083{margin-left:-2.294414px;}
._0_c01083{margin-left:-1.258891px;}
._6_c01083{width:1.105085px;}
._8_c01083{width:2.880000px;}
._7_c01083{width:4.104000px;}
._2_c01083{width:5.280000px;}
._1_c01083{width:6.456000px;}
._3_c01083{width:8.100000px;}
._5_c01083{width:9.622915px;}
._4_c01083{width:10.872000px;}
._c_c01083{width:12.142915px;}
._b_c01083{width:13.608000px;}
._10_c01083{width:15.048000px;}
._11_c01083{width:16.548048px;}
._e_c01083{width:18.538891px;}
._a_c01083{width:21.672000px;}
.fc0_c01083{color:rgb(0,0,0);}
.fs3_c01083{font-size:38.880000px;}
.fs2_c01083{font-size:48.240000px;}
.fs4_c01083{font-size:59.760000px;}
.fs0_c01083{font-size:66.240000px;}
.fs1_c01083{font-size:72.000000px;}
.y0_c01083{bottom:0.000000px;}
.y2_c01083{bottom:105.516000px;}
.y32_c01083{bottom:124.776000px;}
.y31_c01083{bottom:129.996000px;}
.y30_c01083{bottom:142.956000px;}
.y2f_c01083{bottom:161.310000px;}
.y2e_c01083{bottom:166.530000px;}
.y2d_c01083{bottom:179.490000px;}
.y2c_c01083{bottom:197.670000px;}
.y2b_c01083{bottom:202.890000px;}
.y2a_c01083{bottom:286.815000px;}
.y29_c01083{bottom:308.955000px;}
.y28_c01083{bottom:331.275000px;}
.y27_c01083{bottom:353.595000px;}
.y25_c01083{bottom:388.155000px;}
.y26_c01083{bottom:394.095000px;}
.y24_c01083{bottom:410.295000px;}
.y23_c01083{bottom:432.615000px;}
.y22_c01083{bottom:454.935000px;}
.y21_c01083{bottom:477.255000px;}
.y20_c01083{bottom:499.755000px;}
.y1f_c01083{bottom:522.075000px;}
.y1e_c01083{bottom:544.395000px;}
.y1d_c01083{bottom:566.745000px;}
.y1c_c01083{bottom:589.065000px;}
.y1b_c01083{bottom:611.385000px;}
.y1a_c01083{bottom:633.705000px;}
.y19_c01083{bottom:656.025000px;}
.y18_c01083{bottom:678.345000px;}
.y17_c01083{bottom:700.665000px;}
.y16_c01083{bottom:722.985000px;}
.y15_c01083{bottom:745.485000px;}
.y14_c01083{bottom:767.805000px;}
.y13_c01083{bottom:790.125000px;}
.y12_c01083{bottom:812.445000px;}
.y11_c01083{bottom:834.765000px;}
.y10_c01083{bottom:857.130000px;}
.ye_c01083{bottom:891.690000px;}
.yf_c01083{bottom:897.630000px;}
.yd_c01083{bottom:913.830000px;}
.yc_c01083{bottom:936.150000px;}
.yb_c01083{bottom:958.470000px;}
.ya_c01083{bottom:980.790000px;}
.y9_c01083{bottom:1015.350000px;}
.y8_c01083{bottom:1037.490000px;}
.y7_c01083{bottom:1059.810000px;}
.y6_c01083{bottom:1082.130000px;}
.y4_c01083{bottom:1116.690000px;}
.y5_c01083{bottom:1122.630000px;}
.y3_c01083{bottom:1138.860000px;}
.y1_c01083{bottom:1194.840000px;}
.h7_c01083{height:41.484960px;}
.h6_c01083{height:43.246406px;}
.h2_c01083{height:48.062812px;}
.h3_c01083{height:50.027344px;}
.h8_c01083{height:63.763920px;}
.h4_c01083{height:64.546875px;}
.h5_c01083{height:1262.865000px;}
.h0_c01083{height:1262.880000px;}
.h1_c01083{height:1263.000000px;}
.w2_c01083{width:892.957500px;}
.w0_c01083{width:892.980000px;}
.w1_c01083{width:893.250000px;}
.x0_c01083{left:0.000000px;}
.x1_c01083{left:138.276000px;}
.x8_c01083{left:156.630000px;}
.x2_c01083{left:219.247500px;}
.x3_c01083{left:239.250000px;}
.x4_c01083{left:315.412500px;}
.x5_c01083{left:335.415000px;}
.x6_c01083{left:529.642500px;}
.x7_c01083{left:549.645000px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls3_c01083{letter-spacing:-0.640000pt;}
.ls4_c01083{letter-spacing:-0.220267pt;}
.ls2_c01083{letter-spacing:-0.161067pt;}
.ls1_c01083{letter-spacing:0.000000pt;}
.ls6_c01083{letter-spacing:0.135467pt;}
.ls5_c01083{letter-spacing:0.201600pt;}
.ls0_c01083{letter-spacing:0.256000pt;}
.ws2_c01083{word-spacing:-18.899840pt;}
.ws3_c01083{word-spacing:-18.833707pt;}
.ws1_c01083{word-spacing:-18.048000pt;}
.ws0_c01083{word-spacing:-17.792000pt;}
.ws4_c01083{word-spacing:0.000000pt;}
._f_c01083{margin-left:-3.841971pt;}
._d_c01083{margin-left:-2.944000pt;}
._9_c01083{margin-left:-2.039479pt;}
._0_c01083{margin-left:-1.119014pt;}
._6_c01083{width:0.982298pt;}
._8_c01083{width:2.560000pt;}
._7_c01083{width:3.648000pt;}
._2_c01083{width:4.693333pt;}
._1_c01083{width:5.738667pt;}
._3_c01083{width:7.200000pt;}
._5_c01083{width:8.553702pt;}
._4_c01083{width:9.664000pt;}
._c_c01083{width:10.793702pt;}
._b_c01083{width:12.096000pt;}
._10_c01083{width:13.376000pt;}
._11_c01083{width:14.709376pt;}
._e_c01083{width:16.479014pt;}
._a_c01083{width:19.264000pt;}
.fs3_c01083{font-size:34.560000pt;}
.fs2_c01083{font-size:42.880000pt;}
.fs4_c01083{font-size:53.120000pt;}
.fs0_c01083{font-size:58.880000pt;}
.fs1_c01083{font-size:64.000000pt;}
.y0_c01083{bottom:0.000000pt;}
.y2_c01083{bottom:93.792000pt;}
.y32_c01083{bottom:110.912000pt;}
.y31_c01083{bottom:115.552000pt;}
.y30_c01083{bottom:127.072000pt;}
.y2f_c01083{bottom:143.386667pt;}
.y2e_c01083{bottom:148.026667pt;}
.y2d_c01083{bottom:159.546667pt;}
.y2c_c01083{bottom:175.706667pt;}
.y2b_c01083{bottom:180.346667pt;}
.y2a_c01083{bottom:254.946667pt;}
.y29_c01083{bottom:274.626667pt;}
.y28_c01083{bottom:294.466667pt;}
.y27_c01083{bottom:314.306667pt;}
.y25_c01083{bottom:345.026667pt;}
.y26_c01083{bottom:350.306667pt;}
.y24_c01083{bottom:364.706667pt;}
.y23_c01083{bottom:384.546667pt;}
.y22_c01083{bottom:404.386667pt;}
.y21_c01083{bottom:424.226667pt;}
.y20_c01083{bottom:444.226667pt;}
.y1f_c01083{bottom:464.066667pt;}
.y1e_c01083{bottom:483.906667pt;}
.y1d_c01083{bottom:503.773333pt;}
.y1c_c01083{bottom:523.613333pt;}
.y1b_c01083{bottom:543.453333pt;}
.y1a_c01083{bottom:563.293333pt;}
.y19_c01083{bottom:583.133333pt;}
.y18_c01083{bottom:602.973333pt;}
.y17_c01083{bottom:622.813333pt;}
.y16_c01083{bottom:642.653333pt;}
.y15_c01083{bottom:662.653333pt;}
.y14_c01083{bottom:682.493333pt;}
.y13_c01083{bottom:702.333333pt;}
.y12_c01083{bottom:722.173333pt;}
.y11_c01083{bottom:742.013333pt;}
.y10_c01083{bottom:761.893333pt;}
.ye_c01083{bottom:792.613333pt;}
.yf_c01083{bottom:797.893333pt;}
.yd_c01083{bottom:812.293333pt;}
.yc_c01083{bottom:832.133333pt;}
.yb_c01083{bottom:851.973333pt;}
.ya_c01083{bottom:871.813333pt;}
.y9_c01083{bottom:902.533333pt;}
.y8_c01083{bottom:922.213333pt;}
.y7_c01083{bottom:942.053333pt;}
.y6_c01083{bottom:961.893333pt;}
.y4_c01083{bottom:992.613333pt;}
.y5_c01083{bottom:997.893333pt;}
.y3_c01083{bottom:1012.320000pt;}
.y1_c01083{bottom:1062.080000pt;}
.h7_c01083{height:36.875520pt;}
.h6_c01083{height:38.441250pt;}
.h2_c01083{height:42.722500pt;}
.h3_c01083{height:44.468750pt;}
.h8_c01083{height:56.679040pt;}
.h4_c01083{height:57.375000pt;}
.h5_c01083{height:1122.546667pt;}
.h0_c01083{height:1122.560000pt;}
.h1_c01083{height:1122.666667pt;}
.w2_c01083{width:793.740000pt;}
.w0_c01083{width:793.760000pt;}
.w1_c01083{width:794.000000pt;}
.x0_c01083{left:0.000000pt;}
.x1_c01083{left:122.912000pt;}
.x8_c01083{left:139.226667pt;}
.x2_c01083{left:194.886667pt;}
.x3_c01083{left:212.666667pt;}
.x4_c01083{left:280.366667pt;}
.x5_c01083{left:298.146667pt;}
.x6_c01083{left:470.793333pt;}
.x7_c01083{left:488.573333pt;}
}





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

.ir_c01084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01084;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01084;src:url('chunks/assets/font_a5a8acfd3ef4d66d21a9f875.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01084;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;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:ff5_c01084;src:url('chunks/assets/font_82f595d4caf7eeb69de6b4f1.woff2')format("woff");}.ff5_c01084{font-family:ff5_c01084;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01084;src:url('chunks/assets/font_f4c30d9bad9026e11451cfc4.woff2')format("woff");}.ff6_c01084{font-family:ff6_c01084;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01084;src:url('chunks/assets/font_0e3f635ed746ceb53a76b18b.woff2')format("woff");}.ff7_c01084{font-family:ff7_c01084;line-height:1.575000;font-style:normal;font-weight: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_c01084;src:url('chunks/assets/font_856f5b3810147b18df4107cc.woff2')format("woff");}.ff8_c01084{font-family:ff8_c01084;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01084{vertical-align:0.000000px;}
.ls7_c01084{letter-spacing:-0.432000px;}
.ls8_c01084{letter-spacing:-0.247800px;}
.ls9_c01084{letter-spacing:-0.234000px;}
.ls3_c01084{letter-spacing:-0.181200px;}
.ls6_c01084{letter-spacing:-0.144000px;}
.ls1_c01084{letter-spacing:0.000000px;}
.ls4_c01084{letter-spacing:0.144000px;}
.ls5_c01084{letter-spacing:0.216000px;}
.ls2_c01084{letter-spacing:0.288000px;}
.ls0_c01084{letter-spacing:17.424000px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01084{word-spacing:-20.801520px;}
.ws1_c01084{word-spacing:-20.304000px;}
.ws0_c01084{word-spacing:-20.232000px;}
.ws2_c01084{word-spacing:-19.872000px;}
.ws3_c01084{word-spacing:-19.584000px;}
.ws5_c01084{word-spacing:0.000000px;}
._c_c01084{margin-left:-4.991976px;}
._7_c01084{margin-left:-3.456000px;}
._3_c01084{margin-left:-2.420087px;}
._0_c01084{margin-left:-1.390841px;}
._1_c01084{width:1.512000px;}
._2_c01084{width:2.688048px;}
._4_c01084{width:4.079952px;}
._9_c01084{width:5.998841px;}
._8_c01084{width:7.056000px;}
._e_c01084{width:8.390341px;}
._12_c01084{width:10.366937px;}
._f_c01084{width:11.675952px;}
._d_c01084{width:12.850865px;}
._5_c01084{width:14.112000px;}
._6_c01084{width:15.192000px;}
._b_c01084{width:16.632000px;}
._a_c01084{width:17.712000px;}
._11_c01084{width:34.680024px;}
._10_c01084{width:35.784000px;}
.fc0_c01084{color:rgb(0,0,0);}
.fs4_c01084{font-size:38.880000px;}
.fs3_c01084{font-size:48.240000px;}
.fs6_c01084{font-size:54.000000px;}
.fs5_c01084{font-size:59.760000px;}
.fs0_c01084{font-size:66.240000px;}
.fs1_c01084{font-size:72.000000px;}
.fs2_c01084{font-size:84.240000px;}
.y0_c01084{bottom:0.000000px;}
.y4_c01084{bottom:71.136000px;}
.y3_c01084{bottom:105.516000px;}
.y33_c01084{bottom:124.776000px;}
.y32_c01084{bottom:142.956000px;}
.y31_c01084{bottom:148.176000px;}
.y30_c01084{bottom:161.310000px;}
.y2f_c01084{bottom:166.530000px;}
.y2e_c01084{bottom:194.430000px;}
.y2d_c01084{bottom:288.075000px;}
.y2c_c01084{bottom:310.215000px;}
.y2b_c01084{bottom:332.535000px;}
.y2a_c01084{bottom:354.855000px;}
.y29_c01084{bottom:377.175000px;}
.y28_c01084{bottom:399.495000px;}
.y27_c01084{bottom:421.815000px;}
.y26_c01084{bottom:444.315000px;}
.y25_c01084{bottom:466.635000px;}
.y24_c01084{bottom:488.955000px;}
.y23_c01084{bottom:511.275000px;}
.y22_c01084{bottom:533.595000px;}
.y21_c01084{bottom:555.915000px;}
.y20_c01084{bottom:578.265000px;}
.y1f_c01084{bottom:600.585000px;}
.y1e_c01084{bottom:622.905000px;}
.y1d_c01084{bottom:645.225000px;}
.y1c_c01084{bottom:667.725000px;}
.y1b_c01084{bottom:690.045000px;}
.y1a_c01084{bottom:712.365000px;}
.y19_c01084{bottom:734.685000px;}
.y18_c01084{bottom:757.005000px;}
.y17_c01084{bottom:779.325000px;}
.y16_c01084{bottom:801.645000px;}
.y15_c01084{bottom:823.965000px;}
.y14_c01084{bottom:846.285000px;}
.y13_c01084{bottom:868.650000px;}
.y12_c01084{bottom:890.970000px;}
.y10_c01084{bottom:913.470000px;}
.y11_c01084{bottom:919.410000px;}
.yf_c01084{bottom:935.790000px;}
.yd_c01084{bottom:958.110000px;}
.ye_c01084{bottom:964.050000px;}
.yc_c01084{bottom:980.430000px;}
.yb_c01084{bottom:1002.750000px;}
.ya_c01084{bottom:1025.070000px;}
.y9_c01084{bottom:1047.390000px;}
.y8_c01084{bottom:1069.710000px;}
.y7_c01084{bottom:1092.030000px;}
.y6_c01084{bottom:1113.270000px;}
.y5_c01084{bottom:1136.340000px;}
.y2_c01084{bottom:1160.100000px;}
.y1_c01084{bottom:1194.840000px;}
.h8_c01084{height:41.484960px;}
.h7_c01084{height:43.246406px;}
.h3_c01084{height:50.027344px;}
.h2_c01084{height:50.229844px;}
.h9_c01084{height:63.763920px;}
.h5_c01084{height:64.546875px;}
.h4_c01084{height:87.859687px;}
.h6_c01084{height:1262.865000px;}
.h0_c01084{height:1262.880000px;}
.h1_c01084{height:1263.000000px;}
.w2_c01084{width:892.957500px;}
.w0_c01084{width:892.980000px;}
.w1_c01084{width:893.250000px;}
.x0_c01084{left:0.000000px;}
.x2_c01084{left:138.276000px;}
.x9_c01084{left:156.630000px;}
.x1_c01084{left:169.950000px;}
.x4_c01084{left:307.492500px;}
.x5_c01084{left:327.495000px;}
.x6_c01084{left:330.172500px;}
.x7_c01084{left:350.175000px;}
.x8_c01084{left:354.315000px;}
.x3_c01084{left:738.510000px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls7_c01084{letter-spacing:-0.384000pt;}
.ls8_c01084{letter-spacing:-0.220267pt;}
.ls9_c01084{letter-spacing:-0.208000pt;}
.ls3_c01084{letter-spacing:-0.161067pt;}
.ls6_c01084{letter-spacing:-0.128000pt;}
.ls1_c01084{letter-spacing:0.000000pt;}
.ls4_c01084{letter-spacing:0.128000pt;}
.ls5_c01084{letter-spacing:0.192000pt;}
.ls2_c01084{letter-spacing:0.256000pt;}
.ls0_c01084{letter-spacing:15.488000pt;}
.ws4_c01084{word-spacing:-18.490240pt;}
.ws1_c01084{word-spacing:-18.048000pt;}
.ws0_c01084{word-spacing:-17.984000pt;}
.ws2_c01084{word-spacing:-17.664000pt;}
.ws3_c01084{word-spacing:-17.408000pt;}
.ws5_c01084{word-spacing:0.000000pt;}
._c_c01084{margin-left:-4.437312pt;}
._7_c01084{margin-left:-3.072000pt;}
._3_c01084{margin-left:-2.151188pt;}
._0_c01084{margin-left:-1.236303pt;}
._1_c01084{width:1.344000pt;}
._2_c01084{width:2.389376pt;}
._4_c01084{width:3.626624pt;}
._9_c01084{width:5.332303pt;}
._8_c01084{width:6.272000pt;}
._e_c01084{width:7.458081pt;}
._12_c01084{width:9.215055pt;}
._f_c01084{width:10.378624pt;}
._d_c01084{width:11.422991pt;}
._5_c01084{width:12.544000pt;}
._6_c01084{width:13.504000pt;}
._b_c01084{width:14.784000pt;}
._a_c01084{width:15.744000pt;}
._11_c01084{width:30.826688pt;}
._10_c01084{width:31.808000pt;}
.fs4_c01084{font-size:34.560000pt;}
.fs3_c01084{font-size:42.880000pt;}
.fs6_c01084{font-size:48.000000pt;}
.fs5_c01084{font-size:53.120000pt;}
.fs0_c01084{font-size:58.880000pt;}
.fs1_c01084{font-size:64.000000pt;}
.fs2_c01084{font-size:74.880000pt;}
.y0_c01084{bottom:0.000000pt;}
.y4_c01084{bottom:63.232000pt;}
.y3_c01084{bottom:93.792000pt;}
.y33_c01084{bottom:110.912000pt;}
.y32_c01084{bottom:127.072000pt;}
.y31_c01084{bottom:131.712000pt;}
.y30_c01084{bottom:143.386667pt;}
.y2f_c01084{bottom:148.026667pt;}
.y2e_c01084{bottom:172.826667pt;}
.y2d_c01084{bottom:256.066667pt;}
.y2c_c01084{bottom:275.746667pt;}
.y2b_c01084{bottom:295.586667pt;}
.y2a_c01084{bottom:315.426667pt;}
.y29_c01084{bottom:335.266667pt;}
.y28_c01084{bottom:355.106667pt;}
.y27_c01084{bottom:374.946667pt;}
.y26_c01084{bottom:394.946667pt;}
.y25_c01084{bottom:414.786667pt;}
.y24_c01084{bottom:434.626667pt;}
.y23_c01084{bottom:454.466667pt;}
.y22_c01084{bottom:474.306667pt;}
.y21_c01084{bottom:494.146667pt;}
.y20_c01084{bottom:514.013333pt;}
.y1f_c01084{bottom:533.853333pt;}
.y1e_c01084{bottom:553.693333pt;}
.y1d_c01084{bottom:573.533333pt;}
.y1c_c01084{bottom:593.533333pt;}
.y1b_c01084{bottom:613.373333pt;}
.y1a_c01084{bottom:633.213333pt;}
.y19_c01084{bottom:653.053333pt;}
.y18_c01084{bottom:672.893333pt;}
.y17_c01084{bottom:692.733333pt;}
.y16_c01084{bottom:712.573333pt;}
.y15_c01084{bottom:732.413333pt;}
.y14_c01084{bottom:752.253333pt;}
.y13_c01084{bottom:772.133333pt;}
.y12_c01084{bottom:791.973333pt;}
.y10_c01084{bottom:811.973333pt;}
.y11_c01084{bottom:817.253333pt;}
.yf_c01084{bottom:831.813333pt;}
.yd_c01084{bottom:851.653333pt;}
.ye_c01084{bottom:856.933333pt;}
.yc_c01084{bottom:871.493333pt;}
.yb_c01084{bottom:891.333333pt;}
.ya_c01084{bottom:911.173333pt;}
.y9_c01084{bottom:931.013333pt;}
.y8_c01084{bottom:950.853333pt;}
.y7_c01084{bottom:970.693333pt;}
.y6_c01084{bottom:989.573333pt;}
.y5_c01084{bottom:1010.080000pt;}
.y2_c01084{bottom:1031.200000pt;}
.y1_c01084{bottom:1062.080000pt;}
.h8_c01084{height:36.875520pt;}
.h7_c01084{height:38.441250pt;}
.h3_c01084{height:44.468750pt;}
.h2_c01084{height:44.648750pt;}
.h9_c01084{height:56.679040pt;}
.h5_c01084{height:57.375000pt;}
.h4_c01084{height:78.097500pt;}
.h6_c01084{height:1122.546667pt;}
.h0_c01084{height:1122.560000pt;}
.h1_c01084{height:1122.666667pt;}
.w2_c01084{width:793.740000pt;}
.w0_c01084{width:793.760000pt;}
.w1_c01084{width:794.000000pt;}
.x0_c01084{left:0.000000pt;}
.x2_c01084{left:122.912000pt;}
.x9_c01084{left:139.226667pt;}
.x1_c01084{left:151.066667pt;}
.x4_c01084{left:273.326667pt;}
.x5_c01084{left:291.106667pt;}
.x6_c01084{left:293.486667pt;}
.x7_c01084{left:311.266667pt;}
.x8_c01084{left:314.946667pt;}
.x3_c01084{left:656.453333pt;}
}





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

.ir_c01085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01085;src:url('chunks/assets/font_be2f594d4b81ed0a09106d2a.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01085;src:url('chunks/assets/font_23fd4c8c12b05933ff959dd2.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01085;src:url('chunks/assets/font_dea3192f8475714c4453aad3.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01085{vertical-align:0.000000px;}
.ls1_c01085{letter-spacing:-0.432000px;}
.ls0_c01085{letter-spacing:0.000000px;}
.ls2_c01085{letter-spacing:0.144000px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01085{word-spacing:-19.584000px;}
.ws1_c01085{word-spacing:0.000000px;}
._8_c01085{margin-left:-3.528000px;}
._9_c01085{margin-left:-2.511302px;}
._0_c01085{margin-left:-1.258891px;}
._4_c01085{width:1.008000px;}
._1b_c01085{width:2.230963px;}
._5_c01085{width:3.299976px;}
._19_c01085{width:4.317782px;}
._7_c01085{width:5.760000px;}
._6_c01085{width:7.056000px;}
._b_c01085{width:8.184000px;}
._a_c01085{width:9.336000px;}
._14_c01085{width:10.656000px;}
._13_c01085{width:12.168000px;}
._11_c01085{width:13.824000px;}
._10_c01085{width:14.832000px;}
._1a_c01085{width:16.056000px;}
._c_c01085{width:21.600000px;}
._d_c01085{width:22.739976px;}
._16_c01085{width:24.132024px;}
._18_c01085{width:26.386891px;}
._17_c01085{width:27.504000px;}
._f_c01085{width:35.136000px;}
._e_c01085{width:36.552024px;}
._3_c01085{width:38.304000px;}
._2_c01085{width:39.528000px;}
._12_c01085{width:48.528000px;}
._15_c01085{width:51.264000px;}
._1_c01085{width:1714.188000px;}
.fc0_c01085{color:rgb(0,0,0);}
.fs2_c01085{font-size:59.760000px;}
.fs0_c01085{font-size:66.240000px;}
.fs1_c01085{font-size:72.000000px;}
.y0_c01085{bottom:0.000000px;}
.y27_c01085{bottom:3.270000px;}
.y2a_c01085{bottom:10.455000px;}
.y25_c01085{bottom:11.190000px;}
.y29_c01085{bottom:29.175000px;}
.y4_c01085{bottom:71.136000px;}
.y3_c01085{bottom:105.516000px;}
.y23_c01085{bottom:144.396000px;}
.y22_c01085{bottom:166.710000px;}
.y21_c01085{bottom:189.030000px;}
.y20_c01085{bottom:211.350000px;}
.y1f_c01085{bottom:233.670000px;}
.y1e_c01085{bottom:268.230000px;}
.y1d_c01085{bottom:290.415000px;}
.y1c_c01085{bottom:312.735000px;}
.y1b_c01085{bottom:335.055000px;}
.y1a_c01085{bottom:357.375000px;}
.y19_c01085{bottom:379.875000px;}
.y18_c01085{bottom:402.195000px;}
.y17_c01085{bottom:436.575000px;}
.y16_c01085{bottom:458.715000px;}
.y28_c01085{bottom:463.380000px;}
.y15_c01085{bottom:481.215000px;}
.y14_c01085{bottom:503.535000px;}
.y13_c01085{bottom:525.855000px;}
.y12_c01085{bottom:548.175000px;}
.y11_c01085{bottom:570.525000px;}
.y10_c01085{bottom:592.845000px;}
.yf_c01085{bottom:615.165000px;}
.ye_c01085{bottom:637.485000px;}
.yd_c01085{bottom:659.805000px;}
.yc_c01085{bottom:682.125000px;}
.yb_c01085{bottom:704.625000px;}
.ya_c01085{bottom:726.945000px;}
.y9_c01085{bottom:749.265000px;}
.y8_c01085{bottom:771.585000px;}
.y7_c01085{bottom:793.905000px;}
.y6_c01085{bottom:828.825000px;}
.y24_c01085{bottom:837.480000px;}
.y26_c01085{bottom:846.120000px;}
.y5_c01085{bottom:868.830000px;}
.y2_c01085{bottom:1160.100000px;}
.y1_c01085{bottom:1194.840000px;}
.h7_c01085{height:16.942500px;}
.h5_c01085{height:24.862500px;}
.h8_c01085{height:42.840000px;}
.h2_c01085{height:48.062812px;}
.h3_c01085{height:50.027344px;}
.h6_c01085{height:53.428008px;}
.h4_c01085{height:64.546875px;}
.h0_c01085{height:1262.880000px;}
.h1_c01085{height:1263.000000px;}
.w4_c01085{width:165.450000px;}
.w2_c01085{width:169.935000px;}
.w3_c01085{width:389.400000px;}
.w0_c01085{width:892.980000px;}
.w1_c01085{width:893.250000px;}
.x0_c01085{left:0.000000px;}
.x1_c01085{left:138.276000px;}
.x3_c01085{left:322.815000px;}
.x2_c01085{left:326.055000px;}
.x4_c01085{left:337.035000px;}
.x5_c01085{left:599.700000px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls1_c01085{letter-spacing:-0.384000pt;}
.ls0_c01085{letter-spacing:0.000000pt;}
.ls2_c01085{letter-spacing:0.128000pt;}
.ws0_c01085{word-spacing:-17.408000pt;}
.ws1_c01085{word-spacing:0.000000pt;}
._8_c01085{margin-left:-3.136000pt;}
._9_c01085{margin-left:-2.232269pt;}
._0_c01085{margin-left:-1.119014pt;}
._4_c01085{width:0.896000pt;}
._1b_c01085{width:1.983078pt;}
._5_c01085{width:2.933312pt;}
._19_c01085{width:3.838029pt;}
._7_c01085{width:5.120000pt;}
._6_c01085{width:6.272000pt;}
._b_c01085{width:7.274667pt;}
._a_c01085{width:8.298667pt;}
._14_c01085{width:9.472000pt;}
._13_c01085{width:10.816000pt;}
._11_c01085{width:12.288000pt;}
._10_c01085{width:13.184000pt;}
._1a_c01085{width:14.272000pt;}
._c_c01085{width:19.200000pt;}
._d_c01085{width:20.213312pt;}
._16_c01085{width:21.450688pt;}
._18_c01085{width:23.455014pt;}
._17_c01085{width:24.448000pt;}
._f_c01085{width:31.232000pt;}
._e_c01085{width:32.490688pt;}
._3_c01085{width:34.048000pt;}
._2_c01085{width:35.136000pt;}
._12_c01085{width:43.136000pt;}
._15_c01085{width:45.568000pt;}
._1_c01085{width:1523.722667pt;}
.fs2_c01085{font-size:53.120000pt;}
.fs0_c01085{font-size:58.880000pt;}
.fs1_c01085{font-size:64.000000pt;}
.y0_c01085{bottom:0.000000pt;}
.y27_c01085{bottom:2.906667pt;}
.y2a_c01085{bottom:9.293333pt;}
.y25_c01085{bottom:9.946667pt;}
.y29_c01085{bottom:25.933333pt;}
.y4_c01085{bottom:63.232000pt;}
.y3_c01085{bottom:93.792000pt;}
.y23_c01085{bottom:128.352000pt;}
.y22_c01085{bottom:148.186667pt;}
.y21_c01085{bottom:168.026667pt;}
.y20_c01085{bottom:187.866667pt;}
.y1f_c01085{bottom:207.706667pt;}
.y1e_c01085{bottom:238.426667pt;}
.y1d_c01085{bottom:258.146667pt;}
.y1c_c01085{bottom:277.986667pt;}
.y1b_c01085{bottom:297.826667pt;}
.y1a_c01085{bottom:317.666667pt;}
.y19_c01085{bottom:337.666667pt;}
.y18_c01085{bottom:357.506667pt;}
.y17_c01085{bottom:388.066667pt;}
.y16_c01085{bottom:407.746667pt;}
.y28_c01085{bottom:411.893333pt;}
.y15_c01085{bottom:427.746667pt;}
.y14_c01085{bottom:447.586667pt;}
.y13_c01085{bottom:467.426667pt;}
.y12_c01085{bottom:487.266667pt;}
.y11_c01085{bottom:507.133333pt;}
.y10_c01085{bottom:526.973333pt;}
.yf_c01085{bottom:546.813333pt;}
.ye_c01085{bottom:566.653333pt;}
.yd_c01085{bottom:586.493333pt;}
.yc_c01085{bottom:606.333333pt;}
.yb_c01085{bottom:626.333333pt;}
.ya_c01085{bottom:646.173333pt;}
.y9_c01085{bottom:666.013333pt;}
.y8_c01085{bottom:685.853333pt;}
.y7_c01085{bottom:705.693333pt;}
.y6_c01085{bottom:736.733333pt;}
.y24_c01085{bottom:744.426667pt;}
.y26_c01085{bottom:752.106667pt;}
.y5_c01085{bottom:772.293333pt;}
.y2_c01085{bottom:1031.200000pt;}
.y1_c01085{bottom:1062.080000pt;}
.h7_c01085{height:15.060000pt;}
.h5_c01085{height:22.100000pt;}
.h8_c01085{height:38.080000pt;}
.h2_c01085{height:42.722500pt;}
.h3_c01085{height:44.468750pt;}
.h6_c01085{height:47.491563pt;}
.h4_c01085{height:57.375000pt;}
.h0_c01085{height:1122.560000pt;}
.h1_c01085{height:1122.666667pt;}
.w4_c01085{width:147.066667pt;}
.w2_c01085{width:151.053333pt;}
.w3_c01085{width:346.133333pt;}
.w0_c01085{width:793.760000pt;}
.w1_c01085{width:794.000000pt;}
.x0_c01085{left:0.000000pt;}
.x1_c01085{left:122.912000pt;}
.x3_c01085{left:286.946667pt;}
.x2_c01085{left:289.826667pt;}
.x4_c01085{left:299.586667pt;}
.x5_c01085{left:533.066667pt;}
}





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

.ir_c01086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01086;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01086;src:url('chunks/assets/font_30b1efbecca85629bec5c692.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01086;src:url('chunks/assets/font_11ff1f574dee8addbfa9c705.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01086;src:url('chunks/assets/font_8b523d34078e28a0620f68df.woff2')format("woff");}.ff5_c01086{font-family:ff5_c01086;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01086;src:url('chunks/assets/font_4d32ffdb62bf44cd41b3d216.woff2')format("woff");}.ff6_c01086{font-family:ff6_c01086;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01086;src:url('chunks/assets/font_400f16389aeca1b559e9fd6a.woff2')format("woff");}.ff7_c01086{font-family:ff7_c01086;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01086;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff8_c01086{font-family:ff8_c01086;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01086{vertical-align:0.000000px;}
.ls3_c01086{letter-spacing:-0.306600px;}
.ls5_c01086{letter-spacing:-0.247800px;}
.ls4_c01086{letter-spacing:-0.181200px;}
.ls6_c01086{letter-spacing:-0.152400px;}
.ls2_c01086{letter-spacing:-0.053400px;}
.ls1_c01086{letter-spacing:0.000000px;}
.ls0_c01086{letter-spacing:0.288000px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01086{word-spacing:-20.304000px;}
.ws2_c01086{word-spacing:-20.016000px;}
.ws3_c01086{word-spacing:-16.613280px;}
.ws0_c01086{word-spacing:-16.306680px;}
.ws4_c01086{word-spacing:0.000000px;}
._1_c01086{margin-left:-2.785159px;}
._0_c01086{margin-left:-1.390841px;}
._5_c01086{width:1.178317px;}
._4_c01086{width:2.349683px;}
._6_c01086{width:3.364246px;}
._13_c01086{width:4.896000px;}
._e_c01086{width:6.912000px;}
._a_c01086{width:9.044548px;}
._9_c01086{width:10.296000px;}
._8_c01086{width:12.240000px;}
._3_c01086{width:13.836024px;}
._2_c01086{width:15.768000px;}
._10_c01086{width:18.783913px;}
._f_c01086{width:21.410317px;}
._d_c01086{width:22.414841px;}
._c_c01086{width:23.544000px;}
._7_c01086{width:31.176000px;}
._12_c01086{width:49.032000px;}
._11_c01086{width:50.112000px;}
._b_c01086{width:990.840240px;}
.fc0_c01086{color:rgb(0,0,0);}
.fs4_c01086{font-size:38.880000px;}
.fs3_c01086{font-size:48.240000px;}
.fs2_c01086{font-size:59.760000px;}
.fs0_c01086{font-size:66.240000px;}
.fs1_c01086{font-size:72.000000px;}
.y0_c01086{bottom:0.000000px;}
.y23_c01086{bottom:11.325000px;}
.y4_c01086{bottom:71.136000px;}
.y3_c01086{bottom:105.516000px;}
.y21_c01086{bottom:124.776000px;}
.y20_c01086{bottom:129.996000px;}
.y1f_c01086{bottom:158.070000px;}
.y22_c01086{bottom:187.245000px;}
.y1e_c01086{bottom:208.650000px;}
.y1d_c01086{bottom:230.970000px;}
.y1c_c01086{bottom:253.290000px;}
.y1b_c01086{bottom:275.610000px;}
.y19_c01086{bottom:310.215000px;}
.y1a_c01086{bottom:316.155000px;}
.y18_c01086{bottom:332.355000px;}
.y17_c01086{bottom:354.675000px;}
.y16_c01086{bottom:376.995000px;}
.y15_c01086{bottom:399.495000px;}
.y14_c01086{bottom:421.815000px;}
.y13_c01086{bottom:444.135000px;}
.y12_c01086{bottom:466.455000px;}
.y11_c01086{bottom:488.775000px;}
.y10_c01086{bottom:522.435000px;}
.yf_c01086{bottom:549.615000px;}
.ye_c01086{bottom:937.950000px;}
.yd_c01086{bottom:960.090000px;}
.yc_c01086{bottom:982.410000px;}
.yb_c01086{bottom:1004.910000px;}
.ya_c01086{bottom:1027.230000px;}
.y9_c01086{bottom:1049.550000px;}
.y8_c01086{bottom:1071.870000px;}
.y7_c01086{bottom:1094.190000px;}
.y6_c01086{bottom:1116.510000px;}
.y5_c01086{bottom:1138.860000px;}
.y2_c01086{bottom:1160.100000px;}
.y1_c01086{bottom:1194.840000px;}
.hb_c01086{height:25.020000px;}
.h9_c01086{height:41.484960px;}
.h8_c01086{height:43.246406px;}
.h3_c01086{height:50.027344px;}
.h2_c01086{height:50.229844px;}
.h6_c01086{height:53.428008px;}
.h5_c01086{height:53.573906px;}
.hc_c01086{height:53.953242px;}
.ha_c01086{height:63.763920px;}
.h4_c01086{height:64.546875px;}
.h7_c01086{height:1262.865000px;}
.h0_c01086{height:1262.880000px;}
.h1_c01086{height:1263.000000px;}
.w3_c01086{width:197.130000px;}
.w2_c01086{width:892.957500px;}
.w0_c01086{width:892.980000px;}
.w1_c01086{width:893.250000px;}
.x0_c01086{left:0.000000px;}
.x2_c01086{left:138.276000px;}
.xa_c01086{left:156.630000px;}
.x1_c01086{left:169.950000px;}
.x5_c01086{left:191.370000px;}
.x6_c01086{left:351.975000px;}
.x9_c01086{left:354.315000px;}
.x4_c01086{left:424.335000px;}
.x7_c01086{left:722.287500px;}
.x3_c01086{left:738.510000px;}
.x8_c01086{left:742.290000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls3_c01086{letter-spacing:-0.272533pt;}
.ls5_c01086{letter-spacing:-0.220267pt;}
.ls4_c01086{letter-spacing:-0.161067pt;}
.ls6_c01086{letter-spacing:-0.135467pt;}
.ls2_c01086{letter-spacing:-0.047467pt;}
.ls1_c01086{letter-spacing:0.000000pt;}
.ls0_c01086{letter-spacing:0.256000pt;}
.ws1_c01086{word-spacing:-18.048000pt;}
.ws2_c01086{word-spacing:-17.792000pt;}
.ws3_c01086{word-spacing:-14.767360pt;}
.ws0_c01086{word-spacing:-14.494827pt;}
.ws4_c01086{word-spacing:0.000000pt;}
._1_c01086{margin-left:-2.475697pt;}
._0_c01086{margin-left:-1.236303pt;}
._5_c01086{width:1.047393pt;}
._4_c01086{width:2.088607pt;}
._6_c01086{width:2.990441pt;}
._13_c01086{width:4.352000pt;}
._e_c01086{width:6.144000pt;}
._a_c01086{width:8.039598pt;}
._9_c01086{width:9.152000pt;}
._8_c01086{width:10.880000pt;}
._3_c01086{width:12.298688pt;}
._2_c01086{width:14.016000pt;}
._10_c01086{width:16.696812pt;}
._f_c01086{width:19.031393pt;}
._d_c01086{width:19.924303pt;}
._c_c01086{width:20.928000pt;}
._7_c01086{width:27.712000pt;}
._12_c01086{width:43.584000pt;}
._11_c01086{width:44.544000pt;}
._b_c01086{width:880.746880pt;}
.fs4_c01086{font-size:34.560000pt;}
.fs3_c01086{font-size:42.880000pt;}
.fs2_c01086{font-size:53.120000pt;}
.fs0_c01086{font-size:58.880000pt;}
.fs1_c01086{font-size:64.000000pt;}
.y0_c01086{bottom:0.000000pt;}
.y23_c01086{bottom:10.066667pt;}
.y4_c01086{bottom:63.232000pt;}
.y3_c01086{bottom:93.792000pt;}
.y21_c01086{bottom:110.912000pt;}
.y20_c01086{bottom:115.552000pt;}
.y1f_c01086{bottom:140.506667pt;}
.y22_c01086{bottom:166.440000pt;}
.y1e_c01086{bottom:185.466667pt;}
.y1d_c01086{bottom:205.306667pt;}
.y1c_c01086{bottom:225.146667pt;}
.y1b_c01086{bottom:244.986667pt;}
.y19_c01086{bottom:275.746667pt;}
.y1a_c01086{bottom:281.026667pt;}
.y18_c01086{bottom:295.426667pt;}
.y17_c01086{bottom:315.266667pt;}
.y16_c01086{bottom:335.106667pt;}
.y15_c01086{bottom:355.106667pt;}
.y14_c01086{bottom:374.946667pt;}
.y13_c01086{bottom:394.786667pt;}
.y12_c01086{bottom:414.626667pt;}
.y11_c01086{bottom:434.466667pt;}
.y10_c01086{bottom:464.386667pt;}
.yf_c01086{bottom:488.546667pt;}
.ye_c01086{bottom:833.733333pt;}
.yd_c01086{bottom:853.413333pt;}
.yc_c01086{bottom:873.253333pt;}
.yb_c01086{bottom:893.253333pt;}
.ya_c01086{bottom:913.093333pt;}
.y9_c01086{bottom:932.933333pt;}
.y8_c01086{bottom:952.773333pt;}
.y7_c01086{bottom:972.613333pt;}
.y6_c01086{bottom:992.453333pt;}
.y5_c01086{bottom:1012.320000pt;}
.y2_c01086{bottom:1031.200000pt;}
.y1_c01086{bottom:1062.080000pt;}
.hb_c01086{height:22.240000pt;}
.h9_c01086{height:36.875520pt;}
.h8_c01086{height:38.441250pt;}
.h3_c01086{height:44.468750pt;}
.h2_c01086{height:44.648750pt;}
.h6_c01086{height:47.491563pt;}
.h5_c01086{height:47.621250pt;}
.hc_c01086{height:47.958438pt;}
.ha_c01086{height:56.679040pt;}
.h4_c01086{height:57.375000pt;}
.h7_c01086{height:1122.546667pt;}
.h0_c01086{height:1122.560000pt;}
.h1_c01086{height:1122.666667pt;}
.w3_c01086{width:175.226667pt;}
.w2_c01086{width:793.740000pt;}
.w0_c01086{width:793.760000pt;}
.w1_c01086{width:794.000000pt;}
.x0_c01086{left:0.000000pt;}
.x2_c01086{left:122.912000pt;}
.xa_c01086{left:139.226667pt;}
.x1_c01086{left:151.066667pt;}
.x5_c01086{left:170.106667pt;}
.x6_c01086{left:312.866667pt;}
.x9_c01086{left:314.946667pt;}
.x4_c01086{left:377.186667pt;}
.x7_c01086{left:642.033333pt;}
.x3_c01086{left:656.453333pt;}
.x8_c01086{left:659.813333pt;}
}





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

.ir_c01087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01087;src:url('chunks/assets/font_9a87ee6604d13825b318291c.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01087;src:url('chunks/assets/font_69fea08a4ad506243d574c3c.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01087;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;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:ff5_c01087;src:url('chunks/assets/font_f041efcf746f4f6f5b8ab22f.woff2')format("woff");}.ff5_c01087{font-family:ff5_c01087;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01087;src:url('chunks/assets/font_99e4aec08d659d193f9df263.woff2')format("woff");}.ff6_c01087{font-family:ff6_c01087;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01087;src:url('chunks/assets/font_018c3005fde0a71757b610f1.woff2')format("woff");}.ff7_c01087{font-family:ff7_c01087;line-height:1.181152;font-style:normal;font-weight: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_c01087;src:url('chunks/assets/font_a31a28101ef876ef7184c681.woff2')format("woff");}.ff8_c01087{font-family:ff8_c01087;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.ls5_c01087{letter-spacing:-0.576000px;}
.ls6_c01087{letter-spacing:-0.247800px;}
.ls3_c01087{letter-spacing:-0.181200px;}
.ls2_c01087{letter-spacing:0.000000px;}
.ls4_c01087{letter-spacing:0.144000px;}
.ls1_c01087{letter-spacing:0.152400px;}
.ls0_c01087{letter-spacing:0.288000px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01087{word-spacing:-21.187920px;}
.ws1_c01087{word-spacing:-21.035520px;}
.ws0_c01087{word-spacing:-20.016000px;}
.ws3_c01087{word-spacing:0.000000px;}
._10_c01087{margin-left:-5.652024px;}
._d_c01087{margin-left:-4.320000px;}
._2_c01087{margin-left:-2.401330px;}
._0_c01087{margin-left:-1.258891px;}
._1_c01087{width:1.666915px;}
._8_c01087{width:3.651278px;}
._f_c01087{width:4.896000px;}
._7_c01087{width:6.552000px;}
._a_c01087{width:7.776000px;}
._b_c01087{width:9.144000px;}
._c_c01087{width:11.016000px;}
._e_c01087{width:14.256000px;}
._9_c01087{width:15.912000px;}
._4_c01087{width:17.496000px;}
._3_c01087{width:18.504000px;}
._5_c01087{width:30.096000px;}
._6_c01087{width:31.513133px;}
.fc0_c01087{color:rgb(0,0,0);}
.fs4_c01087{font-size:38.880000px;}
.fs2_c01087{font-size:48.240000px;}
.fs6_c01087{font-size:54.000000px;}
.fs5_c01087{font-size:59.760000px;}
.fs0_c01087{font-size:66.240000px;}
.fs1_c01087{font-size:72.000000px;}
.fs3_c01087{font-size:84.240000px;}
.y0_c01087{bottom:0.000000px;}
.y4_c01087{bottom:71.136000px;}
.y3_c01087{bottom:105.516000px;}
.y34_c01087{bottom:138.456000px;}
.y33_c01087{bottom:157.890000px;}
.y32_c01087{bottom:177.510000px;}
.y31_c01087{bottom:182.730000px;}
.y30_c01087{bottom:195.870000px;}
.y2f_c01087{bottom:201.090000px;}
.y2e_c01087{bottom:214.050000px;}
.y2d_c01087{bottom:219.270000px;}
.y2c_c01087{bottom:247.350000px;}
.y2b_c01087{bottom:304.455000px;}
.y29_c01087{bottom:341.535000px;}
.y2a_c01087{bottom:347.475000px;}
.y28_c01087{bottom:363.675000px;}
.y27_c01087{bottom:385.815000px;}
.y26_c01087{bottom:408.495000px;}
.y25_c01087{bottom:430.815000px;}
.y24_c01087{bottom:453.135000px;}
.y23_c01087{bottom:475.455000px;}
.y22_c01087{bottom:497.595000px;}
.y21_c01087{bottom:519.915000px;}
.y20_c01087{bottom:542.235000px;}
.y1f_c01087{bottom:564.585000px;}
.y1e_c01087{bottom:586.905000px;}
.y1d_c01087{bottom:609.225000px;}
.y1c_c01087{bottom:631.725000px;}
.y1b_c01087{bottom:654.045000px;}
.y1a_c01087{bottom:676.365000px;}
.y19_c01087{bottom:698.685000px;}
.y18_c01087{bottom:721.005000px;}
.y17_c01087{bottom:743.325000px;}
.y16_c01087{bottom:765.645000px;}
.y15_c01087{bottom:800.205000px;}
.y14_c01087{bottom:822.345000px;}
.y13_c01087{bottom:844.665000px;}
.y12_c01087{bottom:867.030000px;}
.y11_c01087{bottom:889.350000px;}
.y10_c01087{bottom:911.670000px;}
.yf_c01087{bottom:932.910000px;}
.ye_c01087{bottom:955.950000px;}
.yd_c01087{bottom:993.030000px;}
.yc_c01087{bottom:1027.410000px;}
.yb_c01087{bottom:1049.550000px;}
.ya_c01087{bottom:1071.870000px;}
.y8_c01087{bottom:1094.190000px;}
.y9_c01087{bottom:1100.130000px;}
.y7_c01087{bottom:1116.510000px;}
.y5_c01087{bottom:1138.860000px;}
.y6_c01087{bottom:1144.800000px;}
.y2_c01087{bottom:1160.100000px;}
.y1_c01087{bottom:1194.840000px;}
.h9_c01087{height:41.484960px;}
.h6_c01087{height:43.246406px;}
.h2_c01087{height:48.062812px;}
.h3_c01087{height:50.027344px;}
.ha_c01087{height:63.763920px;}
.h4_c01087{height:64.546875px;}
.h8_c01087{height:75.519844px;}
.h7_c01087{height:87.859687px;}
.h5_c01087{height:1262.865000px;}
.h0_c01087{height:1262.880000px;}
.h1_c01087{height:1263.000000px;}
.w2_c01087{width:892.957500px;}
.w0_c01087{width:892.980000px;}
.w1_c01087{width:893.250000px;}
.x0_c01087{left:0.000000px;}
.x1_c01087{left:138.276000px;}
.x9_c01087{left:156.630000px;}
.x2_c01087{left:316.312500px;}
.x3_c01087{left:336.315000px;}
.x8_c01087{left:354.315000px;}
.x6_c01087{left:506.782500px;}
.x7_c01087{left:526.785000px;}
.x4_c01087{left:618.022500px;}
.x5_c01087{left:638.025000px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls5_c01087{letter-spacing:-0.512000pt;}
.ls6_c01087{letter-spacing:-0.220267pt;}
.ls3_c01087{letter-spacing:-0.161067pt;}
.ls2_c01087{letter-spacing:0.000000pt;}
.ls4_c01087{letter-spacing:0.128000pt;}
.ls1_c01087{letter-spacing:0.135467pt;}
.ls0_c01087{letter-spacing:0.256000pt;}
.ws2_c01087{word-spacing:-18.833707pt;}
.ws1_c01087{word-spacing:-18.698240pt;}
.ws0_c01087{word-spacing:-17.792000pt;}
.ws3_c01087{word-spacing:0.000000pt;}
._10_c01087{margin-left:-5.024021pt;}
._d_c01087{margin-left:-3.840000pt;}
._2_c01087{margin-left:-2.134515pt;}
._0_c01087{margin-left:-1.119014pt;}
._1_c01087{width:1.481702pt;}
._8_c01087{width:3.245581pt;}
._f_c01087{width:4.352000pt;}
._7_c01087{width:5.824000pt;}
._a_c01087{width:6.912000pt;}
._b_c01087{width:8.128000pt;}
._c_c01087{width:9.792000pt;}
._e_c01087{width:12.672000pt;}
._9_c01087{width:14.144000pt;}
._4_c01087{width:15.552000pt;}
._3_c01087{width:16.448000pt;}
._5_c01087{width:26.752000pt;}
._6_c01087{width:28.011674pt;}
.fs4_c01087{font-size:34.560000pt;}
.fs2_c01087{font-size:42.880000pt;}
.fs6_c01087{font-size:48.000000pt;}
.fs5_c01087{font-size:53.120000pt;}
.fs0_c01087{font-size:58.880000pt;}
.fs1_c01087{font-size:64.000000pt;}
.fs3_c01087{font-size:74.880000pt;}
.y0_c01087{bottom:0.000000pt;}
.y4_c01087{bottom:63.232000pt;}
.y3_c01087{bottom:93.792000pt;}
.y34_c01087{bottom:123.072000pt;}
.y33_c01087{bottom:140.346667pt;}
.y32_c01087{bottom:157.786667pt;}
.y31_c01087{bottom:162.426667pt;}
.y30_c01087{bottom:174.106667pt;}
.y2f_c01087{bottom:178.746667pt;}
.y2e_c01087{bottom:190.266667pt;}
.y2d_c01087{bottom:194.906667pt;}
.y2c_c01087{bottom:219.866667pt;}
.y2b_c01087{bottom:270.626667pt;}
.y29_c01087{bottom:303.586667pt;}
.y2a_c01087{bottom:308.866667pt;}
.y28_c01087{bottom:323.266667pt;}
.y27_c01087{bottom:342.946667pt;}
.y26_c01087{bottom:363.106667pt;}
.y25_c01087{bottom:382.946667pt;}
.y24_c01087{bottom:402.786667pt;}
.y23_c01087{bottom:422.626667pt;}
.y22_c01087{bottom:442.306667pt;}
.y21_c01087{bottom:462.146667pt;}
.y20_c01087{bottom:481.986667pt;}
.y1f_c01087{bottom:501.853333pt;}
.y1e_c01087{bottom:521.693333pt;}
.y1d_c01087{bottom:541.533333pt;}
.y1c_c01087{bottom:561.533333pt;}
.y1b_c01087{bottom:581.373333pt;}
.y1a_c01087{bottom:601.213333pt;}
.y19_c01087{bottom:621.053333pt;}
.y18_c01087{bottom:640.893333pt;}
.y17_c01087{bottom:660.733333pt;}
.y16_c01087{bottom:680.573333pt;}
.y15_c01087{bottom:711.293333pt;}
.y14_c01087{bottom:730.973333pt;}
.y13_c01087{bottom:750.813333pt;}
.y12_c01087{bottom:770.693333pt;}
.y11_c01087{bottom:790.533333pt;}
.y10_c01087{bottom:810.373333pt;}
.yf_c01087{bottom:829.253333pt;}
.ye_c01087{bottom:849.733333pt;}
.yd_c01087{bottom:882.693333pt;}
.yc_c01087{bottom:913.253333pt;}
.yb_c01087{bottom:932.933333pt;}
.ya_c01087{bottom:952.773333pt;}
.y8_c01087{bottom:972.613333pt;}
.y9_c01087{bottom:977.893333pt;}
.y7_c01087{bottom:992.453333pt;}
.y5_c01087{bottom:1012.320000pt;}
.y6_c01087{bottom:1017.600000pt;}
.y2_c01087{bottom:1031.200000pt;}
.y1_c01087{bottom:1062.080000pt;}
.h9_c01087{height:36.875520pt;}
.h6_c01087{height:38.441250pt;}
.h2_c01087{height:42.722500pt;}
.h3_c01087{height:44.468750pt;}
.ha_c01087{height:56.679040pt;}
.h4_c01087{height:57.375000pt;}
.h8_c01087{height:67.128750pt;}
.h7_c01087{height:78.097500pt;}
.h5_c01087{height:1122.546667pt;}
.h0_c01087{height:1122.560000pt;}
.h1_c01087{height:1122.666667pt;}
.w2_c01087{width:793.740000pt;}
.w0_c01087{width:793.760000pt;}
.w1_c01087{width:794.000000pt;}
.x0_c01087{left:0.000000pt;}
.x1_c01087{left:122.912000pt;}
.x9_c01087{left:139.226667pt;}
.x2_c01087{left:281.166667pt;}
.x3_c01087{left:298.946667pt;}
.x8_c01087{left:314.946667pt;}
.x6_c01087{left:450.473333pt;}
.x7_c01087{left:468.253333pt;}
.x4_c01087{left:549.353333pt;}
.x5_c01087{left:567.133333pt;}
}





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

.ir_c01088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01088;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01088;src:url('chunks/assets/font_47c350479c4a8d27f589ba28.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01088;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff4_c01088{font-family:ff4_c01088;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:ff5_c01088;src:url('chunks/assets/font_9b97df228562212b350a95ca.woff2')format("woff");}.ff5_c01088{font-family:ff5_c01088;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01088;src:url('chunks/assets/font_44d2b2342e48e147a0694e68.woff2')format("woff");}.ff6_c01088{font-family:ff6_c01088;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01088;src:url('chunks/assets/font_a09f605e7ebfed0511a71f3e.woff2')format("woff");}.ff7_c01088{font-family:ff7_c01088;line-height:1.104492;font-style:normal;font-weight: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_c01088;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff8_c01088{font-family:ff8_c01088;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls2_c01088{letter-spacing:-0.720000px;}
.ls4_c01088{letter-spacing:-0.247800px;}
.ls3_c01088{letter-spacing:-0.181200px;}
.ls1_c01088{letter-spacing:0.000000px;}
.ls0_c01088{letter-spacing:0.144000px;}
.ls5_c01088{letter-spacing:0.930000px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:-21.965520px;}
.ws1_c01088{word-spacing:0.000000px;}
._0_c01088{margin-left:-1.390841px;}
._2_c01088{width:1.427976px;}
._1_c01088{width:872.760000px;}
.fc1_c01088{color:transparent;}
.fc0_c01088{color:rgb(0,0,0);}
.fs5_c01088{font-size:38.880000px;}
.fs4_c01088{font-size:48.240000px;}
.fs3_c01088{font-size:59.760000px;}
.fs0_c01088{font-size:66.240000px;}
.fs1_c01088{font-size:72.000000px;}
.fs2_c01088{font-size:84.240000px;}
.y21_c01088{bottom:-1.965000px;}
.y0_c01088{bottom:0.000000px;}
.y1f_c01088{bottom:7.560000px;}
.y1d_c01088{bottom:7.740000px;}
.ya_c01088{bottom:17.640000px;}
.yc_c01088{bottom:17.820000px;}
.y4_c01088{bottom:71.136000px;}
.y3_c01088{bottom:105.516000px;}
.y1b_c01088{bottom:138.456000px;}
.y1a_c01088{bottom:157.890000px;}
.y19_c01088{bottom:177.510000px;}
.y18_c01088{bottom:197.310000px;}
.y17_c01088{bottom:202.530000px;}
.y16_c01088{bottom:230.430000px;}
.y14_c01088{bottom:396.435000px;}
.y15_c01088{bottom:402.375000px;}
.y13_c01088{bottom:418.575000px;}
.y12_c01088{bottom:440.895000px;}
.y11_c01088{bottom:463.215000px;}
.y10_c01088{bottom:496.695000px;}
.yf_c01088{bottom:510.555000px;}
.ye_c01088{bottom:544.935000px;}
.yd_c01088{bottom:579.345000px;}
.yb_c01088{bottom:613.725000px;}
.y9_c01088{bottom:648.105000px;}
.y8_c01088{bottom:700.125000px;}
.y1e_c01088{bottom:703.365000px;}
.y1c_c01088{bottom:704.805000px;}
.y7_c01088{bottom:730.365000px;}
.y20_c01088{bottom:872.775000px;}
.y6_c01088{bottom:1113.270000px;}
.y5_c01088{bottom:1136.340000px;}
.y2_c01088{bottom:1160.100000px;}
.y1_c01088{bottom:1194.840000px;}
.h12_c01088{height:11.700000px;}
.h11_c01088{height:21.240000px;}
.hf_c01088{height:21.420000px;}
.h6_c01088{height:34.200000px;}
.h9_c01088{height:34.365000px;}
.h7_c01088{height:34.380000px;}
.h8_c01088{height:34.410000px;}
.hd_c01088{height:41.484960px;}
.hc_c01088{height:43.246406px;}
.h3_c01088{height:50.027344px;}
.h2_c01088{height:50.229844px;}
.h10_c01088{height:53.428008px;}
.ha_c01088{height:53.573906px;}
.h13_c01088{height:53.953242px;}
.he_c01088{height:63.763920px;}
.h5_c01088{height:64.546875px;}
.h4_c01088{height:87.859687px;}
.hb_c01088{height:1262.865000px;}
.h0_c01088{height:1262.880000px;}
.h1_c01088{height:1263.000000px;}
.w9_c01088{width:21.622500px;}
.w2_c01088{width:42.111000px;}
.w4_c01088{width:47.916000px;}
.w8_c01088{width:199.830000px;}
.w7_c01088{width:232.095000px;}
.w5_c01088{width:265.335000px;}
.w3_c01088{width:271.095000px;}
.w6_c01088{width:892.957500px;}
.w0_c01088{width:892.980000px;}
.w1_c01088{width:893.250000px;}
.x0_c01088{left:0.000000px;}
.x5_c01088{left:8.091000px;}
.xe_c01088{left:10.830000px;}
.x2_c01088{left:138.276000px;}
.xa_c01088{left:156.630000px;}
.x1_c01088{left:169.950000px;}
.x6_c01088{left:180.405000px;}
.xc_c01088{left:221.085000px;}
.xd_c01088{left:290.565000px;}
.x9_c01088{left:354.315000px;}
.x4_c01088{left:452.415000px;}
.xb_c01088{left:461.595000px;}
.x8_c01088{left:478.492500px;}
.x7_c01088{left:499.440000px;}
.x3_c01088{left:738.510000px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls2_c01088{letter-spacing:-0.640000pt;}
.ls4_c01088{letter-spacing:-0.220267pt;}
.ls3_c01088{letter-spacing:-0.161067pt;}
.ls1_c01088{letter-spacing:0.000000pt;}
.ls0_c01088{letter-spacing:0.128000pt;}
.ls5_c01088{letter-spacing:0.826667pt;}
.ws0_c01088{word-spacing:-19.524907pt;}
.ws1_c01088{word-spacing:0.000000pt;}
._0_c01088{margin-left:-1.236303pt;}
._2_c01088{width:1.269312pt;}
._1_c01088{width:775.786667pt;}
.fs5_c01088{font-size:34.560000pt;}
.fs4_c01088{font-size:42.880000pt;}
.fs3_c01088{font-size:53.120000pt;}
.fs0_c01088{font-size:58.880000pt;}
.fs1_c01088{font-size:64.000000pt;}
.fs2_c01088{font-size:74.880000pt;}
.y21_c01088{bottom:-1.746667pt;}
.y0_c01088{bottom:0.000000pt;}
.y1f_c01088{bottom:6.720000pt;}
.y1d_c01088{bottom:6.880000pt;}
.ya_c01088{bottom:15.680000pt;}
.yc_c01088{bottom:15.840000pt;}
.y4_c01088{bottom:63.232000pt;}
.y3_c01088{bottom:93.792000pt;}
.y1b_c01088{bottom:123.072000pt;}
.y1a_c01088{bottom:140.346667pt;}
.y19_c01088{bottom:157.786667pt;}
.y18_c01088{bottom:175.386667pt;}
.y17_c01088{bottom:180.026667pt;}
.y16_c01088{bottom:204.826667pt;}
.y14_c01088{bottom:352.386667pt;}
.y15_c01088{bottom:357.666667pt;}
.y13_c01088{bottom:372.066667pt;}
.y12_c01088{bottom:391.906667pt;}
.y11_c01088{bottom:411.746667pt;}
.y10_c01088{bottom:441.506667pt;}
.yf_c01088{bottom:453.826667pt;}
.ye_c01088{bottom:484.386667pt;}
.yd_c01088{bottom:514.973333pt;}
.yb_c01088{bottom:545.533333pt;}
.y9_c01088{bottom:576.093333pt;}
.y8_c01088{bottom:622.333333pt;}
.y1e_c01088{bottom:625.213333pt;}
.y1c_c01088{bottom:626.493333pt;}
.y7_c01088{bottom:649.213333pt;}
.y20_c01088{bottom:775.800000pt;}
.y6_c01088{bottom:989.573333pt;}
.y5_c01088{bottom:1010.080000pt;}
.y2_c01088{bottom:1031.200000pt;}
.y1_c01088{bottom:1062.080000pt;}
.h12_c01088{height:10.400000pt;}
.h11_c01088{height:18.880000pt;}
.hf_c01088{height:19.040000pt;}
.h6_c01088{height:30.400000pt;}
.h9_c01088{height:30.546667pt;}
.h7_c01088{height:30.560000pt;}
.h8_c01088{height:30.586667pt;}
.hd_c01088{height:36.875520pt;}
.hc_c01088{height:38.441250pt;}
.h3_c01088{height:44.468750pt;}
.h2_c01088{height:44.648750pt;}
.h10_c01088{height:47.491563pt;}
.ha_c01088{height:47.621250pt;}
.h13_c01088{height:47.958438pt;}
.he_c01088{height:56.679040pt;}
.h5_c01088{height:57.375000pt;}
.h4_c01088{height:78.097500pt;}
.hb_c01088{height:1122.546667pt;}
.h0_c01088{height:1122.560000pt;}
.h1_c01088{height:1122.666667pt;}
.w9_c01088{width:19.220000pt;}
.w2_c01088{width:37.432000pt;}
.w4_c01088{width:42.592000pt;}
.w8_c01088{width:177.626667pt;}
.w7_c01088{width:206.306667pt;}
.w5_c01088{width:235.853333pt;}
.w3_c01088{width:240.973333pt;}
.w6_c01088{width:793.740000pt;}
.w0_c01088{width:793.760000pt;}
.w1_c01088{width:794.000000pt;}
.x0_c01088{left:0.000000pt;}
.x5_c01088{left:7.192000pt;}
.xe_c01088{left:9.626667pt;}
.x2_c01088{left:122.912000pt;}
.xa_c01088{left:139.226667pt;}
.x1_c01088{left:151.066667pt;}
.x6_c01088{left:160.360000pt;}
.xc_c01088{left:196.520000pt;}
.xd_c01088{left:258.280000pt;}
.x9_c01088{left:314.946667pt;}
.x4_c01088{left:402.146667pt;}
.xb_c01088{left:410.306667pt;}
.x8_c01088{left:425.326667pt;}
.x7_c01088{left:443.946667pt;}
.x3_c01088{left:656.453333pt;}
}





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

.ir_c01089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01089;src:url('chunks/assets/font_da4d0048ea8c1cac66f54101.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01089;src:url('chunks/assets/font_501c82f6fab5ab3a95bdf7a2.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01089;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;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:ff5_c01089;src:url('chunks/assets/font_b8928db9c31ba45458273800.woff2')format("woff");}.ff5_c01089{font-family:ff5_c01089;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01089;src:url('chunks/assets/font_72c618a0b334aa858595bd90.woff2')format("woff");}.ff6_c01089{font-family:ff6_c01089;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01089;src:url('chunks/assets/font_771899e155b2bf05ad6ea042.woff2')format("woff");}.ff7_c01089{font-family:ff7_c01089;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01089;src:url('chunks/assets/font_320dc1d8b1686029f289a66e.woff2')format("woff");}.ff8_c01089{font-family:ff8_c01089;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01089{vertical-align:0.000000px;}
.ls3_c01089{letter-spacing:-0.432000px;}
.ls6_c01089{letter-spacing:-0.247800px;}
.ls4_c01089{letter-spacing:-0.181200px;}
.ls2_c01089{letter-spacing:-0.053400px;}
.ls1_c01089{letter-spacing:0.000000px;}
.ls5_c01089{letter-spacing:0.144000px;}
.ls0_c01089{letter-spacing:0.288000px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01089{word-spacing:0.000000px;}
._e_c01089{margin-left:-3.600000px;}
._d_c01089{margin-left:-2.520000px;}
._0_c01089{margin-left:-1.258891px;}
._4_c01089{width:1.117109px;}
._b_c01089{width:2.410891px;}
._16_c01089{width:3.456000px;}
._11_c01089{width:4.642891px;}
._5_c01089{width:6.264000px;}
._3_c01089{width:8.026891px;}
._2_c01089{width:9.288000px;}
._8_c01089{width:16.594891px;}
._7_c01089{width:18.144000px;}
._10_c01089{width:21.024000px;}
._f_c01089{width:22.104000px;}
._12_c01089{width:23.338915px;}
._c_c01089{width:27.360000px;}
._17_c01089{width:28.546891px;}
._18_c01089{width:29.592000px;}
._14_c01089{width:31.464000px;}
._13_c01089{width:32.616000px;}
._15_c01089{width:33.840000px;}
._6_c01089{width:37.440000px;}
._a_c01089{width:45.469109px;}
._9_c01089{width:46.546891px;}
._1_c01089{width:901.560240px;}
.fc0_c01089{color:rgb(0,0,0);}
.fs4_c01089{font-size:38.880000px;}
.fs3_c01089{font-size:48.240000px;}
.fs5_c01089{font-size:54.000000px;}
.fs2_c01089{font-size:59.760000px;}
.fs0_c01089{font-size:66.240000px;}
.fs1_c01089{font-size:72.000000px;}
.y0_c01089{bottom:0.000000px;}
.y28_c01089{bottom:7.725000px;}
.y2a_c01089{bottom:7.740000px;}
.y2c_c01089{bottom:8.265000px;}
.y4_c01089{bottom:71.136000px;}
.y3_c01089{bottom:105.516000px;}
.y26_c01089{bottom:124.776000px;}
.y25_c01089{bottom:142.956000px;}
.y24_c01089{bottom:161.310000px;}
.y23_c01089{bottom:166.530000px;}
.y22_c01089{bottom:179.490000px;}
.y21_c01089{bottom:197.670000px;}
.y20_c01089{bottom:202.890000px;}
.y1f_c01089{bottom:230.970000px;}
.y2b_c01089{bottom:263.385000px;}
.y1e_c01089{bottom:273.270000px;}
.y1d_c01089{bottom:295.635000px;}
.y1c_c01089{bottom:317.955000px;}
.y1b_c01089{bottom:340.275000px;}
.y1a_c01089{bottom:362.595000px;}
.y19_c01089{bottom:384.915000px;}
.y17_c01089{bottom:407.595000px;}
.y18_c01089{bottom:412.815000px;}
.y16_c01089{bottom:429.915000px;}
.y15_c01089{bottom:452.055000px;}
.y14_c01089{bottom:474.375000px;}
.y13_c01089{bottom:496.695000px;}
.y12_c01089{bottom:519.015000px;}
.y11_c01089{bottom:541.335000px;}
.yf_c01089{bottom:563.655000px;}
.y10_c01089{bottom:569.625000px;}
.ye_c01089{bottom:586.005000px;}
.yd_c01089{bottom:608.325000px;}
.yc_c01089{bottom:630.825000px;}
.yb_c01089{bottom:653.145000px;}
.ya_c01089{bottom:675.465000px;}
.y9_c01089{bottom:697.785000px;}
.y8_c01089{bottom:732.345000px;}
.y7_c01089{bottom:766.545000px;}
.y6_c01089{bottom:800.925000px;}
.y27_c01089{bottom:803.820000px;}
.y29_c01089{bottom:804.345000px;}
.y5_c01089{bottom:830.985000px;}
.y2_c01089{bottom:1160.100000px;}
.y1_c01089{bottom:1194.840000px;}
.hd_c01089{height:21.420000px;}
.hf_c01089{height:21.982500px;}
.hb_c01089{height:41.484960px;}
.ha_c01089{height:43.128633px;}
.h8_c01089{height:43.246406px;}
.h2_c01089{height:48.062812px;}
.h3_c01089{height:50.027344px;}
.he_c01089{height:53.428008px;}
.hc_c01089{height:63.763920px;}
.h9_c01089{height:64.371094px;}
.h6_c01089{height:64.546875px;}
.h5_c01089{height:65.003906px;}
.h4_c01089{height:75.093750px;}
.h7_c01089{height:1262.865000px;}
.h0_c01089{height:1262.880000px;}
.h1_c01089{height:1263.000000px;}
.w3_c01089{width:187.950000px;}
.w4_c01089{width:197.505000px;}
.w5_c01089{width:255.990000px;}
.w2_c01089{width:892.957500px;}
.w0_c01089{width:892.980000px;}
.w1_c01089{width:893.250000px;}
.x0_c01089{left:0.000000px;}
.x1_c01089{left:138.276000px;}
.x9_c01089{left:156.630000px;}
.xa_c01089{left:220.185000px;}
.x8_c01089{left:354.315000px;}
.x3_c01089{left:405.975000px;}
.x2_c01089{left:450.795000px;}
.xb_c01089{left:461.055000px;}
.x4_c01089{left:566.902500px;}
.x5_c01089{left:586.905000px;}
.x6_c01089{left:621.262500px;}
.x7_c01089{left:641.265000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls3_c01089{letter-spacing:-0.384000pt;}
.ls6_c01089{letter-spacing:-0.220267pt;}
.ls4_c01089{letter-spacing:-0.161067pt;}
.ls2_c01089{letter-spacing:-0.047467pt;}
.ls1_c01089{letter-spacing:0.000000pt;}
.ls5_c01089{letter-spacing:0.128000pt;}
.ls0_c01089{letter-spacing:0.256000pt;}
.ws0_c01089{word-spacing:0.000000pt;}
._e_c01089{margin-left:-3.200000pt;}
._d_c01089{margin-left:-2.240000pt;}
._0_c01089{margin-left:-1.119014pt;}
._4_c01089{width:0.992986pt;}
._b_c01089{width:2.143014pt;}
._16_c01089{width:3.072000pt;}
._11_c01089{width:4.127014pt;}
._5_c01089{width:5.568000pt;}
._3_c01089{width:7.135014pt;}
._2_c01089{width:8.256000pt;}
._8_c01089{width:14.751014pt;}
._7_c01089{width:16.128000pt;}
._10_c01089{width:18.688000pt;}
._f_c01089{width:19.648000pt;}
._12_c01089{width:20.745702pt;}
._c_c01089{width:24.320000pt;}
._17_c01089{width:25.375014pt;}
._18_c01089{width:26.304000pt;}
._14_c01089{width:27.968000pt;}
._13_c01089{width:28.992000pt;}
._15_c01089{width:30.080000pt;}
._6_c01089{width:33.280000pt;}
._a_c01089{width:40.416986pt;}
._9_c01089{width:41.375014pt;}
._1_c01089{width:801.386880pt;}
.fs4_c01089{font-size:34.560000pt;}
.fs3_c01089{font-size:42.880000pt;}
.fs5_c01089{font-size:48.000000pt;}
.fs2_c01089{font-size:53.120000pt;}
.fs0_c01089{font-size:58.880000pt;}
.fs1_c01089{font-size:64.000000pt;}
.y0_c01089{bottom:0.000000pt;}
.y28_c01089{bottom:6.866667pt;}
.y2a_c01089{bottom:6.880000pt;}
.y2c_c01089{bottom:7.346667pt;}
.y4_c01089{bottom:63.232000pt;}
.y3_c01089{bottom:93.792000pt;}
.y26_c01089{bottom:110.912000pt;}
.y25_c01089{bottom:127.072000pt;}
.y24_c01089{bottom:143.386667pt;}
.y23_c01089{bottom:148.026667pt;}
.y22_c01089{bottom:159.546667pt;}
.y21_c01089{bottom:175.706667pt;}
.y20_c01089{bottom:180.346667pt;}
.y1f_c01089{bottom:205.306667pt;}
.y2b_c01089{bottom:234.120000pt;}
.y1e_c01089{bottom:242.906667pt;}
.y1d_c01089{bottom:262.786667pt;}
.y1c_c01089{bottom:282.626667pt;}
.y1b_c01089{bottom:302.466667pt;}
.y1a_c01089{bottom:322.306667pt;}
.y19_c01089{bottom:342.146667pt;}
.y17_c01089{bottom:362.306667pt;}
.y18_c01089{bottom:366.946667pt;}
.y16_c01089{bottom:382.146667pt;}
.y15_c01089{bottom:401.826667pt;}
.y14_c01089{bottom:421.666667pt;}
.y13_c01089{bottom:441.506667pt;}
.y12_c01089{bottom:461.346667pt;}
.y11_c01089{bottom:481.186667pt;}
.yf_c01089{bottom:501.026667pt;}
.y10_c01089{bottom:506.333333pt;}
.ye_c01089{bottom:520.893333pt;}
.yd_c01089{bottom:540.733333pt;}
.yc_c01089{bottom:560.733333pt;}
.yb_c01089{bottom:580.573333pt;}
.ya_c01089{bottom:600.413333pt;}
.y9_c01089{bottom:620.253333pt;}
.y8_c01089{bottom:650.973333pt;}
.y7_c01089{bottom:681.373333pt;}
.y6_c01089{bottom:711.933333pt;}
.y27_c01089{bottom:714.506667pt;}
.y29_c01089{bottom:714.973333pt;}
.y5_c01089{bottom:738.653333pt;}
.y2_c01089{bottom:1031.200000pt;}
.y1_c01089{bottom:1062.080000pt;}
.hd_c01089{height:19.040000pt;}
.hf_c01089{height:19.540000pt;}
.hb_c01089{height:36.875520pt;}
.ha_c01089{height:38.336562pt;}
.h8_c01089{height:38.441250pt;}
.h2_c01089{height:42.722500pt;}
.h3_c01089{height:44.468750pt;}
.he_c01089{height:47.491563pt;}
.hc_c01089{height:56.679040pt;}
.h9_c01089{height:57.218750pt;}
.h6_c01089{height:57.375000pt;}
.h5_c01089{height:57.781250pt;}
.h4_c01089{height:66.750000pt;}
.h7_c01089{height:1122.546667pt;}
.h0_c01089{height:1122.560000pt;}
.h1_c01089{height:1122.666667pt;}
.w3_c01089{width:167.066667pt;}
.w4_c01089{width:175.560000pt;}
.w5_c01089{width:227.546667pt;}
.w2_c01089{width:793.740000pt;}
.w0_c01089{width:793.760000pt;}
.w1_c01089{width:794.000000pt;}
.x0_c01089{left:0.000000pt;}
.x1_c01089{left:122.912000pt;}
.x9_c01089{left:139.226667pt;}
.xa_c01089{left:195.720000pt;}
.x8_c01089{left:314.946667pt;}
.x3_c01089{left:360.866667pt;}
.x2_c01089{left:400.706667pt;}
.xb_c01089{left:409.826667pt;}
.x4_c01089{left:503.913333pt;}
.x5_c01089{left:521.693333pt;}
.x6_c01089{left:552.233333pt;}
.x7_c01089{left:570.013333pt;}
}





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

.ir_c01090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01090;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01090;src:url('chunks/assets/font_131303fb47b1127076594611.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01090;src:url('chunks/assets/font_4a1c4c3c88789e55eea64472.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01090;src:url('chunks/assets/font_95990ab425a1f77d312eda1b.woff2')format("woff");}.ff5_c01090{font-family:ff5_c01090;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01090;src:url('chunks/assets/font_20289f0e3517214cb14bd4ee.woff2')format("woff");}.ff6_c01090{font-family:ff6_c01090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01090;src:url('chunks/assets/font_741dfd124f930d370176fd49.woff2')format("woff");}.ff7_c01090{font-family:ff7_c01090;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01090{vertical-align:0.000000px;}
.ls2_c01090{letter-spacing:-0.720000px;}
.ls5_c01090{letter-spacing:-0.247800px;}
.ls4_c01090{letter-spacing:-0.216000px;}
.ls1_c01090{letter-spacing:-0.181200px;}
.ls0_c01090{letter-spacing:0.000000px;}
.ls3_c01090{letter-spacing:0.144000px;}
.ls6_c01090{letter-spacing:0.567600px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01090{word-spacing:-20.160000px;}
.ws0_c01090{word-spacing:-20.016000px;}
.ws3_c01090{word-spacing:-19.800000px;}
.ws1_c01090{word-spacing:-19.296000px;}
.ws4_c01090{word-spacing:0.000000px;}
._c_c01090{margin-left:-5.568000px;}
._d_c01090{margin-left:-4.464000px;}
._4_c01090{margin-left:-2.929159px;}
._0_c01090{margin-left:-1.390841px;}
._3_c01090{width:1.715976px;}
._5_c01090{width:2.937851px;}
._7_c01090{width:4.051463px;}
._6_c01090{width:5.790258px;}
._2_c01090{width:7.248024px;}
._1_c01090{width:8.352000px;}
._10_c01090{width:9.876024px;}
._f_c01090{width:11.088000px;}
._b_c01090{width:12.168000px;}
._a_c01090{width:13.392000px;}
._9_c01090{width:14.952024px;}
._8_c01090{width:16.128000px;}
._e_c01090{width:17.268024px;}
._11_c01090{width:18.576000px;}
.fc0_c01090{color:rgb(0,0,0);}
.fs3_c01090{font-size:38.880000px;}
.fs2_c01090{font-size:48.240000px;}
.fs5_c01090{font-size:54.000000px;}
.fs4_c01090{font-size:59.760000px;}
.fs0_c01090{font-size:66.240000px;}
.fs1_c01090{font-size:72.000000px;}
.y0_c01090{bottom:0.000000px;}
.y4_c01090{bottom:71.136000px;}
.y3_c01090{bottom:105.516000px;}
.y2c_c01090{bottom:124.776000px;}
.y2b_c01090{bottom:129.996000px;}
.y2a_c01090{bottom:142.956000px;}
.y29_c01090{bottom:148.176000px;}
.y28_c01090{bottom:161.310000px;}
.y27_c01090{bottom:166.530000px;}
.y26_c01090{bottom:179.490000px;}
.y25_c01090{bottom:197.670000px;}
.y24_c01090{bottom:202.890000px;}
.y23_c01090{bottom:230.970000px;}
.y21_c01090{bottom:568.545000px;}
.y22_c01090{bottom:574.485000px;}
.y20_c01090{bottom:590.865000px;}
.y1f_c01090{bottom:613.005000px;}
.y1e_c01090{bottom:635.325000px;}
.y1d_c01090{bottom:657.825000px;}
.y1b_c01090{bottom:680.145000px;}
.y1c_c01090{bottom:686.085000px;}
.y1a_c01090{bottom:702.465000px;}
.y19_c01090{bottom:724.785000px;}
.y18_c01090{bottom:747.105000px;}
.y17_c01090{bottom:769.605000px;}
.y15_c01090{bottom:791.745000px;}
.y16_c01090{bottom:797.685000px;}
.y14_c01090{bottom:814.245000px;}
.y13_c01090{bottom:836.385000px;}
.y12_c01090{bottom:858.750000px;}
.y11_c01090{bottom:893.310000px;}
.yf_c01090{bottom:915.630000px;}
.y10_c01090{bottom:921.570000px;}
.ye_c01090{bottom:937.950000px;}
.yd_c01090{bottom:960.090000px;}
.yc_c01090{bottom:982.410000px;}
.yb_c01090{bottom:1004.910000px;}
.ya_c01090{bottom:1027.230000px;}
.y9_c01090{bottom:1049.730000px;}
.y8_c01090{bottom:1071.870000px;}
.y7_c01090{bottom:1094.190000px;}
.y6_c01090{bottom:1116.510000px;}
.y5_c01090{bottom:1138.860000px;}
.y2_c01090{bottom:1160.100000px;}
.y1_c01090{bottom:1194.840000px;}
.h7_c01090{height:41.484960px;}
.h6_c01090{height:43.246406px;}
.h3_c01090{height:50.027344px;}
.h2_c01090{height:50.229844px;}
.h8_c01090{height:63.763920px;}
.h4_c01090{height:64.546875px;}
.h5_c01090{height:1262.865000px;}
.h0_c01090{height:1262.880000px;}
.h1_c01090{height:1263.000000px;}
.w2_c01090{width:892.957500px;}
.w0_c01090{width:892.980000px;}
.w1_c01090{width:893.250000px;}
.x0_c01090{left:0.000000px;}
.x2_c01090{left:138.276000px;}
.xd_c01090{left:156.630000px;}
.x1_c01090{left:169.950000px;}
.xc_c01090{left:354.315000px;}
.x4_c01090{left:522.262500px;}
.x5_c01090{left:542.265000px;}
.xa_c01090{left:577.702500px;}
.xb_c01090{left:597.705000px;}
.x6_c01090{left:616.222500px;}
.x7_c01090{left:636.225000px;}
.x8_c01090{left:685.162500px;}
.x9_c01090{left:705.210000px;}
.x3_c01090{left:738.510000px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls2_c01090{letter-spacing:-0.640000pt;}
.ls5_c01090{letter-spacing:-0.220267pt;}
.ls4_c01090{letter-spacing:-0.192000pt;}
.ls1_c01090{letter-spacing:-0.161067pt;}
.ls0_c01090{letter-spacing:0.000000pt;}
.ls3_c01090{letter-spacing:0.128000pt;}
.ls6_c01090{letter-spacing:0.504533pt;}
.ws2_c01090{word-spacing:-17.920000pt;}
.ws0_c01090{word-spacing:-17.792000pt;}
.ws3_c01090{word-spacing:-17.600000pt;}
.ws1_c01090{word-spacing:-17.152000pt;}
.ws4_c01090{word-spacing:0.000000pt;}
._c_c01090{margin-left:-4.949333pt;}
._d_c01090{margin-left:-3.968000pt;}
._4_c01090{margin-left:-2.603697pt;}
._0_c01090{margin-left:-1.236303pt;}
._3_c01090{width:1.525312pt;}
._5_c01090{width:2.611423pt;}
._7_c01090{width:3.601300pt;}
._6_c01090{width:5.146896pt;}
._2_c01090{width:6.442688pt;}
._1_c01090{width:7.424000pt;}
._10_c01090{width:8.778688pt;}
._f_c01090{width:9.856000pt;}
._b_c01090{width:10.816000pt;}
._a_c01090{width:11.904000pt;}
._9_c01090{width:13.290688pt;}
._8_c01090{width:14.336000pt;}
._e_c01090{width:15.349355pt;}
._11_c01090{width:16.512000pt;}
.fs3_c01090{font-size:34.560000pt;}
.fs2_c01090{font-size:42.880000pt;}
.fs5_c01090{font-size:48.000000pt;}
.fs4_c01090{font-size:53.120000pt;}
.fs0_c01090{font-size:58.880000pt;}
.fs1_c01090{font-size:64.000000pt;}
.y0_c01090{bottom:0.000000pt;}
.y4_c01090{bottom:63.232000pt;}
.y3_c01090{bottom:93.792000pt;}
.y2c_c01090{bottom:110.912000pt;}
.y2b_c01090{bottom:115.552000pt;}
.y2a_c01090{bottom:127.072000pt;}
.y29_c01090{bottom:131.712000pt;}
.y28_c01090{bottom:143.386667pt;}
.y27_c01090{bottom:148.026667pt;}
.y26_c01090{bottom:159.546667pt;}
.y25_c01090{bottom:175.706667pt;}
.y24_c01090{bottom:180.346667pt;}
.y23_c01090{bottom:205.306667pt;}
.y21_c01090{bottom:505.373333pt;}
.y22_c01090{bottom:510.653333pt;}
.y20_c01090{bottom:525.213333pt;}
.y1f_c01090{bottom:544.893333pt;}
.y1e_c01090{bottom:564.733333pt;}
.y1d_c01090{bottom:584.733333pt;}
.y1b_c01090{bottom:604.573333pt;}
.y1c_c01090{bottom:609.853333pt;}
.y1a_c01090{bottom:624.413333pt;}
.y19_c01090{bottom:644.253333pt;}
.y18_c01090{bottom:664.093333pt;}
.y17_c01090{bottom:684.093333pt;}
.y15_c01090{bottom:703.773333pt;}
.y16_c01090{bottom:709.053333pt;}
.y14_c01090{bottom:723.773333pt;}
.y13_c01090{bottom:743.453333pt;}
.y12_c01090{bottom:763.333333pt;}
.y11_c01090{bottom:794.053333pt;}
.yf_c01090{bottom:813.893333pt;}
.y10_c01090{bottom:819.173333pt;}
.ye_c01090{bottom:833.733333pt;}
.yd_c01090{bottom:853.413333pt;}
.yc_c01090{bottom:873.253333pt;}
.yb_c01090{bottom:893.253333pt;}
.ya_c01090{bottom:913.093333pt;}
.y9_c01090{bottom:933.093333pt;}
.y8_c01090{bottom:952.773333pt;}
.y7_c01090{bottom:972.613333pt;}
.y6_c01090{bottom:992.453333pt;}
.y5_c01090{bottom:1012.320000pt;}
.y2_c01090{bottom:1031.200000pt;}
.y1_c01090{bottom:1062.080000pt;}
.h7_c01090{height:36.875520pt;}
.h6_c01090{height:38.441250pt;}
.h3_c01090{height:44.468750pt;}
.h2_c01090{height:44.648750pt;}
.h8_c01090{height:56.679040pt;}
.h4_c01090{height:57.375000pt;}
.h5_c01090{height:1122.546667pt;}
.h0_c01090{height:1122.560000pt;}
.h1_c01090{height:1122.666667pt;}
.w2_c01090{width:793.740000pt;}
.w0_c01090{width:793.760000pt;}
.w1_c01090{width:794.000000pt;}
.x0_c01090{left:0.000000pt;}
.x2_c01090{left:122.912000pt;}
.xd_c01090{left:139.226667pt;}
.x1_c01090{left:151.066667pt;}
.xc_c01090{left:314.946667pt;}
.x4_c01090{left:464.233333pt;}
.x5_c01090{left:482.013333pt;}
.xa_c01090{left:513.513333pt;}
.xb_c01090{left:531.293333pt;}
.x6_c01090{left:547.753333pt;}
.x7_c01090{left:565.533333pt;}
.x8_c01090{left:609.033333pt;}
.x9_c01090{left:626.853333pt;}
.x3_c01090{left:656.453333pt;}
}





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

.ir_c01091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01091;src:url('chunks/assets/font_47c350479c4a8d27f589ba28.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01091;src:url('chunks/assets/font_00e99823de15c6440839f18f.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01091;src:url('chunks/assets/font_d5a62d9dd19dd3a59b0966c3.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01091;src:url('chunks/assets/font_543f22fa4501b054e0a93bb3.woff2')format("woff");}.ff5_c01091{font-family:ff5_c01091;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01091;src:url('chunks/assets/font_bf0287ef5aad0c6c3b682ff5.woff2')format("woff");}.ff6_c01091{font-family:ff6_c01091;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01091;src:url('chunks/assets/font_837db75e784d654a521e5786.woff2')format("woff");}.ff7_c01091{font-family:ff7_c01091;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01091;src:url('chunks/assets/font_e7bc15b68586811782dab34c.woff2')format("woff");}.ff8_c01091{font-family:ff8_c01091;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01091{vertical-align:0.000000px;}
.ls4_c01091{letter-spacing:-0.432000px;}
.ls6_c01091{letter-spacing:-0.247800px;}
.ls3_c01091{letter-spacing:-0.181200px;}
.ls2_c01091{letter-spacing:-0.053400px;}
.ls1_c01091{letter-spacing:0.000000px;}
.ls0_c01091{letter-spacing:0.152400px;}
.ls5_c01091{letter-spacing:0.288000px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01091{word-spacing:-21.187920px;}
.ws2_c01091{word-spacing:-21.035520px;}
.ws1_c01091{word-spacing:-20.304000px;}
.ws0_c01091{word-spacing:-20.016000px;}
.ws4_c01091{word-spacing:0.000000px;}
._9_c01091{margin-left:-4.385347px;}
._a_c01091{margin-left:-3.384000px;}
._5_c01091{margin-left:-2.382653px;}
._0_c01091{margin-left:-1.258891px;}
._2_c01091{width:1.314600px;}
._8_c01091{width:3.384000px;}
._10_c01091{width:5.616000px;}
._f_c01091{width:6.672024px;}
._12_c01091{width:8.352000px;}
._11_c01091{width:9.720000px;}
._7_c01091{width:12.888000px;}
._6_c01091{width:14.184000px;}
._13_c01091{width:15.408000px;}
._4_c01091{width:16.776000px;}
._3_c01091{width:17.856000px;}
._d_c01091{width:26.856000px;}
._e_c01091{width:28.344024px;}
._c_c01091{width:31.752000px;}
._b_c01091{width:32.904000px;}
._1_c01091{width:890.760360px;}
.fc0_c01091{color:rgb(0,0,0);}
.fs4_c01091{font-size:38.880000px;}
.fs3_c01091{font-size:48.240000px;}
.fs2_c01091{font-size:59.760000px;}
.fs0_c01091{font-size:66.240000px;}
.fs1_c01091{font-size:72.000000px;}
.y0_c01091{bottom:0.000000px;}
.y30_c01091{bottom:10.275000px;}
.y2b_c01091{bottom:10.620000px;}
.y2f_c01091{bottom:28.995000px;}
.y2a_c01091{bottom:29.160000px;}
.y2c_c01091{bottom:47.520000px;}
.y2e_c01091{bottom:47.535000px;}
.y29_c01091{bottom:47.700000px;}
.y4_c01091{bottom:71.136000px;}
.y3_c01091{bottom:105.516000px;}
.y27_c01091{bottom:124.776000px;}
.y26_c01091{bottom:142.956000px;}
.y25_c01091{bottom:161.310000px;}
.y24_c01091{bottom:166.530000px;}
.y23_c01091{bottom:179.490000px;}
.y22_c01091{bottom:197.670000px;}
.y21_c01091{bottom:215.850000px;}
.y20_c01091{bottom:221.070000px;}
.y1f_c01091{bottom:249.150000px;}
.y1e_c01091{bottom:293.115000px;}
.y1d_c01091{bottom:315.435000px;}
.y1c_c01091{bottom:337.755000px;}
.y1b_c01091{bottom:360.255000px;}
.y1a_c01091{bottom:382.575000px;}
.y19_c01091{bottom:404.895000px;}
.y18_c01091{bottom:427.215000px;}
.y2d_c01091{bottom:434.040000px;}
.y17_c01091{bottom:449.535000px;}
.y16_c01091{bottom:471.855000px;}
.y15_c01091{bottom:494.175000px;}
.y14_c01091{bottom:516.495000px;}
.y12_c01091{bottom:538.995000px;}
.y13_c01091{bottom:544.215000px;}
.y11_c01091{bottom:561.315000px;}
.y10_c01091{bottom:583.665000px;}
.yf_c01091{bottom:605.805000px;}
.yd_c01091{bottom:628.305000px;}
.ye_c01091{bottom:634.245000px;}
.yc_c01091{bottom:650.625000px;}
.yb_c01091{bottom:672.945000px;}
.ya_c01091{bottom:695.265000px;}
.y9_c01091{bottom:717.585000px;}
.y8_c01091{bottom:739.905000px;}
.y28_c01091{bottom:766.365000px;}
.y7_c01091{bottom:773.565000px;}
.y6_c01091{bottom:804.165000px;}
.y5_c01091{bottom:831.525000px;}
.y2_c01091{bottom:1160.100000px;}
.y1_c01091{bottom:1194.840000px;}
.hb_c01091{height:41.484960px;}
.ha_c01091{height:43.128633px;}
.h8_c01091{height:43.246406px;}
.h2_c01091{height:48.062812px;}
.h3_c01091{height:50.027344px;}
.h5_c01091{height:53.428008px;}
.h4_c01091{height:53.573906px;}
.he_c01091{height:61.200000px;}
.hd_c01091{height:61.380000px;}
.hc_c01091{height:63.763920px;}
.h9_c01091{height:64.371094px;}
.h6_c01091{height:64.546875px;}
.h7_c01091{height:1262.865000px;}
.h0_c01091{height:1262.880000px;}
.h1_c01091{height:1263.000000px;}
.w3_c01091{width:214.575000px;}
.w4_c01091{width:220.905000px;}
.w5_c01091{width:225.570000px;}
.w2_c01091{width:892.957500px;}
.w0_c01091{width:892.980000px;}
.w1_c01091{width:893.250000px;}
.x0_c01091{left:0.000000px;}
.x1_c01091{left:138.276000px;}
.x8_c01091{left:156.630000px;}
.x5_c01091{left:219.247500px;}
.x9_c01091{left:226.845000px;}
.x6_c01091{left:239.250000px;}
.x7_c01091{left:354.315000px;}
.x2_c01091{left:441.075000px;}
.xa_c01091{left:455.835000px;}
.x3_c01091{left:475.072500px;}
.x4_c01091{left:495.105000px;}
.xb_c01091{left:539.940000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls4_c01091{letter-spacing:-0.384000pt;}
.ls6_c01091{letter-spacing:-0.220267pt;}
.ls3_c01091{letter-spacing:-0.161067pt;}
.ls2_c01091{letter-spacing:-0.047467pt;}
.ls1_c01091{letter-spacing:0.000000pt;}
.ls0_c01091{letter-spacing:0.135467pt;}
.ls5_c01091{letter-spacing:0.256000pt;}
.ws3_c01091{word-spacing:-18.833707pt;}
.ws2_c01091{word-spacing:-18.698240pt;}
.ws1_c01091{word-spacing:-18.048000pt;}
.ws0_c01091{word-spacing:-17.792000pt;}
.ws4_c01091{word-spacing:0.000000pt;}
._9_c01091{margin-left:-3.898086pt;}
._a_c01091{margin-left:-3.008000pt;}
._5_c01091{margin-left:-2.117914pt;}
._0_c01091{margin-left:-1.119014pt;}
._2_c01091{width:1.168534pt;}
._8_c01091{width:3.008000pt;}
._10_c01091{width:4.992000pt;}
._f_c01091{width:5.930688pt;}
._12_c01091{width:7.424000pt;}
._11_c01091{width:8.640000pt;}
._7_c01091{width:11.456000pt;}
._6_c01091{width:12.608000pt;}
._13_c01091{width:13.696000pt;}
._4_c01091{width:14.912000pt;}
._3_c01091{width:15.872000pt;}
._d_c01091{width:23.872000pt;}
._e_c01091{width:25.194688pt;}
._c_c01091{width:28.224000pt;}
._b_c01091{width:29.248000pt;}
._1_c01091{width:791.786987pt;}
.fs4_c01091{font-size:34.560000pt;}
.fs3_c01091{font-size:42.880000pt;}
.fs2_c01091{font-size:53.120000pt;}
.fs0_c01091{font-size:58.880000pt;}
.fs1_c01091{font-size:64.000000pt;}
.y0_c01091{bottom:0.000000pt;}
.y30_c01091{bottom:9.133333pt;}
.y2b_c01091{bottom:9.440000pt;}
.y2f_c01091{bottom:25.773333pt;}
.y2a_c01091{bottom:25.920000pt;}
.y2c_c01091{bottom:42.240000pt;}
.y2e_c01091{bottom:42.253333pt;}
.y29_c01091{bottom:42.400000pt;}
.y4_c01091{bottom:63.232000pt;}
.y3_c01091{bottom:93.792000pt;}
.y27_c01091{bottom:110.912000pt;}
.y26_c01091{bottom:127.072000pt;}
.y25_c01091{bottom:143.386667pt;}
.y24_c01091{bottom:148.026667pt;}
.y23_c01091{bottom:159.546667pt;}
.y22_c01091{bottom:175.706667pt;}
.y21_c01091{bottom:191.866667pt;}
.y20_c01091{bottom:196.506667pt;}
.y1f_c01091{bottom:221.466667pt;}
.y1e_c01091{bottom:260.546667pt;}
.y1d_c01091{bottom:280.386667pt;}
.y1c_c01091{bottom:300.226667pt;}
.y1b_c01091{bottom:320.226667pt;}
.y1a_c01091{bottom:340.066667pt;}
.y19_c01091{bottom:359.906667pt;}
.y18_c01091{bottom:379.746667pt;}
.y2d_c01091{bottom:385.813333pt;}
.y17_c01091{bottom:399.586667pt;}
.y16_c01091{bottom:419.426667pt;}
.y15_c01091{bottom:439.266667pt;}
.y14_c01091{bottom:459.106667pt;}
.y12_c01091{bottom:479.106667pt;}
.y13_c01091{bottom:483.746667pt;}
.y11_c01091{bottom:498.946667pt;}
.y10_c01091{bottom:518.813333pt;}
.yf_c01091{bottom:538.493333pt;}
.yd_c01091{bottom:558.493333pt;}
.ye_c01091{bottom:563.773333pt;}
.yc_c01091{bottom:578.333333pt;}
.yb_c01091{bottom:598.173333pt;}
.ya_c01091{bottom:618.013333pt;}
.y9_c01091{bottom:637.853333pt;}
.y8_c01091{bottom:657.693333pt;}
.y28_c01091{bottom:681.213333pt;}
.y7_c01091{bottom:687.613333pt;}
.y6_c01091{bottom:714.813333pt;}
.y5_c01091{bottom:739.133333pt;}
.y2_c01091{bottom:1031.200000pt;}
.y1_c01091{bottom:1062.080000pt;}
.hb_c01091{height:36.875520pt;}
.ha_c01091{height:38.336562pt;}
.h8_c01091{height:38.441250pt;}
.h2_c01091{height:42.722500pt;}
.h3_c01091{height:44.468750pt;}
.h5_c01091{height:47.491563pt;}
.h4_c01091{height:47.621250pt;}
.he_c01091{height:54.400000pt;}
.hd_c01091{height:54.560000pt;}
.hc_c01091{height:56.679040pt;}
.h9_c01091{height:57.218750pt;}
.h6_c01091{height:57.375000pt;}
.h7_c01091{height:1122.546667pt;}
.h0_c01091{height:1122.560000pt;}
.h1_c01091{height:1122.666667pt;}
.w3_c01091{width:190.733333pt;}
.w4_c01091{width:196.360000pt;}
.w5_c01091{width:200.506667pt;}
.w2_c01091{width:793.740000pt;}
.w0_c01091{width:793.760000pt;}
.w1_c01091{width:794.000000pt;}
.x0_c01091{left:0.000000pt;}
.x1_c01091{left:122.912000pt;}
.x8_c01091{left:139.226667pt;}
.x5_c01091{left:194.886667pt;}
.x9_c01091{left:201.640000pt;}
.x6_c01091{left:212.666667pt;}
.x7_c01091{left:314.946667pt;}
.x2_c01091{left:392.066667pt;}
.xa_c01091{left:405.186667pt;}
.x3_c01091{left:422.286667pt;}
.x4_c01091{left:440.093333pt;}
.xb_c01091{left:479.946667pt;}
}





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

.ir_c01092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01092;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01092;src:url('chunks/assets/font_8d1b8e0618e321452203a205.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01092;src:url('chunks/assets/font_c24c4da2938559f752967667.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01092;src:url('chunks/assets/font_3d94fd06e1e3ac3c5f8c0695.woff2')format("woff");}.ff5_c01092{font-family:ff5_c01092;line-height:1.104492;font-style:normal;font-weight: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_c01092;src:url('chunks/assets/font_0987af3c43d21bbcff02c05f.woff2')format("woff");}.ff6_c01092{font-family:ff6_c01092;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.ls4_c01092{letter-spacing:-0.720000px;}
.ls7_c01092{letter-spacing:-0.576000px;}
.ls6_c01092{letter-spacing:-0.504000px;}
.ls8_c01092{letter-spacing:-0.432000px;}
.ls3_c01092{letter-spacing:0.000000px;}
.ls5_c01092{letter-spacing:0.144000px;}
.ls0_c01092{letter-spacing:0.288000px;}
.ls2_c01092{letter-spacing:3.744000px;}
.ls1_c01092{letter-spacing:29.844000px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01092{word-spacing:-20.304000px;}
.ws1_c01092{word-spacing:-20.016000px;}
.ws2_c01092{word-spacing:-19.512000px;}
.ws3_c01092{word-spacing:0.000000px;}
._a_c01092{margin-left:-5.710841px;}
._9_c01092{margin-left:-4.680000px;}
._8_c01092{margin-left:-3.475365px;}
._7_c01092{margin-left:-2.402317px;}
._0_c01092{margin-left:-1.390841px;}
._2_c01092{width:1.944000px;}
._3_c01092{width:3.622841px;}
._1_c01092{width:5.544000px;}
._14_c01092{width:7.344000px;}
._10_c01092{width:8.712000px;}
._f_c01092{width:10.080000px;}
._13_c01092{width:11.088000px;}
._15_c01092{width:12.372024px;}
._c_c01092{width:14.616000px;}
._b_c01092{width:15.696000px;}
._4_c01092{width:18.648000px;}
._6_c01092{width:24.696000px;}
._5_c01092{width:25.704000px;}
._12_c01092{width:29.542841px;}
._11_c01092{width:30.600000px;}
._d_c01092{width:39.096000px;}
._e_c01092{width:40.152024px;}
.fc0_c01092{color:rgb(0,0,0);}
.fs2_c01092{font-size:59.760000px;}
.fs0_c01092{font-size:66.240000px;}
.fs1_c01092{font-size:72.000000px;}
.y0_c01092{bottom:0.000000px;}
.y32_c01092{bottom:4.140000px;}
.y31_c01092{bottom:22.680000px;}
.y30_c01092{bottom:41.220000px;}
.y4_c01092{bottom:71.136000px;}
.y3_c01092{bottom:105.516000px;}
.y2e_c01092{bottom:146.556000px;}
.y2d_c01092{bottom:168.690000px;}
.y2c_c01092{bottom:191.010000px;}
.y2b_c01092{bottom:213.510000px;}
.y2a_c01092{bottom:235.650000px;}
.y29_c01092{bottom:258.150000px;}
.y28_c01092{bottom:280.290000px;}
.y27_c01092{bottom:302.835000px;}
.y26_c01092{bottom:325.155000px;}
.y25_c01092{bottom:347.475000px;}
.y24_c01092{bottom:369.795000px;}
.y23_c01092{bottom:404.355000px;}
.y22_c01092{bottom:437.835000px;}
.y21_c01092{bottom:468.435000px;}
.y20_c01092{bottom:499.935000px;}
.y1f_c01092{bottom:522.075000px;}
.y1e_c01092{bottom:544.575000px;}
.y1d_c01092{bottom:566.745000px;}
.y1c_c01092{bottom:601.485000px;}
.y1b_c01092{bottom:623.625000px;}
.y1a_c01092{bottom:645.945000px;}
.y19_c01092{bottom:668.265000px;}
.y18_c01092{bottom:690.585000px;}
.y17_c01092{bottom:712.905000px;}
.y2f_c01092{bottom:724.605000px;}
.y16_c01092{bottom:735.225000px;}
.y15_c01092{bottom:757.545000px;}
.y14_c01092{bottom:779.685000px;}
.y13_c01092{bottom:802.185000px;}
.y12_c01092{bottom:824.685000px;}
.y11_c01092{bottom:847.005000px;}
.y10_c01092{bottom:869.190000px;}
.yf_c01092{bottom:891.510000px;}
.ye_c01092{bottom:926.070000px;}
.yd_c01092{bottom:948.210000px;}
.yc_c01092{bottom:970.530000px;}
.yb_c01092{bottom:992.850000px;}
.ya_c01092{bottom:1015.170000px;}
.y9_c01092{bottom:1037.670000px;}
.y8_c01092{bottom:1059.990000px;}
.y7_c01092{bottom:1094.370000px;}
.y6_c01092{bottom:1116.510000px;}
.y5_c01092{bottom:1138.860000px;}
.y2_c01092{bottom:1160.100000px;}
.y1_c01092{bottom:1194.840000px;}
.h3_c01092{height:50.027344px;}
.h2_c01092{height:50.229844px;}
.h5_c01092{height:53.428008px;}
.h7_c01092{height:54.900000px;}
.h4_c01092{height:64.546875px;}
.h6_c01092{height:65.003906px;}
.h0_c01092{height:1262.880000px;}
.h1_c01092{height:1263.000000px;}
.w2_c01092{width:203.070000px;}
.w0_c01092{width:892.980000px;}
.w1_c01092{width:893.250000px;}
.x0_c01092{left:0.000000px;}
.x2_c01092{left:138.276000px;}
.x1_c01092{left:169.950000px;}
.x4_c01092{left:351.975000px;}
.x3_c01092{left:738.510000px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls4_c01092{letter-spacing:-0.640000pt;}
.ls7_c01092{letter-spacing:-0.512000pt;}
.ls6_c01092{letter-spacing:-0.448000pt;}
.ls8_c01092{letter-spacing:-0.384000pt;}
.ls3_c01092{letter-spacing:0.000000pt;}
.ls5_c01092{letter-spacing:0.128000pt;}
.ls0_c01092{letter-spacing:0.256000pt;}
.ls2_c01092{letter-spacing:3.328000pt;}
.ls1_c01092{letter-spacing:26.528000pt;}
.ws0_c01092{word-spacing:-18.048000pt;}
.ws1_c01092{word-spacing:-17.792000pt;}
.ws2_c01092{word-spacing:-17.344000pt;}
.ws3_c01092{word-spacing:0.000000pt;}
._a_c01092{margin-left:-5.076303pt;}
._9_c01092{margin-left:-4.160000pt;}
._8_c01092{margin-left:-3.089213pt;}
._7_c01092{margin-left:-2.135393pt;}
._0_c01092{margin-left:-1.236303pt;}
._2_c01092{width:1.728000pt;}
._3_c01092{width:3.220303pt;}
._1_c01092{width:4.928000pt;}
._14_c01092{width:6.528000pt;}
._10_c01092{width:7.744000pt;}
._f_c01092{width:8.960000pt;}
._13_c01092{width:9.856000pt;}
._15_c01092{width:10.997355pt;}
._c_c01092{width:12.992000pt;}
._b_c01092{width:13.952000pt;}
._4_c01092{width:16.576000pt;}
._6_c01092{width:21.952000pt;}
._5_c01092{width:22.848000pt;}
._12_c01092{width:26.260303pt;}
._11_c01092{width:27.200000pt;}
._d_c01092{width:34.752000pt;}
._e_c01092{width:35.690688pt;}
.fs2_c01092{font-size:53.120000pt;}
.fs0_c01092{font-size:58.880000pt;}
.fs1_c01092{font-size:64.000000pt;}
.y0_c01092{bottom:0.000000pt;}
.y32_c01092{bottom:3.680000pt;}
.y31_c01092{bottom:20.160000pt;}
.y30_c01092{bottom:36.640000pt;}
.y4_c01092{bottom:63.232000pt;}
.y3_c01092{bottom:93.792000pt;}
.y2e_c01092{bottom:130.272000pt;}
.y2d_c01092{bottom:149.946667pt;}
.y2c_c01092{bottom:169.786667pt;}
.y2b_c01092{bottom:189.786667pt;}
.y2a_c01092{bottom:209.466667pt;}
.y29_c01092{bottom:229.466667pt;}
.y28_c01092{bottom:249.146667pt;}
.y27_c01092{bottom:269.186667pt;}
.y26_c01092{bottom:289.026667pt;}
.y25_c01092{bottom:308.866667pt;}
.y24_c01092{bottom:328.706667pt;}
.y23_c01092{bottom:359.426667pt;}
.y22_c01092{bottom:389.186667pt;}
.y21_c01092{bottom:416.386667pt;}
.y20_c01092{bottom:444.386667pt;}
.y1f_c01092{bottom:464.066667pt;}
.y1e_c01092{bottom:484.066667pt;}
.y1d_c01092{bottom:503.773333pt;}
.y1c_c01092{bottom:534.653333pt;}
.y1b_c01092{bottom:554.333333pt;}
.y1a_c01092{bottom:574.173333pt;}
.y19_c01092{bottom:594.013333pt;}
.y18_c01092{bottom:613.853333pt;}
.y17_c01092{bottom:633.693333pt;}
.y2f_c01092{bottom:644.093333pt;}
.y16_c01092{bottom:653.533333pt;}
.y15_c01092{bottom:673.373333pt;}
.y14_c01092{bottom:693.053333pt;}
.y13_c01092{bottom:713.053333pt;}
.y12_c01092{bottom:733.053333pt;}
.y11_c01092{bottom:752.893333pt;}
.y10_c01092{bottom:772.613333pt;}
.yf_c01092{bottom:792.453333pt;}
.ye_c01092{bottom:823.173333pt;}
.yd_c01092{bottom:842.853333pt;}
.yc_c01092{bottom:862.693333pt;}
.yb_c01092{bottom:882.533333pt;}
.ya_c01092{bottom:902.373333pt;}
.y9_c01092{bottom:922.373333pt;}
.y8_c01092{bottom:942.213333pt;}
.y7_c01092{bottom:972.773333pt;}
.y6_c01092{bottom:992.453333pt;}
.y5_c01092{bottom:1012.320000pt;}
.y2_c01092{bottom:1031.200000pt;}
.y1_c01092{bottom:1062.080000pt;}
.h3_c01092{height:44.468750pt;}
.h2_c01092{height:44.648750pt;}
.h5_c01092{height:47.491563pt;}
.h7_c01092{height:48.800000pt;}
.h4_c01092{height:57.375000pt;}
.h6_c01092{height:57.781250pt;}
.h0_c01092{height:1122.560000pt;}
.h1_c01092{height:1122.666667pt;}
.w2_c01092{width:180.506667pt;}
.w0_c01092{width:793.760000pt;}
.w1_c01092{width:794.000000pt;}
.x0_c01092{left:0.000000pt;}
.x2_c01092{left:122.912000pt;}
.x1_c01092{left:151.066667pt;}
.x4_c01092{left:312.866667pt;}
.x3_c01092{left:656.453333pt;}
}





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

.ir_c01093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01093;src:url('chunks/assets/font_511a64517d5b4f88e61eb021.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01093;src:url('chunks/assets/font_b448445d434c1d55a0a46034.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01093;src:url('chunks/assets/font_d9bf95a518a1367989dbeccf.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.104492;font-style:normal;font-weight: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_c01093;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01093{font-family:ff5_c01093;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:ff6_c01093;src:url('chunks/assets/font_4d8bcb96ee1227301210985a.woff2')format("woff");}.ff6_c01093{font-family:ff6_c01093;line-height:1.575000;font-style:normal;font-weight: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_c01093;src:url('chunks/assets/font_e0857cc4bf13efe2d117448b.woff2')format("woff");}.ff7_c01093{font-family:ff7_c01093;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.ls3_c01093{letter-spacing:-0.720000px;}
.ls6_c01093{letter-spacing:-0.247800px;}
.ls4_c01093{letter-spacing:-0.181200px;}
.ls5_c01093{letter-spacing:-0.053400px;}
.ls2_c01093{letter-spacing:0.000000px;}
.ls1_c01093{letter-spacing:0.152400px;}
.ls0_c01093{letter-spacing:0.666720px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01093{word-spacing:-21.187920px;}
.ws0_c01093{word-spacing:-20.016000px;}
.ws2_c01093{word-spacing:0.000000px;}
._8_c01093{margin-left:-4.843565px;}
._6_c01093{margin-left:-3.818218px;}
._5_c01093{margin-left:-2.592000px;}
._0_c01093{margin-left:-1.258891px;}
._3_c01093{width:1.201133px;}
._2_c01093{width:2.218891px;}
._1_c01093{width:3.720000px;}
._4_c01093{width:7.848000px;}
._7_c01093{width:10.728000px;}
.fc0_c01093{color:rgb(0,0,0);}
.fs4_c01093{font-size:38.880000px;}
.fs2_c01093{font-size:48.240000px;}
.fs3_c01093{font-size:59.760000px;}
.fs0_c01093{font-size:66.240000px;}
.fs1_c01093{font-size:72.000000px;}
.y0_c01093{bottom:0.000000px;}
.y17_c01093{bottom:11.340000px;}
.y4_c01093{bottom:71.136000px;}
.y3_c01093{bottom:105.516000px;}
.y15_c01093{bottom:124.776000px;}
.y14_c01093{bottom:129.996000px;}
.y13_c01093{bottom:158.070000px;}
.y12_c01093{bottom:200.910000px;}
.y11_c01093{bottom:228.270000px;}
.y16_c01093{bottom:576.825000px;}
.y10_c01093{bottom:589.245000px;}
.yf_c01093{bottom:616.605000px;}
.yd_c01093{bottom:960.450000px;}
.ye_c01093{bottom:966.390000px;}
.yc_c01093{bottom:982.590000px;}
.yb_c01093{bottom:1005.090000px;}
.ya_c01093{bottom:1027.230000px;}
.y9_c01093{bottom:1049.550000px;}
.y8_c01093{bottom:1071.870000px;}
.y7_c01093{bottom:1094.190000px;}
.y6_c01093{bottom:1116.510000px;}
.y5_c01093{bottom:1139.040000px;}
.y2_c01093{bottom:1160.100000px;}
.y1_c01093{bottom:1194.840000px;}
.hc_c01093{height:25.020000px;}
.ha_c01093{height:41.484960px;}
.h6_c01093{height:43.246406px;}
.h2_c01093{height:48.062812px;}
.h3_c01093{height:50.027344px;}
.h9_c01093{height:53.428008px;}
.h7_c01093{height:53.573906px;}
.h8_c01093{height:62.327813px;}
.hb_c01093{height:63.763920px;}
.h4_c01093{height:64.546875px;}
.h5_c01093{height:1262.865000px;}
.h0_c01093{height:1262.880000px;}
.h1_c01093{height:1263.000000px;}
.w3_c01093{width:337.215000px;}
.w2_c01093{width:892.957500px;}
.w0_c01093{width:892.980000px;}
.w1_c01093{width:893.250000px;}
.x0_c01093{left:0.000000px;}
.x1_c01093{left:138.276000px;}
.x7_c01093{left:156.630000px;}
.x8_c01093{left:210.645000px;}
.x6_c01093{left:354.315000px;}
.x2_c01093{left:550.702500px;}
.x3_c01093{left:570.705000px;}
.x5_c01093{left:692.610000px;}
.x4_c01093{left:696.030000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls3_c01093{letter-spacing:-0.640000pt;}
.ls6_c01093{letter-spacing:-0.220267pt;}
.ls4_c01093{letter-spacing:-0.161067pt;}
.ls5_c01093{letter-spacing:-0.047467pt;}
.ls2_c01093{letter-spacing:0.000000pt;}
.ls1_c01093{letter-spacing:0.135467pt;}
.ls0_c01093{letter-spacing:0.592640pt;}
.ws1_c01093{word-spacing:-18.833707pt;}
.ws0_c01093{word-spacing:-17.792000pt;}
.ws2_c01093{word-spacing:0.000000pt;}
._8_c01093{margin-left:-4.305391pt;}
._6_c01093{margin-left:-3.393971pt;}
._5_c01093{margin-left:-2.304000pt;}
._0_c01093{margin-left:-1.119014pt;}
._3_c01093{width:1.067674pt;}
._2_c01093{width:1.972348pt;}
._1_c01093{width:3.306667pt;}
._4_c01093{width:6.976000pt;}
._7_c01093{width:9.536000pt;}
.fs4_c01093{font-size:34.560000pt;}
.fs2_c01093{font-size:42.880000pt;}
.fs3_c01093{font-size:53.120000pt;}
.fs0_c01093{font-size:58.880000pt;}
.fs1_c01093{font-size:64.000000pt;}
.y0_c01093{bottom:0.000000pt;}
.y17_c01093{bottom:10.080000pt;}
.y4_c01093{bottom:63.232000pt;}
.y3_c01093{bottom:93.792000pt;}
.y15_c01093{bottom:110.912000pt;}
.y14_c01093{bottom:115.552000pt;}
.y13_c01093{bottom:140.506667pt;}
.y12_c01093{bottom:178.586667pt;}
.y11_c01093{bottom:202.906667pt;}
.y16_c01093{bottom:512.733333pt;}
.y10_c01093{bottom:523.773333pt;}
.yf_c01093{bottom:548.093333pt;}
.yd_c01093{bottom:853.733333pt;}
.ye_c01093{bottom:859.013333pt;}
.yc_c01093{bottom:873.413333pt;}
.yb_c01093{bottom:893.413333pt;}
.ya_c01093{bottom:913.093333pt;}
.y9_c01093{bottom:932.933333pt;}
.y8_c01093{bottom:952.773333pt;}
.y7_c01093{bottom:972.613333pt;}
.y6_c01093{bottom:992.453333pt;}
.y5_c01093{bottom:1012.480000pt;}
.y2_c01093{bottom:1031.200000pt;}
.y1_c01093{bottom:1062.080000pt;}
.hc_c01093{height:22.240000pt;}
.ha_c01093{height:36.875520pt;}
.h6_c01093{height:38.441250pt;}
.h2_c01093{height:42.722500pt;}
.h3_c01093{height:44.468750pt;}
.h9_c01093{height:47.491563pt;}
.h7_c01093{height:47.621250pt;}
.h8_c01093{height:55.402500pt;}
.hb_c01093{height:56.679040pt;}
.h4_c01093{height:57.375000pt;}
.h5_c01093{height:1122.546667pt;}
.h0_c01093{height:1122.560000pt;}
.h1_c01093{height:1122.666667pt;}
.w3_c01093{width:299.746667pt;}
.w2_c01093{width:793.740000pt;}
.w0_c01093{width:793.760000pt;}
.w1_c01093{width:794.000000pt;}
.x0_c01093{left:0.000000pt;}
.x1_c01093{left:122.912000pt;}
.x7_c01093{left:139.226667pt;}
.x8_c01093{left:187.240000pt;}
.x6_c01093{left:314.946667pt;}
.x2_c01093{left:489.513333pt;}
.x3_c01093{left:507.293333pt;}
.x5_c01093{left:615.653333pt;}
.x4_c01093{left:618.693333pt;}
}





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

.ir_c01094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01094;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01094;src:url('chunks/assets/font_f4387a617c7e359b32b17891.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01094;src:url('chunks/assets/font_4575b66f3519c33521adeea4.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01094;src:url('chunks/assets/font_219f25922621bc81c6bf9438.woff2')format("woff");}.ff5_c01094{font-family:ff5_c01094;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01094;src:url('chunks/assets/font_61493c98051e6515b11e366a.woff2')format("woff");}.ff6_c01094{font-family:ff6_c01094;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01094;src:url('chunks/assets/font_b0dc169c3802321cf2093953.woff2')format("woff");}.ff7_c01094{font-family:ff7_c01094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01094;src:url('chunks/assets/font_6414b5011ee57b077751e6b3.woff2')format("woff");}.ff8_c01094{font-family:ff8_c01094;line-height:1.211914;font-style:normal;font-weight: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_c01094;src:url('chunks/assets/font_9f481393164e896574e94d88.woff2')format("woff");}.ff9_c01094{font-family:ff9_c01094;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls5_c01094{letter-spacing:-0.720000px;}
.ls4_c01094{letter-spacing:-0.576000px;}
.ls6_c01094{letter-spacing:-0.247800px;}
.ls3_c01094{letter-spacing:-0.181200px;}
.ls2_c01094{letter-spacing:0.000000px;}
.ls0_c01094{letter-spacing:0.144000px;}
.ls1_c01094{letter-spacing:0.288000px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01094{word-spacing:-20.016000px;}
.ws1_c01094{word-spacing:0.000000px;}
._e_c01094{margin-left:-5.149221px;}
._2_c01094{margin-left:-3.985255px;}
._1_c01094{margin-left:-2.903976px;}
._0_c01094{margin-left:-1.390841px;}
._3_c01094{width:1.010485px;}
._4_c01094{width:2.373515px;}
._6_c01094{width:3.960000px;}
._5_c01094{width:5.184000px;}
._7_c01094{width:6.192000px;}
._8_c01094{width:8.083029px;}
._a_c01094{width:9.192000px;}
._b_c01094{width:10.233515px;}
._9_c01094{width:11.664000px;}
._d_c01094{width:13.752000px;}
._c_c01094{width:21.336000px;}
.fc0_c01094{color:rgb(0,0,0);}
.fs3_c01094{font-size:38.880000px;}
.fs2_c01094{font-size:48.240000px;}
.fs4_c01094{font-size:59.760000px;}
.fs0_c01094{font-size:66.240000px;}
.fs1_c01094{font-size:72.000000px;}
.y0_c01094{bottom:0.000000px;}
.y4_c01094{bottom:71.136000px;}
.y3_c01094{bottom:105.516000px;}
.y31_c01094{bottom:138.456000px;}
.y30_c01094{bottom:157.890000px;}
.y2f_c01094{bottom:177.510000px;}
.y2e_c01094{bottom:182.730000px;}
.y2d_c01094{bottom:210.810000px;}
.y2c_c01094{bottom:242.130000px;}
.y2b_c01094{bottom:264.270000px;}
.y2a_c01094{bottom:298.875000px;}
.y29_c01094{bottom:321.015000px;}
.y28_c01094{bottom:343.335000px;}
.y27_c01094{bottom:365.655000px;}
.y25_c01094{bottom:387.975000px;}
.y26_c01094{bottom:393.915000px;}
.y24_c01094{bottom:410.295000px;}
.y23_c01094{bottom:432.615000px;}
.y22_c01094{bottom:455.115000px;}
.y21_c01094{bottom:477.255000px;}
.y20_c01094{bottom:511.815000px;}
.y1f_c01094{bottom:534.135000px;}
.y1e_c01094{bottom:556.455000px;}
.y1d_c01094{bottom:578.805000px;}
.y1c_c01094{bottom:601.305000px;}
.y1b_c01094{bottom:623.625000px;}
.y1a_c01094{bottom:645.765000px;}
.y19_c01094{bottom:668.085000px;}
.y18_c01094{bottom:702.645000px;}
.y17_c01094{bottom:724.965000px;}
.y16_c01094{bottom:747.105000px;}
.y15_c01094{bottom:769.605000px;}
.y14_c01094{bottom:791.745000px;}
.y13_c01094{bottom:814.065000px;}
.y12_c01094{bottom:836.385000px;}
.y11_c01094{bottom:858.930000px;}
.y10_c01094{bottom:881.250000px;}
.yf_c01094{bottom:903.390000px;}
.ye_c01094{bottom:925.890000px;}
.yd_c01094{bottom:948.210000px;}
.yc_c01094{bottom:970.530000px;}
.yb_c01094{bottom:993.030000px;}
.ya_c01094{bottom:1015.170000px;}
.y9_c01094{bottom:1037.670000px;}
.y8_c01094{bottom:1059.990000px;}
.y7_c01094{bottom:1082.130000px;}
.y6_c01094{bottom:1104.450000px;}
.y5_c01094{bottom:1139.040000px;}
.y2_c01094{bottom:1160.100000px;}
.y1_c01094{bottom:1194.840000px;}
.h8_c01094{height:41.484960px;}
.h7_c01094{height:43.246406px;}
.h3_c01094{height:50.027344px;}
.h2_c01094{height:50.229844px;}
.h9_c01094{height:63.763920px;}
.h5_c01094{height:64.546875px;}
.h4_c01094{height:65.003906px;}
.h6_c01094{height:1262.865000px;}
.h0_c01094{height:1262.880000px;}
.h1_c01094{height:1263.000000px;}
.w2_c01094{width:892.957500px;}
.w0_c01094{width:892.980000px;}
.w1_c01094{width:893.250000px;}
.x0_c01094{left:0.000000px;}
.x2_c01094{left:138.276000px;}
.x7_c01094{left:156.630000px;}
.x1_c01094{left:169.950000px;}
.x6_c01094{left:354.315000px;}
.x3_c01094{left:738.510000px;}
.x4_c01094{left:740.647500px;}
.x5_c01094{left:760.650000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls5_c01094{letter-spacing:-0.640000pt;}
.ls4_c01094{letter-spacing:-0.512000pt;}
.ls6_c01094{letter-spacing:-0.220267pt;}
.ls3_c01094{letter-spacing:-0.161067pt;}
.ls2_c01094{letter-spacing:0.000000pt;}
.ls0_c01094{letter-spacing:0.128000pt;}
.ls1_c01094{letter-spacing:0.256000pt;}
.ws0_c01094{word-spacing:-17.792000pt;}
.ws1_c01094{word-spacing:0.000000pt;}
._e_c01094{margin-left:-4.577085pt;}
._2_c01094{margin-left:-3.542449pt;}
._1_c01094{margin-left:-2.581312pt;}
._0_c01094{margin-left:-1.236303pt;}
._3_c01094{width:0.898209pt;}
._4_c01094{width:2.109791pt;}
._6_c01094{width:3.520000pt;}
._5_c01094{width:4.608000pt;}
._7_c01094{width:5.504000pt;}
._8_c01094{width:7.184915pt;}
._a_c01094{width:8.170667pt;}
._b_c01094{width:9.096457pt;}
._9_c01094{width:10.368000pt;}
._d_c01094{width:12.224000pt;}
._c_c01094{width:18.965333pt;}
.fs3_c01094{font-size:34.560000pt;}
.fs2_c01094{font-size:42.880000pt;}
.fs4_c01094{font-size:53.120000pt;}
.fs0_c01094{font-size:58.880000pt;}
.fs1_c01094{font-size:64.000000pt;}
.y0_c01094{bottom:0.000000pt;}
.y4_c01094{bottom:63.232000pt;}
.y3_c01094{bottom:93.792000pt;}
.y31_c01094{bottom:123.072000pt;}
.y30_c01094{bottom:140.346667pt;}
.y2f_c01094{bottom:157.786667pt;}
.y2e_c01094{bottom:162.426667pt;}
.y2d_c01094{bottom:187.386667pt;}
.y2c_c01094{bottom:215.226667pt;}
.y2b_c01094{bottom:234.906667pt;}
.y2a_c01094{bottom:265.666667pt;}
.y29_c01094{bottom:285.346667pt;}
.y28_c01094{bottom:305.186667pt;}
.y27_c01094{bottom:325.026667pt;}
.y25_c01094{bottom:344.866667pt;}
.y26_c01094{bottom:350.146667pt;}
.y24_c01094{bottom:364.706667pt;}
.y23_c01094{bottom:384.546667pt;}
.y22_c01094{bottom:404.546667pt;}
.y21_c01094{bottom:424.226667pt;}
.y20_c01094{bottom:454.946667pt;}
.y1f_c01094{bottom:474.786667pt;}
.y1e_c01094{bottom:494.626667pt;}
.y1d_c01094{bottom:514.493333pt;}
.y1c_c01094{bottom:534.493333pt;}
.y1b_c01094{bottom:554.333333pt;}
.y1a_c01094{bottom:574.013333pt;}
.y19_c01094{bottom:593.853333pt;}
.y18_c01094{bottom:624.573333pt;}
.y17_c01094{bottom:644.413333pt;}
.y16_c01094{bottom:664.093333pt;}
.y15_c01094{bottom:684.093333pt;}
.y14_c01094{bottom:703.773333pt;}
.y13_c01094{bottom:723.613333pt;}
.y12_c01094{bottom:743.453333pt;}
.y11_c01094{bottom:763.493333pt;}
.y10_c01094{bottom:783.333333pt;}
.yf_c01094{bottom:803.013333pt;}
.ye_c01094{bottom:823.013333pt;}
.yd_c01094{bottom:842.853333pt;}
.yc_c01094{bottom:862.693333pt;}
.yb_c01094{bottom:882.693333pt;}
.ya_c01094{bottom:902.373333pt;}
.y9_c01094{bottom:922.373333pt;}
.y8_c01094{bottom:942.213333pt;}
.y7_c01094{bottom:961.893333pt;}
.y6_c01094{bottom:981.733333pt;}
.y5_c01094{bottom:1012.480000pt;}
.y2_c01094{bottom:1031.200000pt;}
.y1_c01094{bottom:1062.080000pt;}
.h8_c01094{height:36.875520pt;}
.h7_c01094{height:38.441250pt;}
.h3_c01094{height:44.468750pt;}
.h2_c01094{height:44.648750pt;}
.h9_c01094{height:56.679040pt;}
.h5_c01094{height:57.375000pt;}
.h4_c01094{height:57.781250pt;}
.h6_c01094{height:1122.546667pt;}
.h0_c01094{height:1122.560000pt;}
.h1_c01094{height:1122.666667pt;}
.w2_c01094{width:793.740000pt;}
.w0_c01094{width:793.760000pt;}
.w1_c01094{width:794.000000pt;}
.x0_c01094{left:0.000000pt;}
.x2_c01094{left:122.912000pt;}
.x7_c01094{left:139.226667pt;}
.x1_c01094{left:151.066667pt;}
.x6_c01094{left:314.946667pt;}
.x3_c01094{left:656.453333pt;}
.x4_c01094{left:658.353333pt;}
.x5_c01094{left:676.133333pt;}
}





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

.ir_c01095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01095;src:url('chunks/assets/font_7d70db28e84a76830bdb7c33.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01095;src:url('chunks/assets/font_f149ade40cd9a5784ae91439.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01095;src:url('chunks/assets/font_390569d644e61de0b9516fd3.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01095;src:url('chunks/assets/font_79d68de528974cb0abe73530.woff2')format("woff");}.ff5_c01095{font-family:ff5_c01095;line-height:1.575000;font-style:normal;font-weight: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_c01095;src:url('chunks/assets/font_af39922c1c0056d4eca864f1.woff2')format("woff");}.ff6_c01095{font-family:ff6_c01095;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01095{vertical-align:0.000000px;}
.ls6_c01095{letter-spacing:-0.247800px;}
.ls5_c01095{letter-spacing:-0.181200px;}
.ls7_c01095{letter-spacing:-0.152400px;}
.ls2_c01095{letter-spacing:-0.144000px;}
.ls3_c01095{letter-spacing:-0.053400px;}
.ls1_c01095{letter-spacing:0.000000px;}
.ls4_c01095{letter-spacing:0.288000px;}
.ls0_c01095{letter-spacing:20.304000px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01095{word-spacing:-20.304000px;}
.ws1_c01095{word-spacing:-20.016000px;}
.ws0_c01095{word-spacing:-19.872000px;}
.ws3_c01095{word-spacing:0.000000px;}
._c_c01095{margin-left:-5.425085px;}
._b_c01095{margin-left:-4.176000px;}
._a_c01095{margin-left:-3.159326px;}
._0_c01095{margin-left:-1.258891px;}
._1_c01095{width:1.856698px;}
._2_c01095{width:3.384000px;}
._3_c01095{width:4.441258px;}
._8_c01095{width:6.048000px;}
._9_c01095{width:7.704000px;}
._5_c01095{width:8.901806px;}
._4_c01095{width:10.080000px;}
._6_c01095{width:11.134944px;}
._d_c01095{width:12.312000px;}
._7_c01095{width:18.996000px;}
.fc0_c01095{color:rgb(0,0,0);}
.fs4_c01095{font-size:38.880000px;}
.fs3_c01095{font-size:48.240000px;}
.fs2_c01095{font-size:59.760000px;}
.fs0_c01095{font-size:66.240000px;}
.fs1_c01095{font-size:72.000000px;}
.y0_c01095{bottom:0.000000px;}
.y4_c01095{bottom:71.136000px;}
.y3_c01095{bottom:105.516000px;}
.y23_c01095{bottom:138.456000px;}
.y22_c01095{bottom:143.676000px;}
.y21_c01095{bottom:171.390000px;}
.y20_c01095{bottom:228.450000px;}
.y1f_c01095{bottom:250.770000px;}
.y1e_c01095{bottom:273.270000px;}
.y1d_c01095{bottom:295.635000px;}
.y1c_c01095{bottom:317.955000px;}
.y1b_c01095{bottom:340.275000px;}
.y1a_c01095{bottom:362.775000px;}
.y19_c01095{bottom:385.095000px;}
.y18_c01095{bottom:407.235000px;}
.y17_c01095{bottom:429.735000px;}
.y16_c01095{bottom:452.055000px;}
.y14_c01095{bottom:474.195000px;}
.y15_c01095{bottom:480.135000px;}
.y13_c01095{bottom:496.515000px;}
.y12_c01095{bottom:519.015000px;}
.y11_c01095{bottom:541.515000px;}
.y10_c01095{bottom:563.655000px;}
.yf_c01095{bottom:586.185000px;}
.ye_c01095{bottom:608.325000px;}
.yd_c01095{bottom:641.985000px;}
.yc_c01095{bottom:669.345000px;}
.yb_c01095{bottom:1005.090000px;}
.ya_c01095{bottom:1027.230000px;}
.y9_c01095{bottom:1049.550000px;}
.y8_c01095{bottom:1071.870000px;}
.y7_c01095{bottom:1094.370000px;}
.y6_c01095{bottom:1116.510000px;}
.y5_c01095{bottom:1138.860000px;}
.y2_c01095{bottom:1160.100000px;}
.y1_c01095{bottom:1194.840000px;}
.h9_c01095{height:41.484960px;}
.h8_c01095{height:43.246406px;}
.h2_c01095{height:48.062812px;}
.h3_c01095{height:50.027344px;}
.h6_c01095{height:53.428008px;}
.h5_c01095{height:53.573906px;}
.ha_c01095{height:63.763920px;}
.h4_c01095{height:64.546875px;}
.h7_c01095{height:1262.865000px;}
.h0_c01095{height:1262.880000px;}
.h1_c01095{height:1263.000000px;}
.w2_c01095{width:892.957500px;}
.w0_c01095{width:892.980000px;}
.w1_c01095{width:893.250000px;}
.x0_c01095{left:0.000000px;}
.x1_c01095{left:138.276000px;}
.x6_c01095{left:156.630000px;}
.x5_c01095{left:354.315000px;}
.x3_c01095{left:679.042500px;}
.x4_c01095{left:699.090000px;}
.x2_c01095{left:700.530000px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls6_c01095{letter-spacing:-0.220267pt;}
.ls5_c01095{letter-spacing:-0.161067pt;}
.ls7_c01095{letter-spacing:-0.135467pt;}
.ls2_c01095{letter-spacing:-0.128000pt;}
.ls3_c01095{letter-spacing:-0.047467pt;}
.ls1_c01095{letter-spacing:0.000000pt;}
.ls4_c01095{letter-spacing:0.256000pt;}
.ls0_c01095{letter-spacing:18.048000pt;}
.ws2_c01095{word-spacing:-18.048000pt;}
.ws1_c01095{word-spacing:-17.792000pt;}
.ws0_c01095{word-spacing:-17.664000pt;}
.ws3_c01095{word-spacing:0.000000pt;}
._c_c01095{margin-left:-4.822298pt;}
._b_c01095{margin-left:-3.712000pt;}
._a_c01095{margin-left:-2.808290pt;}
._0_c01095{margin-left:-1.119014pt;}
._1_c01095{width:1.650398pt;}
._2_c01095{width:3.008000pt;}
._3_c01095{width:3.947785pt;}
._8_c01095{width:5.376000pt;}
._9_c01095{width:6.848000pt;}
._5_c01095{width:7.912717pt;}
._4_c01095{width:8.960000pt;}
._6_c01095{width:9.897728pt;}
._d_c01095{width:10.944000pt;}
._7_c01095{width:16.885333pt;}
.fs4_c01095{font-size:34.560000pt;}
.fs3_c01095{font-size:42.880000pt;}
.fs2_c01095{font-size:53.120000pt;}
.fs0_c01095{font-size:58.880000pt;}
.fs1_c01095{font-size:64.000000pt;}
.y0_c01095{bottom:0.000000pt;}
.y4_c01095{bottom:63.232000pt;}
.y3_c01095{bottom:93.792000pt;}
.y23_c01095{bottom:123.072000pt;}
.y22_c01095{bottom:127.712000pt;}
.y21_c01095{bottom:152.346667pt;}
.y20_c01095{bottom:203.066667pt;}
.y1f_c01095{bottom:222.906667pt;}
.y1e_c01095{bottom:242.906667pt;}
.y1d_c01095{bottom:262.786667pt;}
.y1c_c01095{bottom:282.626667pt;}
.y1b_c01095{bottom:302.466667pt;}
.y1a_c01095{bottom:322.466667pt;}
.y19_c01095{bottom:342.306667pt;}
.y18_c01095{bottom:361.986667pt;}
.y17_c01095{bottom:381.986667pt;}
.y16_c01095{bottom:401.826667pt;}
.y14_c01095{bottom:421.506667pt;}
.y15_c01095{bottom:426.786667pt;}
.y13_c01095{bottom:441.346667pt;}
.y12_c01095{bottom:461.346667pt;}
.y11_c01095{bottom:481.346667pt;}
.y10_c01095{bottom:501.026667pt;}
.yf_c01095{bottom:521.053333pt;}
.ye_c01095{bottom:540.733333pt;}
.yd_c01095{bottom:570.653333pt;}
.yc_c01095{bottom:594.973333pt;}
.yb_c01095{bottom:893.413333pt;}
.ya_c01095{bottom:913.093333pt;}
.y9_c01095{bottom:932.933333pt;}
.y8_c01095{bottom:952.773333pt;}
.y7_c01095{bottom:972.773333pt;}
.y6_c01095{bottom:992.453333pt;}
.y5_c01095{bottom:1012.320000pt;}
.y2_c01095{bottom:1031.200000pt;}
.y1_c01095{bottom:1062.080000pt;}
.h9_c01095{height:36.875520pt;}
.h8_c01095{height:38.441250pt;}
.h2_c01095{height:42.722500pt;}
.h3_c01095{height:44.468750pt;}
.h6_c01095{height:47.491563pt;}
.h5_c01095{height:47.621250pt;}
.ha_c01095{height:56.679040pt;}
.h4_c01095{height:57.375000pt;}
.h7_c01095{height:1122.546667pt;}
.h0_c01095{height:1122.560000pt;}
.h1_c01095{height:1122.666667pt;}
.w2_c01095{width:793.740000pt;}
.w0_c01095{width:793.760000pt;}
.w1_c01095{width:794.000000pt;}
.x0_c01095{left:0.000000pt;}
.x1_c01095{left:122.912000pt;}
.x6_c01095{left:139.226667pt;}
.x5_c01095{left:314.946667pt;}
.x3_c01095{left:603.593333pt;}
.x4_c01095{left:621.413333pt;}
.x2_c01095{left:622.693333pt;}
}





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

.ir_c01096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01096;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01096;src:url('chunks/assets/font_c5c48ee05d0333dadf2bfc82.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01096;src:url('chunks/assets/font_60b083918b5fcda2d5565feb.woff2')format("woff");}.ff4_c01096{font-family:ff4_c01096;line-height:1.106934;font-style:normal;font-weight: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_c01096;src:url('chunks/assets/font_315ce12b363536f92f5912be.woff2')format("woff");}.ff5_c01096{font-family:ff5_c01096;line-height:1.104492;font-style:normal;font-weight: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_c01096;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff6_c01096{font-family:ff6_c01096;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;}
.m0_c01096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01096{vertical-align:0.000000px;}
.ls1_c01096{letter-spacing:-0.053400px;}
.ls0_c01096{letter-spacing:0.000000px;}
.ls2_c01096{letter-spacing:0.360000px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01096{word-spacing:0.000000px;}
._4_c01096{margin-left:-4.104000px;}
._0_c01096{margin-left:-1.390841px;}
._3_c01096{width:1.152000px;}
._5_c01096{width:2.350841px;}
._2_c01096{width:15.984000px;}
._1_c01096{width:16.992000px;}
.fc0_c01096{color:rgb(0,0,0);}
.fs2_c01096{font-size:59.760000px;}
.fs0_c01096{font-size:66.240000px;}
.fs1_c01096{font-size:72.000000px;}
.y0_c01096{bottom:0.000000px;}
.y4_c01096{bottom:71.136000px;}
.y3_c01096{bottom:105.516000px;}
.y10_c01096{bottom:158.070000px;}
.yf_c01096{bottom:192.270000px;}
.ye_c01096{bottom:226.650000px;}
.yd_c01096{bottom:261.030000px;}
.yc_c01096{bottom:295.455000px;}
.yb_c01096{bottom:329.655000px;}
.ya_c01096{bottom:363.315000px;}
.y9_c01096{bottom:390.495000px;}
.y8_c01096{bottom:738.825000px;}
.y7_c01096{bottom:766.005000px;}
.y6_c01096{bottom:1116.690000px;}
.y5_c01096{bottom:1138.860000px;}
.y2_c01096{bottom:1160.100000px;}
.y1_c01096{bottom:1194.840000px;}
.h3_c01096{height:50.027344px;}
.h2_c01096{height:50.229844px;}
.h6_c01096{height:53.428008px;}
.h5_c01096{height:53.573906px;}
.h4_c01096{height:64.546875px;}
.h7_c01096{height:75.093750px;}
.h0_c01096{height:1262.880000px;}
.h1_c01096{height:1263.000000px;}
.w0_c01096{width:892.980000px;}
.w1_c01096{width:893.250000px;}
.x0_c01096{left:0.000000px;}
.x2_c01096{left:138.276000px;}
.x1_c01096{left:169.950000px;}
.x4_c01096{left:700.530000px;}
.x3_c01096{left:738.510000px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls1_c01096{letter-spacing:-0.047467pt;}
.ls0_c01096{letter-spacing:0.000000pt;}
.ls2_c01096{letter-spacing:0.320000pt;}
.ws0_c01096{word-spacing:0.000000pt;}
._4_c01096{margin-left:-3.648000pt;}
._0_c01096{margin-left:-1.236303pt;}
._3_c01096{width:1.024000pt;}
._5_c01096{width:2.089637pt;}
._2_c01096{width:14.208000pt;}
._1_c01096{width:15.104000pt;}
.fs2_c01096{font-size:53.120000pt;}
.fs0_c01096{font-size:58.880000pt;}
.fs1_c01096{font-size:64.000000pt;}
.y0_c01096{bottom:0.000000pt;}
.y4_c01096{bottom:63.232000pt;}
.y3_c01096{bottom:93.792000pt;}
.y10_c01096{bottom:140.506667pt;}
.yf_c01096{bottom:170.906667pt;}
.ye_c01096{bottom:201.466667pt;}
.yd_c01096{bottom:232.026667pt;}
.yc_c01096{bottom:262.626667pt;}
.yb_c01096{bottom:293.026667pt;}
.ya_c01096{bottom:322.946667pt;}
.y9_c01096{bottom:347.106667pt;}
.y8_c01096{bottom:656.733333pt;}
.y7_c01096{bottom:680.893333pt;}
.y6_c01096{bottom:992.613333pt;}
.y5_c01096{bottom:1012.320000pt;}
.y2_c01096{bottom:1031.200000pt;}
.y1_c01096{bottom:1062.080000pt;}
.h3_c01096{height:44.468750pt;}
.h2_c01096{height:44.648750pt;}
.h6_c01096{height:47.491563pt;}
.h5_c01096{height:47.621250pt;}
.h4_c01096{height:57.375000pt;}
.h7_c01096{height:66.750000pt;}
.h0_c01096{height:1122.560000pt;}
.h1_c01096{height:1122.666667pt;}
.w0_c01096{width:793.760000pt;}
.w1_c01096{width:794.000000pt;}
.x0_c01096{left:0.000000pt;}
.x2_c01096{left:122.912000pt;}
.x1_c01096{left:151.066667pt;}
.x4_c01096{left:622.693333pt;}
.x3_c01096{left:656.453333pt;}
}





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

.ir_c01097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01097;src:url('chunks/assets/font_78b863d8a5aba8b123bcf229.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01097;src:url('chunks/assets/font_73cdf12a25234fc8f885346a.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01097;src:url('chunks/assets/font_f00e12a91b6caa4f1a261b7f.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01097;src:url('chunks/assets/font_674c369de4c183e08ce24684.woff2')format("woff");}.ff5_c01097{font-family:ff5_c01097;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01097;src:url('chunks/assets/font_9500c92eee22ed9504905878.woff2')format("woff");}.ff6_c01097{font-family:ff6_c01097;line-height:1.575000;font-style:normal;font-weight: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_c01097;src:url('chunks/assets/font_ebd74a22c6cf5ee7ef5a0d35.woff2')format("woff");}.ff7_c01097{font-family:ff7_c01097;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01097{vertical-align:0.000000px;}
.ls5_c01097{letter-spacing:-0.576000px;}
.ls6_c01097{letter-spacing:-0.247800px;}
.ls2_c01097{letter-spacing:-0.181200px;}
.ls7_c01097{letter-spacing:-0.152400px;}
.ls1_c01097{letter-spacing:0.000000px;}
.ls3_c01097{letter-spacing:0.144000px;}
.ls0_c01097{letter-spacing:0.152400px;}
.ls4_c01097{letter-spacing:0.288000px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01097{word-spacing:-21.187920px;}
.ws3_c01097{word-spacing:-21.035520px;}
.ws1_c01097{word-spacing:-20.304000px;}
.ws0_c01097{word-spacing:-20.016000px;}
.ws4_c01097{word-spacing:0.000000px;}
._9_c01097{margin-left:-5.316000px;}
._8_c01097{margin-left:-4.176000px;}
._4_c01097{margin-left:-2.701109px;}
._0_c01097{margin-left:-1.258891px;}
._3_c01097{width:1.152000px;}
._7_c01097{width:2.455013px;}
._13_c01097{width:3.456000px;}
._12_c01097{width:4.824000px;}
._14_c01097{width:6.028963px;}
._11_c01097{width:7.632000px;}
._1_c01097{width:9.360000px;}
._2_c01097{width:10.368000px;}
._a_c01097{width:12.312000px;}
._b_c01097{width:13.464000px;}
._6_c01097{width:14.949662px;}
._5_c01097{width:16.320024px;}
._c_c01097{width:18.288000px;}
._17_c01097{width:22.824000px;}
._18_c01097{width:23.844000px;}
._16_c01097{width:28.728000px;}
._15_c01097{width:35.136000px;}
._10_c01097{width:38.160000px;}
._f_c01097{width:39.456000px;}
._e_c01097{width:42.408000px;}
._d_c01097{width:43.488000px;}
.fc0_c01097{color:rgb(0,0,0);}
.fs3_c01097{font-size:38.880000px;}
.fs2_c01097{font-size:48.240000px;}
.fs4_c01097{font-size:59.760000px;}
.fs0_c01097{font-size:66.240000px;}
.fs1_c01097{font-size:72.000000px;}
.y0_c01097{bottom:0.000000px;}
.y39_c01097{bottom:3.600000px;}
.y3b_c01097{bottom:3.780000px;}
.y38_c01097{bottom:22.320000px;}
.y4_c01097{bottom:71.136000px;}
.y3_c01097{bottom:105.516000px;}
.y36_c01097{bottom:124.776000px;}
.y35_c01097{bottom:129.996000px;}
.y34_c01097{bottom:142.956000px;}
.y33_c01097{bottom:148.176000px;}
.y32_c01097{bottom:161.310000px;}
.y31_c01097{bottom:179.490000px;}
.y30_c01097{bottom:197.670000px;}
.y2f_c01097{bottom:202.890000px;}
.y2e_c01097{bottom:230.970000px;}
.y2d_c01097{bottom:288.435000px;}
.y2c_c01097{bottom:310.755000px;}
.y2b_c01097{bottom:332.895000px;}
.y2a_c01097{bottom:355.395000px;}
.y29_c01097{bottom:377.895000px;}
.y27_c01097{bottom:400.035000px;}
.y28_c01097{bottom:405.975000px;}
.y26_c01097{bottom:422.355000px;}
.y25_c01097{bottom:444.675000px;}
.y24_c01097{bottom:466.995000px;}
.y23_c01097{bottom:489.495000px;}
.y22_c01097{bottom:511.635000px;}
.y20_c01097{bottom:534.135000px;}
.y21_c01097{bottom:539.355000px;}
.y1f_c01097{bottom:556.275000px;}
.y1e_c01097{bottom:578.805000px;}
.y1d_c01097{bottom:601.125000px;}
.y1c_c01097{bottom:623.445000px;}
.y1b_c01097{bottom:645.945000px;}
.y3a_c01097{bottom:669.345000px;}
.y37_c01097{bottom:671.685000px;}
.y1a_c01097{bottom:680.325000px;}
.y19_c01097{bottom:702.465000px;}
.y18_c01097{bottom:724.785000px;}
.y17_c01097{bottom:747.105000px;}
.y16_c01097{bottom:769.425000px;}
.y15_c01097{bottom:791.745000px;}
.y14_c01097{bottom:814.065000px;}
.y13_c01097{bottom:836.385000px;}
.y12_c01097{bottom:858.750000px;}
.y11_c01097{bottom:881.070000px;}
.y10_c01097{bottom:903.390000px;}
.yf_c01097{bottom:926.070000px;}
.ye_c01097{bottom:948.210000px;}
.yd_c01097{bottom:970.530000px;}
.yc_c01097{bottom:993.030000px;}
.ya_c01097{bottom:1015.350000px;}
.yb_c01097{bottom:1020.570000px;}
.y9_c01097{bottom:1037.490000px;}
.y8_c01097{bottom:1059.810000px;}
.y7_c01097{bottom:1082.310000px;}
.y6_c01097{bottom:1104.630000px;}
.y5_c01097{bottom:1139.040000px;}
.y2_c01097{bottom:1160.100000px;}
.y1_c01097{bottom:1194.840000px;}
.hb_c01097{height:36.000000px;}
.h9_c01097{height:41.484960px;}
.h7_c01097{height:43.128633px;}
.h8_c01097{height:43.246406px;}
.h2_c01097{height:48.062812px;}
.h3_c01097{height:50.027344px;}
.hc_c01097{height:53.428008px;}
.ha_c01097{height:63.763920px;}
.h5_c01097{height:64.546875px;}
.h4_c01097{height:65.003906px;}
.h6_c01097{height:1262.865000px;}
.h0_c01097{height:1262.880000px;}
.h1_c01097{height:1263.000000px;}
.w4_c01097{width:190.470000px;}
.w3_c01097{width:190.635000px;}
.w2_c01097{width:892.957500px;}
.w0_c01097{width:892.980000px;}
.w1_c01097{width:893.250000px;}
.x0_c01097{left:0.000000px;}
.x1_c01097{left:138.276000px;}
.xa_c01097{left:156.630000px;}
.x4_c01097{left:340.815000px;}
.x9_c01097{left:354.315000px;}
.x5_c01097{left:546.202500px;}
.x7_c01097{left:562.402500px;}
.x6_c01097{left:566.205000px;}
.xb_c01097{left:571.080000px;}
.x8_c01097{left:582.405000px;}
.x2_c01097{left:589.042500px;}
.x3_c01097{left:609.045000px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls5_c01097{letter-spacing:-0.512000pt;}
.ls6_c01097{letter-spacing:-0.220267pt;}
.ls2_c01097{letter-spacing:-0.161067pt;}
.ls7_c01097{letter-spacing:-0.135467pt;}
.ls1_c01097{letter-spacing:0.000000pt;}
.ls3_c01097{letter-spacing:0.128000pt;}
.ls0_c01097{letter-spacing:0.135467pt;}
.ls4_c01097{letter-spacing:0.256000pt;}
.ws2_c01097{word-spacing:-18.833707pt;}
.ws3_c01097{word-spacing:-18.698240pt;}
.ws1_c01097{word-spacing:-18.048000pt;}
.ws0_c01097{word-spacing:-17.792000pt;}
.ws4_c01097{word-spacing:0.000000pt;}
._9_c01097{margin-left:-4.725333pt;}
._8_c01097{margin-left:-3.712000pt;}
._4_c01097{margin-left:-2.400986pt;}
._0_c01097{margin-left:-1.119014pt;}
._3_c01097{width:1.024000pt;}
._7_c01097{width:2.182234pt;}
._13_c01097{width:3.072000pt;}
._12_c01097{width:4.288000pt;}
._14_c01097{width:5.359078pt;}
._11_c01097{width:6.784000pt;}
._1_c01097{width:8.320000pt;}
._2_c01097{width:9.216000pt;}
._a_c01097{width:10.944000pt;}
._b_c01097{width:11.968000pt;}
._6_c01097{width:13.288589pt;}
._5_c01097{width:14.506688pt;}
._c_c01097{width:16.256000pt;}
._17_c01097{width:20.288000pt;}
._18_c01097{width:21.194667pt;}
._16_c01097{width:25.536000pt;}
._15_c01097{width:31.232000pt;}
._10_c01097{width:33.920000pt;}
._f_c01097{width:35.072000pt;}
._e_c01097{width:37.696000pt;}
._d_c01097{width:38.656000pt;}
.fs3_c01097{font-size:34.560000pt;}
.fs2_c01097{font-size:42.880000pt;}
.fs4_c01097{font-size:53.120000pt;}
.fs0_c01097{font-size:58.880000pt;}
.fs1_c01097{font-size:64.000000pt;}
.y0_c01097{bottom:0.000000pt;}
.y39_c01097{bottom:3.200000pt;}
.y3b_c01097{bottom:3.360000pt;}
.y38_c01097{bottom:19.840000pt;}
.y4_c01097{bottom:63.232000pt;}
.y3_c01097{bottom:93.792000pt;}
.y36_c01097{bottom:110.912000pt;}
.y35_c01097{bottom:115.552000pt;}
.y34_c01097{bottom:127.072000pt;}
.y33_c01097{bottom:131.712000pt;}
.y32_c01097{bottom:143.386667pt;}
.y31_c01097{bottom:159.546667pt;}
.y30_c01097{bottom:175.706667pt;}
.y2f_c01097{bottom:180.346667pt;}
.y2e_c01097{bottom:205.306667pt;}
.y2d_c01097{bottom:256.386667pt;}
.y2c_c01097{bottom:276.226667pt;}
.y2b_c01097{bottom:295.906667pt;}
.y2a_c01097{bottom:315.906667pt;}
.y29_c01097{bottom:335.906667pt;}
.y27_c01097{bottom:355.586667pt;}
.y28_c01097{bottom:360.866667pt;}
.y26_c01097{bottom:375.426667pt;}
.y25_c01097{bottom:395.266667pt;}
.y24_c01097{bottom:415.106667pt;}
.y23_c01097{bottom:435.106667pt;}
.y22_c01097{bottom:454.786667pt;}
.y20_c01097{bottom:474.786667pt;}
.y21_c01097{bottom:479.426667pt;}
.y1f_c01097{bottom:494.466667pt;}
.y1e_c01097{bottom:514.493333pt;}
.y1d_c01097{bottom:534.333333pt;}
.y1c_c01097{bottom:554.173333pt;}
.y1b_c01097{bottom:574.173333pt;}
.y3a_c01097{bottom:594.973333pt;}
.y37_c01097{bottom:597.053333pt;}
.y1a_c01097{bottom:604.733333pt;}
.y19_c01097{bottom:624.413333pt;}
.y18_c01097{bottom:644.253333pt;}
.y17_c01097{bottom:664.093333pt;}
.y16_c01097{bottom:683.933333pt;}
.y15_c01097{bottom:703.773333pt;}
.y14_c01097{bottom:723.613333pt;}
.y13_c01097{bottom:743.453333pt;}
.y12_c01097{bottom:763.333333pt;}
.y11_c01097{bottom:783.173333pt;}
.y10_c01097{bottom:803.013333pt;}
.yf_c01097{bottom:823.173333pt;}
.ye_c01097{bottom:842.853333pt;}
.yd_c01097{bottom:862.693333pt;}
.yc_c01097{bottom:882.693333pt;}
.ya_c01097{bottom:902.533333pt;}
.yb_c01097{bottom:907.173333pt;}
.y9_c01097{bottom:922.213333pt;}
.y8_c01097{bottom:942.053333pt;}
.y7_c01097{bottom:962.053333pt;}
.y6_c01097{bottom:981.893333pt;}
.y5_c01097{bottom:1012.480000pt;}
.y2_c01097{bottom:1031.200000pt;}
.y1_c01097{bottom:1062.080000pt;}
.hb_c01097{height:32.000000pt;}
.h9_c01097{height:36.875520pt;}
.h7_c01097{height:38.336562pt;}
.h8_c01097{height:38.441250pt;}
.h2_c01097{height:42.722500pt;}
.h3_c01097{height:44.468750pt;}
.hc_c01097{height:47.491563pt;}
.ha_c01097{height:56.679040pt;}
.h5_c01097{height:57.375000pt;}
.h4_c01097{height:57.781250pt;}
.h6_c01097{height:1122.546667pt;}
.h0_c01097{height:1122.560000pt;}
.h1_c01097{height:1122.666667pt;}
.w4_c01097{width:169.306667pt;}
.w3_c01097{width:169.453333pt;}
.w2_c01097{width:793.740000pt;}
.w0_c01097{width:793.760000pt;}
.w1_c01097{width:794.000000pt;}
.x0_c01097{left:0.000000pt;}
.x1_c01097{left:122.912000pt;}
.xa_c01097{left:139.226667pt;}
.x4_c01097{left:302.946667pt;}
.x9_c01097{left:314.946667pt;}
.x5_c01097{left:485.513333pt;}
.x7_c01097{left:499.913333pt;}
.x6_c01097{left:503.293333pt;}
.xb_c01097{left:507.626667pt;}
.x8_c01097{left:517.693333pt;}
.x2_c01097{left:523.593333pt;}
.x3_c01097{left:541.373333pt;}
}





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

.ir_c01098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01098;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01098;src:url('chunks/assets/font_99e604469379bd2f8e32a8be.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01098;src:url('chunks/assets/font_228da59e89ab1c17ada578b3.woff2')format("woff");}.ff4_c01098{font-family:ff4_c01098;line-height:1.106934;font-style:normal;font-weight: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_c01098;src:url('chunks/assets/font_140a3a1f0179ae9c66569f30.woff2')format("woff");}.ff5_c01098{font-family:ff5_c01098;line-height:1.104492;font-style:normal;font-weight: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_c01098;src:url('chunks/assets/font_6f09165104477db4b5982f1f.woff2')format("woff");}.ff6_c01098{font-family:ff6_c01098;line-height:1.575000;font-style:normal;font-weight: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_c01098;src:url('chunks/assets/font_669d76efe00af2d7d98320eb.woff2')format("woff");}.ff7_c01098{font-family:ff7_c01098;line-height:1.181152;font-style:normal;font-weight: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_c01098;src:url('chunks/assets/font_c29865d7c38f6fd2088381f0.woff2')format("woff");}.ff8_c01098{font-family:ff8_c01098;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01098{vertical-align:0.000000px;}
.ls6_c01098{letter-spacing:-0.432000px;}
.ls7_c01098{letter-spacing:-0.247800px;}
.ls3_c01098{letter-spacing:-0.181200px;}
.ls8_c01098{letter-spacing:-0.152400px;}
.ls2_c01098{letter-spacing:-0.144000px;}
.ls1_c01098{letter-spacing:0.000000px;}
.ls4_c01098{letter-spacing:0.144000px;}
.ls0_c01098{letter-spacing:0.152400px;}
.ls5_c01098{letter-spacing:0.288000px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01098{word-spacing:-21.187920px;}
.ws1_c01098{word-spacing:-20.016000px;}
.ws0_c01098{word-spacing:-19.872000px;}
.ws3_c01098{word-spacing:0.000000px;}
._12_c01098{margin-left:-4.874850px;}
._3_c01098{margin-left:-3.710293px;}
._2_c01098{margin-left:-2.616000px;}
._0_c01098{margin-left:-1.390841px;}
._1_c01098{width:1.872000px;}
._b_c01098{width:3.081707px;}
._10_c01098{width:4.334293px;}
._11_c01098{width:5.692539px;}
._5_c01098{width:9.273707px;}
._4_c01098{width:10.728000px;}
._f_c01098{width:16.844524px;}
._e_c01098{width:17.928000px;}
._7_c01098{width:22.437683px;}
._6_c01098{width:23.544000px;}
._d_c01098{width:25.776000px;}
._c_c01098{width:27.264024px;}
._a_c01098{width:39.240000px;}
._9_c01098{width:40.320000px;}
._8_c01098{width:51.552000px;}
._13_c01098{width:86.410817px;}
.fc0_c01098{color:rgb(0,0,0);}
.fs3_c01098{font-size:38.880000px;}
.fs2_c01098{font-size:48.240000px;}
.fs5_c01098{font-size:54.000000px;}
.fs4_c01098{font-size:59.760000px;}
.fs0_c01098{font-size:66.240000px;}
.fs1_c01098{font-size:72.000000px;}
.y0_c01098{bottom:0.000000px;}
.y3d_c01098{bottom:19.980000px;}
.y4_c01098{bottom:71.136000px;}
.y3_c01098{bottom:105.516000px;}
.y3b_c01098{bottom:124.776000px;}
.y3a_c01098{bottom:142.956000px;}
.y39_c01098{bottom:148.176000px;}
.y38_c01098{bottom:161.310000px;}
.y37_c01098{bottom:166.530000px;}
.y36_c01098{bottom:179.490000px;}
.y35_c01098{bottom:197.670000px;}
.y34_c01098{bottom:202.890000px;}
.y33_c01098{bottom:215.850000px;}
.y32_c01098{bottom:234.210000px;}
.y31_c01098{bottom:252.390000px;}
.y30_c01098{bottom:257.610000px;}
.y2f_c01098{bottom:270.570000px;}
.y2e_c01098{bottom:288.795000px;}
.y2d_c01098{bottom:294.015000px;}
.y2c_c01098{bottom:322.095000px;}
.y2b_c01098{bottom:389.775000px;}
.y2a_c01098{bottom:412.095000px;}
.y29_c01098{bottom:434.415000px;}
.y28_c01098{bottom:456.735000px;}
.y27_c01098{bottom:479.235000px;}
.y26_c01098{bottom:501.375000px;}
.y25_c01098{bottom:523.695000px;}
.y23_c01098{bottom:546.015000px;}
.y24_c01098{bottom:551.955000px;}
.y22_c01098{bottom:568.365000px;}
.y21_c01098{bottom:590.685000px;}
.y1f_c01098{bottom:613.185000px;}
.y20_c01098{bottom:619.125000px;}
.y1e_c01098{bottom:635.325000px;}
.y1d_c01098{bottom:657.645000px;}
.y1c_c01098{bottom:680.325000px;}
.y1b_c01098{bottom:702.465000px;}
.y3c_c01098{bottom:720.825000px;}
.y19_c01098{bottom:724.785000px;}
.y1a_c01098{bottom:730.725000px;}
.y18_c01098{bottom:747.105000px;}
.y17_c01098{bottom:769.425000px;}
.y15_c01098{bottom:791.745000px;}
.y16_c01098{bottom:797.685000px;}
.y14_c01098{bottom:814.065000px;}
.y13_c01098{bottom:836.385000px;}
.y12_c01098{bottom:858.750000px;}
.y11_c01098{bottom:881.070000px;}
.y10_c01098{bottom:903.390000px;}
.yf_c01098{bottom:925.890000px;}
.yd_c01098{bottom:948.210000px;}
.ye_c01098{bottom:954.150000px;}
.yc_c01098{bottom:970.530000px;}
.yb_c01098{bottom:992.850000px;}
.ya_c01098{bottom:1015.170000px;}
.y9_c01098{bottom:1049.730000px;}
.y8_c01098{bottom:1072.050000px;}
.y7_c01098{bottom:1094.370000px;}
.y6_c01098{bottom:1116.510000px;}
.y5_c01098{bottom:1138.860000px;}
.y2_c01098{bottom:1160.100000px;}
.y1_c01098{bottom:1194.840000px;}
.h9_c01098{height:33.660000px;}
.h7_c01098{height:41.484960px;}
.h6_c01098{height:43.246406px;}
.h3_c01098{height:50.027344px;}
.h2_c01098{height:50.229844px;}
.ha_c01098{height:53.428008px;}
.h8_c01098{height:63.763920px;}
.h4_c01098{height:64.546875px;}
.h5_c01098{height:1262.865000px;}
.h0_c01098{height:1262.880000px;}
.h1_c01098{height:1263.000000px;}
.w3_c01098{width:171.555000px;}
.w2_c01098{width:892.957500px;}
.w0_c01098{width:892.980000px;}
.w1_c01098{width:893.250000px;}
.x0_c01098{left:0.000000px;}
.x2_c01098{left:138.276000px;}
.xf_c01098{left:156.630000px;}
.x1_c01098{left:169.950000px;}
.x8_c01098{left:177.307500px;}
.xa_c01098{left:191.167500px;}
.x9_c01098{left:197.310000px;}
.xb_c01098{left:211.170000px;}
.xe_c01098{left:354.315000px;}
.x6_c01098{left:425.572500px;}
.x7_c01098{left:445.575000px;}
.xc_c01098{left:532.702500px;}
.xd_c01098{left:552.705000px;}
.x4_c01098{left:558.802500px;}
.x5_c01098{left:578.805000px;}
.x10_c01098{left:592.860000px;}
.x3_c01098{left:738.510000px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls6_c01098{letter-spacing:-0.384000pt;}
.ls7_c01098{letter-spacing:-0.220267pt;}
.ls3_c01098{letter-spacing:-0.161067pt;}
.ls8_c01098{letter-spacing:-0.135467pt;}
.ls2_c01098{letter-spacing:-0.128000pt;}
.ls1_c01098{letter-spacing:0.000000pt;}
.ls4_c01098{letter-spacing:0.128000pt;}
.ls0_c01098{letter-spacing:0.135467pt;}
.ls5_c01098{letter-spacing:0.256000pt;}
.ws2_c01098{word-spacing:-18.833707pt;}
.ws1_c01098{word-spacing:-17.792000pt;}
.ws0_c01098{word-spacing:-17.664000pt;}
.ws3_c01098{word-spacing:0.000000pt;}
._12_c01098{margin-left:-4.333200pt;}
._3_c01098{margin-left:-3.298039pt;}
._2_c01098{margin-left:-2.325333pt;}
._0_c01098{margin-left:-1.236303pt;}
._1_c01098{width:1.664000pt;}
._b_c01098{width:2.739295pt;}
._10_c01098{width:3.852705pt;}
._11_c01098{width:5.060035pt;}
._5_c01098{width:8.243295pt;}
._4_c01098{width:9.536000pt;}
._f_c01098{width:14.972910pt;}
._e_c01098{width:15.936000pt;}
._7_c01098{width:19.944607pt;}
._6_c01098{width:20.928000pt;}
._d_c01098{width:22.912000pt;}
._c_c01098{width:24.234688pt;}
._a_c01098{width:34.880000pt;}
._9_c01098{width:35.840000pt;}
._8_c01098{width:45.824000pt;}
._13_c01098{width:76.809615pt;}
.fs3_c01098{font-size:34.560000pt;}
.fs2_c01098{font-size:42.880000pt;}
.fs5_c01098{font-size:48.000000pt;}
.fs4_c01098{font-size:53.120000pt;}
.fs0_c01098{font-size:58.880000pt;}
.fs1_c01098{font-size:64.000000pt;}
.y0_c01098{bottom:0.000000pt;}
.y3d_c01098{bottom:17.760000pt;}
.y4_c01098{bottom:63.232000pt;}
.y3_c01098{bottom:93.792000pt;}
.y3b_c01098{bottom:110.912000pt;}
.y3a_c01098{bottom:127.072000pt;}
.y39_c01098{bottom:131.712000pt;}
.y38_c01098{bottom:143.386667pt;}
.y37_c01098{bottom:148.026667pt;}
.y36_c01098{bottom:159.546667pt;}
.y35_c01098{bottom:175.706667pt;}
.y34_c01098{bottom:180.346667pt;}
.y33_c01098{bottom:191.866667pt;}
.y32_c01098{bottom:208.186667pt;}
.y31_c01098{bottom:224.346667pt;}
.y30_c01098{bottom:228.986667pt;}
.y2f_c01098{bottom:240.506667pt;}
.y2e_c01098{bottom:256.706667pt;}
.y2d_c01098{bottom:261.346667pt;}
.y2c_c01098{bottom:286.306667pt;}
.y2b_c01098{bottom:346.466667pt;}
.y2a_c01098{bottom:366.306667pt;}
.y29_c01098{bottom:386.146667pt;}
.y28_c01098{bottom:405.986667pt;}
.y27_c01098{bottom:425.986667pt;}
.y26_c01098{bottom:445.666667pt;}
.y25_c01098{bottom:465.506667pt;}
.y23_c01098{bottom:485.346667pt;}
.y24_c01098{bottom:490.626667pt;}
.y22_c01098{bottom:505.213333pt;}
.y21_c01098{bottom:525.053333pt;}
.y1f_c01098{bottom:545.053333pt;}
.y20_c01098{bottom:550.333333pt;}
.y1e_c01098{bottom:564.733333pt;}
.y1d_c01098{bottom:584.573333pt;}
.y1c_c01098{bottom:604.733333pt;}
.y1b_c01098{bottom:624.413333pt;}
.y3c_c01098{bottom:640.733333pt;}
.y19_c01098{bottom:644.253333pt;}
.y1a_c01098{bottom:649.533333pt;}
.y18_c01098{bottom:664.093333pt;}
.y17_c01098{bottom:683.933333pt;}
.y15_c01098{bottom:703.773333pt;}
.y16_c01098{bottom:709.053333pt;}
.y14_c01098{bottom:723.613333pt;}
.y13_c01098{bottom:743.453333pt;}
.y12_c01098{bottom:763.333333pt;}
.y11_c01098{bottom:783.173333pt;}
.y10_c01098{bottom:803.013333pt;}
.yf_c01098{bottom:823.013333pt;}
.yd_c01098{bottom:842.853333pt;}
.ye_c01098{bottom:848.133333pt;}
.yc_c01098{bottom:862.693333pt;}
.yb_c01098{bottom:882.533333pt;}
.ya_c01098{bottom:902.373333pt;}
.y9_c01098{bottom:933.093333pt;}
.y8_c01098{bottom:952.933333pt;}
.y7_c01098{bottom:972.773333pt;}
.y6_c01098{bottom:992.453333pt;}
.y5_c01098{bottom:1012.320000pt;}
.y2_c01098{bottom:1031.200000pt;}
.y1_c01098{bottom:1062.080000pt;}
.h9_c01098{height:29.920000pt;}
.h7_c01098{height:36.875520pt;}
.h6_c01098{height:38.441250pt;}
.h3_c01098{height:44.468750pt;}
.h2_c01098{height:44.648750pt;}
.ha_c01098{height:47.491563pt;}
.h8_c01098{height:56.679040pt;}
.h4_c01098{height:57.375000pt;}
.h5_c01098{height:1122.546667pt;}
.h0_c01098{height:1122.560000pt;}
.h1_c01098{height:1122.666667pt;}
.w3_c01098{width:152.493333pt;}
.w2_c01098{width:793.740000pt;}
.w0_c01098{width:793.760000pt;}
.w1_c01098{width:794.000000pt;}
.x0_c01098{left:0.000000pt;}
.x2_c01098{left:122.912000pt;}
.xf_c01098{left:139.226667pt;}
.x1_c01098{left:151.066667pt;}
.x8_c01098{left:157.606667pt;}
.xa_c01098{left:169.926667pt;}
.x9_c01098{left:175.386667pt;}
.xb_c01098{left:187.706667pt;}
.xe_c01098{left:314.946667pt;}
.x6_c01098{left:378.286667pt;}
.x7_c01098{left:396.066667pt;}
.xc_c01098{left:473.513333pt;}
.xd_c01098{left:491.293333pt;}
.x4_c01098{left:496.713333pt;}
.x5_c01098{left:514.493333pt;}
.x10_c01098{left:526.986667pt;}
.x3_c01098{left:656.453333pt;}
}





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

.ir_c01099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01099;src:url('chunks/assets/font_46eb08c022b6e6b601e70cd0.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01099;src:url('chunks/assets/font_f9fce145c5c00fe0ed4497b5.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01099;src:url('chunks/assets/font_d05cdc0a9b1a94aba4fe855c.woff2')format("woff");}.ff4_c01099{font-family:ff4_c01099;line-height:1.104492;font-style:normal;font-weight: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_c01099;src:url('chunks/assets/font_1d00f887e96467fde9971e34.woff2')format("woff");}.ff5_c01099{font-family:ff5_c01099;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01099{vertical-align:0.000000px;}
.ls1_c01099{letter-spacing:-0.053400px;}
.ls0_c01099{letter-spacing:0.000000px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01099{word-spacing:0.000000px;}
._2_c01099{margin-left:-5.149109px;}
._1_c01099{margin-left:-4.032000px;}
._4_c01099{margin-left:-2.472000px;}
._0_c01099{margin-left:-1.258891px;}
._3_c01099{width:1.086653px;}
._5_c01099{width:2.300016px;}
._6_c01099{width:5.040000px;}
._9_c01099{width:10.152000px;}
._8_c01099{width:11.520000px;}
._7_c01099{width:21.240000px;}
.fc0_c01099{color:rgb(0,0,0);}
.fs2_c01099{font-size:59.760000px;}
.fs0_c01099{font-size:66.240000px;}
.fs1_c01099{font-size:72.000000px;}
.y0_c01099{bottom:0.000000px;}
.y4_c01099{bottom:71.136000px;}
.y3_c01099{bottom:105.516000px;}
.y13_c01099{bottom:128.376000px;}
.y12_c01099{bottom:150.690000px;}
.y11_c01099{bottom:173.010000px;}
.y10_c01099{bottom:195.510000px;}
.yf_c01099{bottom:217.650000px;}
.ye_c01099{bottom:239.970000px;}
.yd_c01099{bottom:274.530000px;}
.yc_c01099{bottom:307.875000px;}
.yb_c01099{bottom:338.655000px;}
.ya_c01099{bottom:366.015000px;}
.y9_c01099{bottom:718.305000px;}
.y8_c01099{bottom:745.485000px;}
.y7_c01099{bottom:1094.370000px;}
.y6_c01099{bottom:1116.690000px;}
.y5_c01099{bottom:1138.860000px;}
.y2_c01099{bottom:1160.100000px;}
.y1_c01099{bottom:1194.840000px;}
.h2_c01099{height:48.062812px;}
.h3_c01099{height:50.027344px;}
.h5_c01099{height:53.573906px;}
.h4_c01099{height:64.546875px;}
.h6_c01099{height:65.003906px;}
.h0_c01099{height:1262.880000px;}
.h1_c01099{height:1263.000000px;}
.w0_c01099{width:892.980000px;}
.w1_c01099{width:893.250000px;}
.x0_c01099{left:0.000000px;}
.x1_c01099{left:138.276000px;}
.x2_c01099{left:699.450000px;}
.x3_c01099{left:702.690000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls1_c01099{letter-spacing:-0.047467pt;}
.ls0_c01099{letter-spacing:0.000000pt;}
.ws0_c01099{word-spacing:0.000000pt;}
._2_c01099{margin-left:-4.576986pt;}
._1_c01099{margin-left:-3.584000pt;}
._4_c01099{margin-left:-2.197333pt;}
._0_c01099{margin-left:-1.119014pt;}
._3_c01099{width:0.965914pt;}
._5_c01099{width:2.044459pt;}
._6_c01099{width:4.480000pt;}
._9_c01099{width:9.024000pt;}
._8_c01099{width:10.240000pt;}
._7_c01099{width:18.880000pt;}
.fs2_c01099{font-size:53.120000pt;}
.fs0_c01099{font-size:58.880000pt;}
.fs1_c01099{font-size:64.000000pt;}
.y0_c01099{bottom:0.000000pt;}
.y4_c01099{bottom:63.232000pt;}
.y3_c01099{bottom:93.792000pt;}
.y13_c01099{bottom:114.112000pt;}
.y12_c01099{bottom:133.946667pt;}
.y11_c01099{bottom:153.786667pt;}
.y10_c01099{bottom:173.786667pt;}
.yf_c01099{bottom:193.466667pt;}
.ye_c01099{bottom:213.306667pt;}
.yd_c01099{bottom:244.026667pt;}
.yc_c01099{bottom:273.666667pt;}
.yb_c01099{bottom:301.026667pt;}
.ya_c01099{bottom:325.346667pt;}
.y9_c01099{bottom:638.493333pt;}
.y8_c01099{bottom:662.653333pt;}
.y7_c01099{bottom:972.773333pt;}
.y6_c01099{bottom:992.613333pt;}
.y5_c01099{bottom:1012.320000pt;}
.y2_c01099{bottom:1031.200000pt;}
.y1_c01099{bottom:1062.080000pt;}
.h2_c01099{height:42.722500pt;}
.h3_c01099{height:44.468750pt;}
.h5_c01099{height:47.621250pt;}
.h4_c01099{height:57.375000pt;}
.h6_c01099{height:57.781250pt;}
.h0_c01099{height:1122.560000pt;}
.h1_c01099{height:1122.666667pt;}
.w0_c01099{width:793.760000pt;}
.w1_c01099{width:794.000000pt;}
.x0_c01099{left:0.000000pt;}
.x1_c01099{left:122.912000pt;}
.x2_c01099{left:621.733333pt;}
.x3_c01099{left:624.613333pt;}
}





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

.ir_c01100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01100;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01100;src:url('chunks/assets/font_418e6a925ada8810d4f25133.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01100;src:url('chunks/assets/font_9b70bc844808a1f7aa2708d9.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.106934;font-style:normal;font-weight: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_c01100;src:url('chunks/assets/font_81b0a2195e541380abb95aff.woff2')format("woff");}.ff5_c01100{font-family:ff5_c01100;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.ls2_c01100{letter-spacing:-0.432000px;}
.ls1_c01100{letter-spacing:0.000000px;}
.ls0_c01100{letter-spacing:0.288000px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01100{word-spacing:-20.304000px;}
.ws0_c01100{word-spacing:-20.016000px;}
.ws2_c01100{word-spacing:0.000000px;}
._11_c01100{margin-left:-5.904000px;}
._10_c01100{margin-left:-4.824000px;}
._c_c01100{margin-left:-3.816000px;}
._f_c01100{margin-left:-2.736000px;}
._0_c01100{margin-left:-1.390841px;}
._4_c01100{width:1.042865px;}
._3_c01100{width:2.147976px;}
._6_c01100{width:3.384000px;}
._5_c01100{width:4.392000px;}
._d_c01100{width:5.616000px;}
._e_c01100{width:7.416000px;}
._16_c01100{width:8.640000px;}
._8_c01100{width:10.152000px;}
._9_c01100{width:11.304000px;}
._a_c01100{width:12.672000px;}
._b_c01100{width:13.968000px;}
._7_c01100{width:15.070841px;}
._2_c01100{width:16.128000px;}
._1_c01100{width:17.136000px;}
._1b_c01100{width:22.246865px;}
._1a_c01100{width:23.328000px;}
._14_c01100{width:24.912000px;}
._15_c01100{width:26.026865px;}
._17_c01100{width:33.696000px;}
._13_c01100{width:42.934841px;}
._12_c01100{width:44.424000px;}
._19_c01100{width:50.184000px;}
._18_c01100{width:51.672024px;}
.fc0_c01100{color:rgb(0,0,0);}
.fs2_c01100{font-size:59.760000px;}
.fs0_c01100{font-size:66.240000px;}
.fs1_c01100{font-size:72.000000px;}
.y0_c01100{bottom:0.000000px;}
.y35_c01100{bottom:2.505000px;}
.y32_c01100{bottom:7.740000px;}
.y34_c01100{bottom:21.045000px;}
.y4_c01100{bottom:71.136000px;}
.y3_c01100{bottom:105.516000px;}
.y30_c01100{bottom:142.416000px;}
.y33_c01100{bottom:156.465000px;}
.y2f_c01100{bottom:164.550000px;}
.y2e_c01100{bottom:186.870000px;}
.y2d_c01100{bottom:209.370000px;}
.y2c_c01100{bottom:231.690000px;}
.y2b_c01100{bottom:253.830000px;}
.y2a_c01100{bottom:276.330000px;}
.y29_c01100{bottom:298.695000px;}
.y28_c01100{bottom:321.195000px;}
.y27_c01100{bottom:343.515000px;}
.y26_c01100{bottom:365.655000px;}
.y25_c01100{bottom:387.975000px;}
.y24_c01100{bottom:410.295000px;}
.y23_c01100{bottom:432.615000px;}
.y22_c01100{bottom:454.935000px;}
.y21_c01100{bottom:477.255000px;}
.y20_c01100{bottom:499.935000px;}
.y1f_c01100{bottom:522.075000px;}
.y1e_c01100{bottom:556.455000px;}
.y1d_c01100{bottom:578.625000px;}
.y1c_c01100{bottom:601.125000px;}
.y1b_c01100{bottom:623.445000px;}
.y1a_c01100{bottom:645.765000px;}
.y19_c01100{bottom:668.085000px;}
.y18_c01100{bottom:702.645000px;}
.y17_c01100{bottom:724.785000px;}
.y31_c01100{bottom:739.905000px;}
.y16_c01100{bottom:747.285000px;}
.y15_c01100{bottom:769.425000px;}
.y14_c01100{bottom:791.745000px;}
.y13_c01100{bottom:814.065000px;}
.y12_c01100{bottom:836.385000px;}
.y11_c01100{bottom:858.750000px;}
.y10_c01100{bottom:881.070000px;}
.yf_c01100{bottom:903.390000px;}
.ye_c01100{bottom:925.890000px;}
.yd_c01100{bottom:948.390000px;}
.yc_c01100{bottom:970.530000px;}
.yb_c01100{bottom:992.850000px;}
.ya_c01100{bottom:1015.170000px;}
.y9_c01100{bottom:1037.490000px;}
.y8_c01100{bottom:1059.810000px;}
.y7_c01100{bottom:1082.130000px;}
.y6_c01100{bottom:1116.690000px;}
.y5_c01100{bottom:1138.860000px;}
.y2_c01100{bottom:1160.100000px;}
.y1_c01100{bottom:1194.840000px;}
.h5_c01100{height:21.420000px;}
.h7_c01100{height:34.740000px;}
.h3_c01100{height:50.027344px;}
.h2_c01100{height:50.229844px;}
.h6_c01100{height:53.428008px;}
.h4_c01100{height:64.546875px;}
.h0_c01100{height:1262.880000px;}
.h1_c01100{height:1263.000000px;}
.w2_c01100{width:232.590000px;}
.w3_c01100{width:270.930000px;}
.w0_c01100{width:892.980000px;}
.w1_c01100{width:893.250000px;}
.x0_c01100{left:0.000000px;}
.x2_c01100{left:138.276000px;}
.x1_c01100{left:169.950000px;}
.x4_c01100{left:381.315000px;}
.x5_c01100{left:500.160000px;}
.x3_c01100{left:738.510000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls2_c01100{letter-spacing:-0.384000pt;}
.ls1_c01100{letter-spacing:0.000000pt;}
.ls0_c01100{letter-spacing:0.256000pt;}
.ws1_c01100{word-spacing:-18.048000pt;}
.ws0_c01100{word-spacing:-17.792000pt;}
.ws2_c01100{word-spacing:0.000000pt;}
._11_c01100{margin-left:-5.248000pt;}
._10_c01100{margin-left:-4.288000pt;}
._c_c01100{margin-left:-3.392000pt;}
._f_c01100{margin-left:-2.432000pt;}
._0_c01100{margin-left:-1.236303pt;}
._4_c01100{width:0.926991pt;}
._3_c01100{width:1.909312pt;}
._6_c01100{width:3.008000pt;}
._5_c01100{width:3.904000pt;}
._d_c01100{width:4.992000pt;}
._e_c01100{width:6.592000pt;}
._16_c01100{width:7.680000pt;}
._8_c01100{width:9.024000pt;}
._9_c01100{width:10.048000pt;}
._a_c01100{width:11.264000pt;}
._b_c01100{width:12.416000pt;}
._7_c01100{width:13.396303pt;}
._2_c01100{width:14.336000pt;}
._1_c01100{width:15.232000pt;}
._1b_c01100{width:19.774991pt;}
._1a_c01100{width:20.736000pt;}
._14_c01100{width:22.144000pt;}
._15_c01100{width:23.134991pt;}
._17_c01100{width:29.952000pt;}
._13_c01100{width:38.164303pt;}
._12_c01100{width:39.488000pt;}
._19_c01100{width:44.608000pt;}
._18_c01100{width:45.930688pt;}
.fs2_c01100{font-size:53.120000pt;}
.fs0_c01100{font-size:58.880000pt;}
.fs1_c01100{font-size:64.000000pt;}
.y0_c01100{bottom:0.000000pt;}
.y35_c01100{bottom:2.226667pt;}
.y32_c01100{bottom:6.880000pt;}
.y34_c01100{bottom:18.706667pt;}
.y4_c01100{bottom:63.232000pt;}
.y3_c01100{bottom:93.792000pt;}
.y30_c01100{bottom:126.592000pt;}
.y33_c01100{bottom:139.080000pt;}
.y2f_c01100{bottom:146.266667pt;}
.y2e_c01100{bottom:166.106667pt;}
.y2d_c01100{bottom:186.106667pt;}
.y2c_c01100{bottom:205.946667pt;}
.y2b_c01100{bottom:225.626667pt;}
.y2a_c01100{bottom:245.626667pt;}
.y29_c01100{bottom:265.506667pt;}
.y28_c01100{bottom:285.506667pt;}
.y27_c01100{bottom:305.346667pt;}
.y26_c01100{bottom:325.026667pt;}
.y25_c01100{bottom:344.866667pt;}
.y24_c01100{bottom:364.706667pt;}
.y23_c01100{bottom:384.546667pt;}
.y22_c01100{bottom:404.386667pt;}
.y21_c01100{bottom:424.226667pt;}
.y20_c01100{bottom:444.386667pt;}
.y1f_c01100{bottom:464.066667pt;}
.y1e_c01100{bottom:494.626667pt;}
.y1d_c01100{bottom:514.333333pt;}
.y1c_c01100{bottom:534.333333pt;}
.y1b_c01100{bottom:554.173333pt;}
.y1a_c01100{bottom:574.013333pt;}
.y19_c01100{bottom:593.853333pt;}
.y18_c01100{bottom:624.573333pt;}
.y17_c01100{bottom:644.253333pt;}
.y31_c01100{bottom:657.693333pt;}
.y16_c01100{bottom:664.253333pt;}
.y15_c01100{bottom:683.933333pt;}
.y14_c01100{bottom:703.773333pt;}
.y13_c01100{bottom:723.613333pt;}
.y12_c01100{bottom:743.453333pt;}
.y11_c01100{bottom:763.333333pt;}
.y10_c01100{bottom:783.173333pt;}
.yf_c01100{bottom:803.013333pt;}
.ye_c01100{bottom:823.013333pt;}
.yd_c01100{bottom:843.013333pt;}
.yc_c01100{bottom:862.693333pt;}
.yb_c01100{bottom:882.533333pt;}
.ya_c01100{bottom:902.373333pt;}
.y9_c01100{bottom:922.213333pt;}
.y8_c01100{bottom:942.053333pt;}
.y7_c01100{bottom:961.893333pt;}
.y6_c01100{bottom:992.613333pt;}
.y5_c01100{bottom:1012.320000pt;}
.y2_c01100{bottom:1031.200000pt;}
.y1_c01100{bottom:1062.080000pt;}
.h5_c01100{height:19.040000pt;}
.h7_c01100{height:30.880000pt;}
.h3_c01100{height:44.468750pt;}
.h2_c01100{height:44.648750pt;}
.h6_c01100{height:47.491563pt;}
.h4_c01100{height:57.375000pt;}
.h0_c01100{height:1122.560000pt;}
.h1_c01100{height:1122.666667pt;}
.w2_c01100{width:206.746667pt;}
.w3_c01100{width:240.826667pt;}
.w0_c01100{width:793.760000pt;}
.w1_c01100{width:794.000000pt;}
.x0_c01100{left:0.000000pt;}
.x2_c01100{left:122.912000pt;}
.x1_c01100{left:151.066667pt;}
.x4_c01100{left:338.946667pt;}
.x5_c01100{left:444.586667pt;}
.x3_c01100{left:656.453333pt;}
}





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

.ir_c01101:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01101;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01101;src:url('chunks/assets/font_8d1b8e0618e321452203a205.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01101;src:url('chunks/assets/font_eeeceee904712c32d88b704c.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01101;src:url('chunks/assets/font_465b6635e604ab15dcb35d20.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01101;src:url('chunks/assets/font_3bdf5a9898e850fea92e81b2.woff2')format("woff");}.ff5_c01101{font-family:ff5_c01101;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01101;src:url('chunks/assets/font_47c3cd7cf15627560aa4a238.woff2')format("woff");}.ff6_c01101{font-family:ff6_c01101;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01101{vertical-align:0.000000px;}
.ls6_c01101{letter-spacing:-0.247800px;}
.ls4_c01101{letter-spacing:-0.181200px;}
.ls3_c01101{letter-spacing:-0.144000px;}
.ls5_c01101{letter-spacing:-0.053400px;}
.ls1_c01101{letter-spacing:0.000000px;}
.ls0_c01101{letter-spacing:0.144000px;}
.ls7_c01101{letter-spacing:0.152400px;}
.ls2_c01101{letter-spacing:0.288000px;}
.sc__c01101{text-shadow:none;}
.sc0_c01101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01101{-webkit-text-stroke:0px transparent;}
.sc0_c01101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01101{word-spacing:-21.187920px;}
.ws0_c01101{word-spacing:-19.872000px;}
.ws2_c01101{word-spacing:0.000000px;}
._0_c01101{margin-left:-1.258891px;}
._2_c01101{width:1.198915px;}
._1_c01101{width:3.168000px;}
._4_c01101{width:4.248000px;}
._3_c01101{width:14.040000px;}
.fc0_c01101{color:rgb(0,0,0);}
.fs4_c01101{font-size:38.880000px;}
.fs2_c01101{font-size:48.240000px;}
.fs5_c01101{font-size:54.000000px;}
.fs3_c01101{font-size:59.760000px;}
.fs0_c01101{font-size:66.240000px;}
.fs1_c01101{font-size:72.000000px;}
.y0_c01101{bottom:0.000000px;}
.y4_c01101{bottom:71.136000px;}
.y3_c01101{bottom:105.516000px;}
.y13_c01101{bottom:138.456000px;}
.y12_c01101{bottom:143.676000px;}
.y11_c01101{bottom:171.390000px;}
.y10_c01101{bottom:210.630000px;}
.yf_c01101{bottom:241.410000px;}
.ye_c01101{bottom:268.590000px;}
.yd_c01101{bottom:620.925000px;}
.yc_c01101{bottom:648.285000px;}
.yb_c01101{bottom:1015.530000px;}
.y9_c01101{bottom:1049.910000px;}
.ya_c01101{bottom:1055.130000px;}
.y8_c01101{bottom:1072.050000px;}
.y7_c01101{bottom:1094.370000px;}
.y6_c01101{bottom:1116.690000px;}
.y5_c01101{bottom:1138.860000px;}
.y2_c01101{bottom:1160.100000px;}
.y1_c01101{bottom:1194.840000px;}
.ha_c01101{height:41.484960px;}
.h7_c01101{height:43.128633px;}
.h2_c01101{height:48.062812px;}
.h3_c01101{height:50.027344px;}
.h9_c01101{height:53.428008px;}
.h8_c01101{height:53.573906px;}
.hb_c01101{height:63.763920px;}
.h5_c01101{height:64.371094px;}
.h4_c01101{height:64.546875px;}
.h6_c01101{height:1262.865000px;}
.h0_c01101{height:1262.880000px;}
.h1_c01101{height:1263.000000px;}
.w2_c01101{width:892.957500px;}
.w0_c01101{width:892.980000px;}
.w1_c01101{width:893.250000px;}
.x0_c01101{left:0.000000px;}
.x1_c01101{left:138.276000px;}
.x7_c01101{left:156.630000px;}
.x6_c01101{left:354.315000px;}
.x2_c01101{left:363.472500px;}
.x3_c01101{left:383.475000px;}
.x4_c01101{left:701.610000px;}
.x5_c01101{left:702.690000px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.ls6_c01101{letter-spacing:-0.220267pt;}
.ls4_c01101{letter-spacing:-0.161067pt;}
.ls3_c01101{letter-spacing:-0.128000pt;}
.ls5_c01101{letter-spacing:-0.047467pt;}
.ls1_c01101{letter-spacing:0.000000pt;}
.ls0_c01101{letter-spacing:0.128000pt;}
.ls7_c01101{letter-spacing:0.135467pt;}
.ls2_c01101{letter-spacing:0.256000pt;}
.ws1_c01101{word-spacing:-18.833707pt;}
.ws0_c01101{word-spacing:-17.664000pt;}
.ws2_c01101{word-spacing:0.000000pt;}
._0_c01101{margin-left:-1.119014pt;}
._2_c01101{width:1.065702pt;}
._1_c01101{width:2.816000pt;}
._4_c01101{width:3.776000pt;}
._3_c01101{width:12.480000pt;}
.fs4_c01101{font-size:34.560000pt;}
.fs2_c01101{font-size:42.880000pt;}
.fs5_c01101{font-size:48.000000pt;}
.fs3_c01101{font-size:53.120000pt;}
.fs0_c01101{font-size:58.880000pt;}
.fs1_c01101{font-size:64.000000pt;}
.y0_c01101{bottom:0.000000pt;}
.y4_c01101{bottom:63.232000pt;}
.y3_c01101{bottom:93.792000pt;}
.y13_c01101{bottom:123.072000pt;}
.y12_c01101{bottom:127.712000pt;}
.y11_c01101{bottom:152.346667pt;}
.y10_c01101{bottom:187.226667pt;}
.yf_c01101{bottom:214.586667pt;}
.ye_c01101{bottom:238.746667pt;}
.yd_c01101{bottom:551.933333pt;}
.yc_c01101{bottom:576.253333pt;}
.yb_c01101{bottom:902.693333pt;}
.y9_c01101{bottom:933.253333pt;}
.ya_c01101{bottom:937.893333pt;}
.y8_c01101{bottom:952.933333pt;}
.y7_c01101{bottom:972.773333pt;}
.y6_c01101{bottom:992.613333pt;}
.y5_c01101{bottom:1012.320000pt;}
.y2_c01101{bottom:1031.200000pt;}
.y1_c01101{bottom:1062.080000pt;}
.ha_c01101{height:36.875520pt;}
.h7_c01101{height:38.336562pt;}
.h2_c01101{height:42.722500pt;}
.h3_c01101{height:44.468750pt;}
.h9_c01101{height:47.491563pt;}
.h8_c01101{height:47.621250pt;}
.hb_c01101{height:56.679040pt;}
.h5_c01101{height:57.218750pt;}
.h4_c01101{height:57.375000pt;}
.h6_c01101{height:1122.546667pt;}
.h0_c01101{height:1122.560000pt;}
.h1_c01101{height:1122.666667pt;}
.w2_c01101{width:793.740000pt;}
.w0_c01101{width:793.760000pt;}
.w1_c01101{width:794.000000pt;}
.x0_c01101{left:0.000000pt;}
.x1_c01101{left:122.912000pt;}
.x7_c01101{left:139.226667pt;}
.x6_c01101{left:314.946667pt;}
.x2_c01101{left:323.086667pt;}
.x3_c01101{left:340.866667pt;}
.x4_c01101{left:623.653333pt;}
.x5_c01101{left:624.613333pt;}
}





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

.ir_c01102:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01102;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01102;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01102;src:url('chunks/assets/font_99e604469379bd2f8e32a8be.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01102;src:url('chunks/assets/font_1e5b7a8de0e5115d9b596437.woff2')format("woff");}.ff4_c01102{font-family:ff4_c01102;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01102;src:url('chunks/assets/font_784a851c3572c08b524ef314.woff2')format("woff");}.ff5_c01102{font-family:ff5_c01102;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01102;src:url('chunks/assets/font_1ea88539d5d18254fbbe6d0e.woff2')format("woff");}.ff6_c01102{font-family:ff6_c01102;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01102;src:url('chunks/assets/font_134ae785eb683e2ad22cc994.woff2')format("woff");}.ff7_c01102{font-family:ff7_c01102;line-height:1.575000;font-style:normal;font-weight: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_c01102;src:url('chunks/assets/font_a3675716d0a7239bad48324d.woff2')format("woff");}.ff8_c01102{font-family:ff8_c01102;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01102{vertical-align:0.000000px;}
.ls4_c01102{letter-spacing:-0.720000px;}
.ls6_c01102{letter-spacing:-0.247800px;}
.ls3_c01102{letter-spacing:-0.181200px;}
.ls7_c01102{letter-spacing:-0.152400px;}
.ls2_c01102{letter-spacing:0.000000px;}
.ls5_c01102{letter-spacing:0.144000px;}
.ls0_c01102{letter-spacing:0.152400px;}
.ls1_c01102{letter-spacing:0.205680px;}
.sc__c01102{text-shadow:none;}
.sc0_c01102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01102{-webkit-text-stroke:0px transparent;}
.sc0_c01102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01102{word-spacing:-21.187920px;}
.ws1_c01102{word-spacing:-21.035520px;}
.ws0_c01102{word-spacing:-20.016000px;}
.ws3_c01102{word-spacing:0.000000px;}
._6_c01102{margin-left:-4.608000px;}
._7_c01102{margin-left:-3.350620px;}
._0_c01102{margin-left:-1.390841px;}
._4_c01102{width:1.094644px;}
._2_c01102{width:2.120380px;}
._b_c01102{width:3.672000px;}
._8_c01102{width:5.184000px;}
._5_c01102{width:6.192000px;}
._c_c01102{width:7.774865px;}
._3_c01102{width:9.576000px;}
._1_c01102{width:10.704024px;}
._9_c01102{width:11.736000px;}
._a_c01102{width:13.968000px;}
._10_c01102{width:15.249683px;}
._f_c01102{width:16.392000px;}
._e_c01102{width:17.784000px;}
._d_c01102{width:21.288024px;}
.fc0_c01102{color:rgb(0,0,0);}
.fs3_c01102{font-size:38.880000px;}
.fs2_c01102{font-size:48.240000px;}
.fs4_c01102{font-size:59.760000px;}
.fs0_c01102{font-size:66.240000px;}
.fs1_c01102{font-size:72.000000px;}
.y0_c01102{bottom:0.000000px;}
.y37_c01102{bottom:15.135000px;}
.y36_c01102{bottom:33.855000px;}
.y4_c01102{bottom:71.136000px;}
.y3_c01102{bottom:105.516000px;}
.y34_c01102{bottom:124.776000px;}
.y33_c01102{bottom:142.956000px;}
.y32_c01102{bottom:148.176000px;}
.y31_c01102{bottom:161.310000px;}
.y30_c01102{bottom:179.490000px;}
.y2f_c01102{bottom:184.710000px;}
.y2e_c01102{bottom:212.790000px;}
.y2d_c01102{bottom:266.070000px;}
.y2c_c01102{bottom:288.255000px;}
.y2b_c01102{bottom:310.575000px;}
.y2a_c01102{bottom:332.895000px;}
.y29_c01102{bottom:355.395000px;}
.y28_c01102{bottom:377.715000px;}
.y26_c01102{bottom:400.215000px;}
.y27_c01102{bottom:406.155000px;}
.y25_c01102{bottom:422.535000px;}
.y24_c01102{bottom:456.915000px;}
.y35_c01102{bottom:464.640000px;}
.y23_c01102{bottom:479.235000px;}
.y22_c01102{bottom:501.375000px;}
.y21_c01102{bottom:523.875000px;}
.y20_c01102{bottom:546.195000px;}
.y1f_c01102{bottom:568.365000px;}
.y1e_c01102{bottom:590.685000px;}
.y1d_c01102{bottom:613.185000px;}
.y1c_c01102{bottom:635.325000px;}
.y1b_c01102{bottom:657.645000px;}
.y1a_c01102{bottom:680.145000px;}
.y19_c01102{bottom:702.645000px;}
.y18_c01102{bottom:724.785000px;}
.y17_c01102{bottom:747.105000px;}
.y16_c01102{bottom:769.605000px;}
.y15_c01102{bottom:791.745000px;}
.y14_c01102{bottom:814.245000px;}
.y13_c01102{bottom:836.385000px;}
.y12_c01102{bottom:858.750000px;}
.y10_c01102{bottom:881.070000px;}
.y11_c01102{bottom:887.010000px;}
.yf_c01102{bottom:903.390000px;}
.ye_c01102{bottom:925.890000px;}
.yd_c01102{bottom:948.210000px;}
.yc_c01102{bottom:970.530000px;}
.yb_c01102{bottom:992.850000px;}
.ya_c01102{bottom:1015.170000px;}
.y9_c01102{bottom:1037.490000px;}
.y8_c01102{bottom:1059.810000px;}
.y7_c01102{bottom:1082.310000px;}
.y6_c01102{bottom:1104.450000px;}
.y5_c01102{bottom:1139.040000px;}
.y2_c01102{bottom:1160.100000px;}
.y1_c01102{bottom:1194.840000px;}
.h8_c01102{height:41.484960px;}
.h7_c01102{height:43.246406px;}
.ha_c01102{height:47.520000px;}
.h3_c01102{height:50.027344px;}
.h2_c01102{height:50.229844px;}
.hb_c01102{height:53.428008px;}
.h9_c01102{height:63.763920px;}
.h5_c01102{height:64.546875px;}
.h4_c01102{height:65.003906px;}
.h6_c01102{height:1262.865000px;}
.h0_c01102{height:1262.880000px;}
.h1_c01102{height:1263.000000px;}
.w3_c01102{width:200.175000px;}
.w2_c01102{width:892.957500px;}
.w0_c01102{width:892.980000px;}
.w1_c01102{width:893.250000px;}
.x0_c01102{left:0.000000px;}
.x2_c01102{left:138.276000px;}
.x9_c01102{left:156.630000px;}
.x1_c01102{left:169.950000px;}
.x8_c01102{left:354.315000px;}
.x6_c01102{left:495.982500px;}
.x7_c01102{left:515.985000px;}
.x4_c01102{left:522.262500px;}
.x5_c01102{left:542.265000px;}
.xa_c01102{left:561.180000px;}
.x3_c01102{left:738.510000px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls4_c01102{letter-spacing:-0.640000pt;}
.ls6_c01102{letter-spacing:-0.220267pt;}
.ls3_c01102{letter-spacing:-0.161067pt;}
.ls7_c01102{letter-spacing:-0.135467pt;}
.ls2_c01102{letter-spacing:0.000000pt;}
.ls5_c01102{letter-spacing:0.128000pt;}
.ls0_c01102{letter-spacing:0.135467pt;}
.ls1_c01102{letter-spacing:0.182827pt;}
.ws2_c01102{word-spacing:-18.833707pt;}
.ws1_c01102{word-spacing:-18.698240pt;}
.ws0_c01102{word-spacing:-17.792000pt;}
.ws3_c01102{word-spacing:0.000000pt;}
._6_c01102{margin-left:-4.096000pt;}
._7_c01102{margin-left:-2.978329pt;}
._0_c01102{margin-left:-1.236303pt;}
._4_c01102{width:0.973017pt;}
._2_c01102{width:1.884782pt;}
._b_c01102{width:3.264000pt;}
._8_c01102{width:4.608000pt;}
._5_c01102{width:5.504000pt;}
._c_c01102{width:6.910991pt;}
._3_c01102{width:8.512000pt;}
._1_c01102{width:9.514688pt;}
._9_c01102{width:10.432000pt;}
._a_c01102{width:12.416000pt;}
._10_c01102{width:13.555273pt;}
._f_c01102{width:14.570667pt;}
._e_c01102{width:15.808000pt;}
._d_c01102{width:18.922688pt;}
.fs3_c01102{font-size:34.560000pt;}
.fs2_c01102{font-size:42.880000pt;}
.fs4_c01102{font-size:53.120000pt;}
.fs0_c01102{font-size:58.880000pt;}
.fs1_c01102{font-size:64.000000pt;}
.y0_c01102{bottom:0.000000pt;}
.y37_c01102{bottom:13.453333pt;}
.y36_c01102{bottom:30.093333pt;}
.y4_c01102{bottom:63.232000pt;}
.y3_c01102{bottom:93.792000pt;}
.y34_c01102{bottom:110.912000pt;}
.y33_c01102{bottom:127.072000pt;}
.y32_c01102{bottom:131.712000pt;}
.y31_c01102{bottom:143.386667pt;}
.y30_c01102{bottom:159.546667pt;}
.y2f_c01102{bottom:164.186667pt;}
.y2e_c01102{bottom:189.146667pt;}
.y2d_c01102{bottom:236.506667pt;}
.y2c_c01102{bottom:256.226667pt;}
.y2b_c01102{bottom:276.066667pt;}
.y2a_c01102{bottom:295.906667pt;}
.y29_c01102{bottom:315.906667pt;}
.y28_c01102{bottom:335.746667pt;}
.y26_c01102{bottom:355.746667pt;}
.y27_c01102{bottom:361.026667pt;}
.y25_c01102{bottom:375.586667pt;}
.y24_c01102{bottom:406.146667pt;}
.y35_c01102{bottom:413.013333pt;}
.y23_c01102{bottom:425.986667pt;}
.y22_c01102{bottom:445.666667pt;}
.y21_c01102{bottom:465.666667pt;}
.y20_c01102{bottom:485.506667pt;}
.y1f_c01102{bottom:505.213333pt;}
.y1e_c01102{bottom:525.053333pt;}
.y1d_c01102{bottom:545.053333pt;}
.y1c_c01102{bottom:564.733333pt;}
.y1b_c01102{bottom:584.573333pt;}
.y1a_c01102{bottom:604.573333pt;}
.y19_c01102{bottom:624.573333pt;}
.y18_c01102{bottom:644.253333pt;}
.y17_c01102{bottom:664.093333pt;}
.y16_c01102{bottom:684.093333pt;}
.y15_c01102{bottom:703.773333pt;}
.y14_c01102{bottom:723.773333pt;}
.y13_c01102{bottom:743.453333pt;}
.y12_c01102{bottom:763.333333pt;}
.y10_c01102{bottom:783.173333pt;}
.y11_c01102{bottom:788.453333pt;}
.yf_c01102{bottom:803.013333pt;}
.ye_c01102{bottom:823.013333pt;}
.yd_c01102{bottom:842.853333pt;}
.yc_c01102{bottom:862.693333pt;}
.yb_c01102{bottom:882.533333pt;}
.ya_c01102{bottom:902.373333pt;}
.y9_c01102{bottom:922.213333pt;}
.y8_c01102{bottom:942.053333pt;}
.y7_c01102{bottom:962.053333pt;}
.y6_c01102{bottom:981.733333pt;}
.y5_c01102{bottom:1012.480000pt;}
.y2_c01102{bottom:1031.200000pt;}
.y1_c01102{bottom:1062.080000pt;}
.h8_c01102{height:36.875520pt;}
.h7_c01102{height:38.441250pt;}
.ha_c01102{height:42.240000pt;}
.h3_c01102{height:44.468750pt;}
.h2_c01102{height:44.648750pt;}
.hb_c01102{height:47.491563pt;}
.h9_c01102{height:56.679040pt;}
.h5_c01102{height:57.375000pt;}
.h4_c01102{height:57.781250pt;}
.h6_c01102{height:1122.546667pt;}
.h0_c01102{height:1122.560000pt;}
.h1_c01102{height:1122.666667pt;}
.w3_c01102{width:177.933333pt;}
.w2_c01102{width:793.740000pt;}
.w0_c01102{width:793.760000pt;}
.w1_c01102{width:794.000000pt;}
.x0_c01102{left:0.000000pt;}
.x2_c01102{left:122.912000pt;}
.x9_c01102{left:139.226667pt;}
.x1_c01102{left:151.066667pt;}
.x8_c01102{left:314.946667pt;}
.x6_c01102{left:440.873333pt;}
.x7_c01102{left:458.653333pt;}
.x4_c01102{left:464.233333pt;}
.x5_c01102{left:482.013333pt;}
.xa_c01102{left:498.826667pt;}
.x3_c01102{left:656.453333pt;}
}





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

.ir_c01103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01103;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01103;src:url('chunks/assets/font_eab7d7f90a431601bbee5899.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01103;src:url('chunks/assets/font_af06e8490abd777a28410dd0.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01103;src:url('chunks/assets/font_4ea8ed550791c5ea0a91cf27.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01103;src:url('chunks/assets/font_455724cca2abf05ad2a03ba7.woff2')format("woff");}.ff5_c01103{font-family:ff5_c01103;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01103;src:url('chunks/assets/font_c2f9ff4e3e6fc414455d9302.woff2')format("woff");}.ff6_c01103{font-family:ff6_c01103;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01103{vertical-align:0.000000px;}
.ls5_c01103{letter-spacing:-0.720000px;}
.ls6_c01103{letter-spacing:-0.432000px;}
.lsa_c01103{letter-spacing:-0.247800px;}
.ls7_c01103{letter-spacing:-0.216000px;}
.ls9_c01103{letter-spacing:-0.181200px;}
.lsb_c01103{letter-spacing:-0.106800px;}
.ls8_c01103{letter-spacing:-0.053400px;}
.ls4_c01103{letter-spacing:0.000000px;}
.ls2_c01103{letter-spacing:0.144000px;}
.ls3_c01103{letter-spacing:0.152400px;}
.ls1_c01103{letter-spacing:0.864000px;}
.ls0_c01103{letter-spacing:60.624000px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01103{word-spacing:-21.187920px;}
.ws1_c01103{word-spacing:-20.016000px;}
.ws0_c01103{word-spacing:-19.800000px;}
.ws3_c01103{word-spacing:-16.506480px;}
.ws4_c01103{word-spacing:0.000000px;}
._f_c01103{margin-left:-3.994891px;}
._6_c01103{margin-left:-2.341109px;}
._0_c01103{margin-left:-1.258891px;}
._3_c01103{width:1.368000px;}
._9_c01103{width:2.376000px;}
._7_c01103{width:3.744000px;}
._12_c01103{width:4.896000px;}
._b_c01103{width:5.976000px;}
._a_c01103{width:7.128000px;}
._1_c01103{width:14.040000px;}
._2_c01103{width:15.816000px;}
._d_c01103{width:26.208000px;}
._c_c01103{width:27.504000px;}
._10_c01103{width:33.696000px;}
._e_c01103{width:35.784000px;}
._11_c01103{width:41.328000px;}
._8_c01103{width:55.512000px;}
._5_c01103{width:59.581109px;}
._4_c01103{width:61.234891px;}
.fc0_c01103{color:rgb(0,0,0);}
.fs4_c01103{font-size:38.880000px;}
.fs3_c01103{font-size:48.240000px;}
.fs2_c01103{font-size:59.760000px;}
.fs0_c01103{font-size:66.240000px;}
.fs1_c01103{font-size:72.000000px;}
.y0_c01103{bottom:0.000000px;}
.y22_c01103{bottom:5.940000px;}
.y21_c01103{bottom:24.660000px;}
.y4_c01103{bottom:71.136000px;}
.y3_c01103{bottom:105.516000px;}
.y1f_c01103{bottom:124.776000px;}
.y1e_c01103{bottom:129.996000px;}
.y1d_c01103{bottom:158.070000px;}
.y1b_c01103{bottom:211.530000px;}
.y1c_c01103{bottom:217.470000px;}
.y1a_c01103{bottom:233.850000px;}
.y19_c01103{bottom:256.170000px;}
.y18_c01103{bottom:278.490000px;}
.y17_c01103{bottom:312.015000px;}
.y16_c01103{bottom:339.375000px;}
.y20_c01103{bottom:766.365000px;}
.y15_c01103{bottom:769.605000px;}
.y14_c01103{bottom:791.745000px;}
.y13_c01103{bottom:814.065000px;}
.y12_c01103{bottom:836.385000px;}
.y11_c01103{bottom:858.930000px;}
.y10_c01103{bottom:881.250000px;}
.yf_c01103{bottom:903.390000px;}
.ye_c01103{bottom:925.890000px;}
.yd_c01103{bottom:948.390000px;}
.yc_c01103{bottom:970.710000px;}
.yb_c01103{bottom:992.850000px;}
.ya_c01103{bottom:1015.170000px;}
.y9_c01103{bottom:1037.490000px;}
.y8_c01103{bottom:1059.810000px;}
.y7_c01103{bottom:1094.370000px;}
.y6_c01103{bottom:1116.690000px;}
.y5_c01103{bottom:1139.040000px;}
.y2_c01103{bottom:1160.100000px;}
.y1_c01103{bottom:1194.840000px;}
.hb_c01103{height:38.340000px;}
.h9_c01103{height:41.484960px;}
.h8_c01103{height:43.246406px;}
.h2_c01103{height:48.062812px;}
.h3_c01103{height:50.027344px;}
.h6_c01103{height:53.428008px;}
.h5_c01103{height:53.573906px;}
.ha_c01103{height:63.763920px;}
.h4_c01103{height:64.546875px;}
.h7_c01103{height:1262.865000px;}
.h0_c01103{height:1262.880000px;}
.h1_c01103{height:1263.000000px;}
.w3_c01103{width:273.630000px;}
.w2_c01103{width:892.957500px;}
.w0_c01103{width:892.980000px;}
.w1_c01103{width:893.250000px;}
.x0_c01103{left:0.000000px;}
.x1_c01103{left:138.276000px;}
.x7_c01103{left:156.630000px;}
.x6_c01103{left:354.315000px;}
.x2_c01103{left:423.975000px;}
.x4_c01103{left:441.412500px;}
.x5_c01103{left:461.415000px;}
.x3_c01103{left:700.710000px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.ls5_c01103{letter-spacing:-0.640000pt;}
.ls6_c01103{letter-spacing:-0.384000pt;}
.lsa_c01103{letter-spacing:-0.220267pt;}
.ls7_c01103{letter-spacing:-0.192000pt;}
.ls9_c01103{letter-spacing:-0.161067pt;}
.lsb_c01103{letter-spacing:-0.094933pt;}
.ls8_c01103{letter-spacing:-0.047467pt;}
.ls4_c01103{letter-spacing:0.000000pt;}
.ls2_c01103{letter-spacing:0.128000pt;}
.ls3_c01103{letter-spacing:0.135467pt;}
.ls1_c01103{letter-spacing:0.768000pt;}
.ls0_c01103{letter-spacing:53.888000pt;}
.ws2_c01103{word-spacing:-18.833707pt;}
.ws1_c01103{word-spacing:-17.792000pt;}
.ws0_c01103{word-spacing:-17.600000pt;}
.ws3_c01103{word-spacing:-14.672427pt;}
.ws4_c01103{word-spacing:0.000000pt;}
._f_c01103{margin-left:-3.551014pt;}
._6_c01103{margin-left:-2.080986pt;}
._0_c01103{margin-left:-1.119014pt;}
._3_c01103{width:1.216000pt;}
._9_c01103{width:2.112000pt;}
._7_c01103{width:3.328000pt;}
._12_c01103{width:4.352000pt;}
._b_c01103{width:5.312000pt;}
._a_c01103{width:6.336000pt;}
._1_c01103{width:12.480000pt;}
._2_c01103{width:14.058667pt;}
._d_c01103{width:23.296000pt;}
._c_c01103{width:24.448000pt;}
._10_c01103{width:29.952000pt;}
._e_c01103{width:31.808000pt;}
._11_c01103{width:36.736000pt;}
._8_c01103{width:49.344000pt;}
._5_c01103{width:52.960986pt;}
._4_c01103{width:54.431014pt;}
.fs4_c01103{font-size:34.560000pt;}
.fs3_c01103{font-size:42.880000pt;}
.fs2_c01103{font-size:53.120000pt;}
.fs0_c01103{font-size:58.880000pt;}
.fs1_c01103{font-size:64.000000pt;}
.y0_c01103{bottom:0.000000pt;}
.y22_c01103{bottom:5.280000pt;}
.y21_c01103{bottom:21.920000pt;}
.y4_c01103{bottom:63.232000pt;}
.y3_c01103{bottom:93.792000pt;}
.y1f_c01103{bottom:110.912000pt;}
.y1e_c01103{bottom:115.552000pt;}
.y1d_c01103{bottom:140.506667pt;}
.y1b_c01103{bottom:188.026667pt;}
.y1c_c01103{bottom:193.306667pt;}
.y1a_c01103{bottom:207.866667pt;}
.y19_c01103{bottom:227.706667pt;}
.y18_c01103{bottom:247.546667pt;}
.y17_c01103{bottom:277.346667pt;}
.y16_c01103{bottom:301.666667pt;}
.y20_c01103{bottom:681.213333pt;}
.y15_c01103{bottom:684.093333pt;}
.y14_c01103{bottom:703.773333pt;}
.y13_c01103{bottom:723.613333pt;}
.y12_c01103{bottom:743.453333pt;}
.y11_c01103{bottom:763.493333pt;}
.y10_c01103{bottom:783.333333pt;}
.yf_c01103{bottom:803.013333pt;}
.ye_c01103{bottom:823.013333pt;}
.yd_c01103{bottom:843.013333pt;}
.yc_c01103{bottom:862.853333pt;}
.yb_c01103{bottom:882.533333pt;}
.ya_c01103{bottom:902.373333pt;}
.y9_c01103{bottom:922.213333pt;}
.y8_c01103{bottom:942.053333pt;}
.y7_c01103{bottom:972.773333pt;}
.y6_c01103{bottom:992.613333pt;}
.y5_c01103{bottom:1012.480000pt;}
.y2_c01103{bottom:1031.200000pt;}
.y1_c01103{bottom:1062.080000pt;}
.hb_c01103{height:34.080000pt;}
.h9_c01103{height:36.875520pt;}
.h8_c01103{height:38.441250pt;}
.h2_c01103{height:42.722500pt;}
.h3_c01103{height:44.468750pt;}
.h6_c01103{height:47.491563pt;}
.h5_c01103{height:47.621250pt;}
.ha_c01103{height:56.679040pt;}
.h4_c01103{height:57.375000pt;}
.h7_c01103{height:1122.546667pt;}
.h0_c01103{height:1122.560000pt;}
.h1_c01103{height:1122.666667pt;}
.w3_c01103{width:243.226667pt;}
.w2_c01103{width:793.740000pt;}
.w0_c01103{width:793.760000pt;}
.w1_c01103{width:794.000000pt;}
.x0_c01103{left:0.000000pt;}
.x1_c01103{left:122.912000pt;}
.x7_c01103{left:139.226667pt;}
.x6_c01103{left:314.946667pt;}
.x2_c01103{left:376.866667pt;}
.x4_c01103{left:392.366667pt;}
.x5_c01103{left:410.146667pt;}
.x3_c01103{left:622.853333pt;}
}





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

.ir_c01104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01104;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01104;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01104;src:url('chunks/assets/font_2f8580cef4f84b68f529f66f.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01104;src:url('chunks/assets/font_8289f904d80f1e35a854d67f.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01104;src:url('chunks/assets/font_e291f0691210a41fea01308f.woff2')format("woff");}.ff5_c01104{font-family:ff5_c01104;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01104;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff6_c01104{font-family:ff6_c01104;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_c01104;src:url('chunks/assets/font_f2017f1b97edc20728d8a9dc.woff2')format("woff");}.ff7_c01104{font-family:ff7_c01104;line-height:1.113281;font-style:normal;font-weight: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_c01104;src:url('chunks/assets/font_0df56a0c00605e6fb330ecc9.woff2')format("woff");}.ff8_c01104{font-family:ff8_c01104;line-height:1.575000;font-style:normal;font-weight: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_c01104;src:url('chunks/assets/font_10b3640e442240cf75ff40a2.woff2')format("woff");}.ff9_c01104{font-family:ff9_c01104;line-height:1.211914;font-style:normal;font-weight: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_c01104;src:url('chunks/assets/font_84af027a9667f5da8be643b3.woff2')format("woff");}.ffa_c01104{font-family:ffa_c01104;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.ls4_c01104{letter-spacing:-0.247800px;}
.ls2_c01104{letter-spacing:-0.181200px;}
.ls3_c01104{letter-spacing:-0.053400px;}
.ls1_c01104{letter-spacing:0.000000px;}
.ls0_c01104{letter-spacing:0.144000px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01104{word-spacing:0.000000px;}
._9_c01104{margin-left:-3.194317px;}
._0_c01104{margin-left:-1.390841px;}
._1_c01104{width:1.152000px;}
._2_c01104{width:2.232000px;}
._3_c01104{width:4.104000px;}
._8_c01104{width:5.328000px;}
._4_c01104{width:6.552000px;}
._5_c01104{width:7.968000px;}
._7_c01104{width:17.928000px;}
._6_c01104{width:22.464000px;}
.fc0_c01104{color:rgb(0,0,0);}
.fs4_c01104{font-size:38.880000px;}
.fs2_c01104{font-size:48.240000px;}
.fs3_c01104{font-size:59.760000px;}
.fs0_c01104{font-size:66.240000px;}
.fs1_c01104{font-size:72.000000px;}
.y0_c01104{bottom:0.000000px;}
.y4_c01104{bottom:71.136000px;}
.y3_c01104{bottom:105.516000px;}
.y1b_c01104{bottom:124.776000px;}
.y1a_c01104{bottom:142.956000px;}
.y19_c01104{bottom:161.310000px;}
.y18_c01104{bottom:166.530000px;}
.y17_c01104{bottom:194.430000px;}
.y16_c01104{bottom:409.935000px;}
.y15_c01104{bottom:432.075000px;}
.y14_c01104{bottom:454.395000px;}
.y13_c01104{bottom:476.715000px;}
.y12_c01104{bottom:499.215000px;}
.y11_c01104{bottom:533.595000px;}
.y10_c01104{bottom:568.005000px;}
.yf_c01104{bottom:601.485000px;}
.ye_c01104{bottom:628.845000px;}
.yc_c01104{bottom:982.590000px;}
.yd_c01104{bottom:988.530000px;}
.yb_c01104{bottom:1004.910000px;}
.ya_c01104{bottom:1027.230000px;}
.y9_c01104{bottom:1049.550000px;}
.y8_c01104{bottom:1072.050000px;}
.y7_c01104{bottom:1094.370000px;}
.y6_c01104{bottom:1116.690000px;}
.y5_c01104{bottom:1138.860000px;}
.y2_c01104{bottom:1160.100000px;}
.y1_c01104{bottom:1194.840000px;}
.hb_c01104{height:41.484960px;}
.h6_c01104{height:43.246406px;}
.h3_c01104{height:50.027344px;}
.h2_c01104{height:50.229844px;}
.h8_c01104{height:53.428008px;}
.h7_c01104{height:53.573906px;}
.hc_c01104{height:63.763920px;}
.h4_c01104{height:64.546875px;}
.ha_c01104{height:65.003906px;}
.h9_c01104{height:75.093750px;}
.h5_c01104{height:1262.865000px;}
.h0_c01104{height:1262.880000px;}
.h1_c01104{height:1263.000000px;}
.w2_c01104{width:892.957500px;}
.w0_c01104{width:892.980000px;}
.w1_c01104{width:893.250000px;}
.x0_c01104{left:0.000000px;}
.x2_c01104{left:138.276000px;}
.x8_c01104{left:156.630000px;}
.x1_c01104{left:169.950000px;}
.x4_c01104{left:288.367500px;}
.x5_c01104{left:308.415000px;}
.x7_c01104{left:354.315000px;}
.x6_c01104{left:702.690000px;}
.x3_c01104{left:738.510000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls4_c01104{letter-spacing:-0.220267pt;}
.ls2_c01104{letter-spacing:-0.161067pt;}
.ls3_c01104{letter-spacing:-0.047467pt;}
.ls1_c01104{letter-spacing:0.000000pt;}
.ls0_c01104{letter-spacing:0.128000pt;}
.ws0_c01104{word-spacing:0.000000pt;}
._9_c01104{margin-left:-2.839393pt;}
._0_c01104{margin-left:-1.236303pt;}
._1_c01104{width:1.024000pt;}
._2_c01104{width:1.984000pt;}
._3_c01104{width:3.648000pt;}
._8_c01104{width:4.736000pt;}
._4_c01104{width:5.824000pt;}
._5_c01104{width:7.082667pt;}
._7_c01104{width:15.936000pt;}
._6_c01104{width:19.968000pt;}
.fs4_c01104{font-size:34.560000pt;}
.fs2_c01104{font-size:42.880000pt;}
.fs3_c01104{font-size:53.120000pt;}
.fs0_c01104{font-size:58.880000pt;}
.fs1_c01104{font-size:64.000000pt;}
.y0_c01104{bottom:0.000000pt;}
.y4_c01104{bottom:63.232000pt;}
.y3_c01104{bottom:93.792000pt;}
.y1b_c01104{bottom:110.912000pt;}
.y1a_c01104{bottom:127.072000pt;}
.y19_c01104{bottom:143.386667pt;}
.y18_c01104{bottom:148.026667pt;}
.y17_c01104{bottom:172.826667pt;}
.y16_c01104{bottom:364.386667pt;}
.y15_c01104{bottom:384.066667pt;}
.y14_c01104{bottom:403.906667pt;}
.y13_c01104{bottom:423.746667pt;}
.y12_c01104{bottom:443.746667pt;}
.y11_c01104{bottom:474.306667pt;}
.y10_c01104{bottom:504.893333pt;}
.yf_c01104{bottom:534.653333pt;}
.ye_c01104{bottom:558.973333pt;}
.yc_c01104{bottom:873.413333pt;}
.yd_c01104{bottom:878.693333pt;}
.yb_c01104{bottom:893.253333pt;}
.ya_c01104{bottom:913.093333pt;}
.y9_c01104{bottom:932.933333pt;}
.y8_c01104{bottom:952.933333pt;}
.y7_c01104{bottom:972.773333pt;}
.y6_c01104{bottom:992.613333pt;}
.y5_c01104{bottom:1012.320000pt;}
.y2_c01104{bottom:1031.200000pt;}
.y1_c01104{bottom:1062.080000pt;}
.hb_c01104{height:36.875520pt;}
.h6_c01104{height:38.441250pt;}
.h3_c01104{height:44.468750pt;}
.h2_c01104{height:44.648750pt;}
.h8_c01104{height:47.491563pt;}
.h7_c01104{height:47.621250pt;}
.hc_c01104{height:56.679040pt;}
.h4_c01104{height:57.375000pt;}
.ha_c01104{height:57.781250pt;}
.h9_c01104{height:66.750000pt;}
.h5_c01104{height:1122.546667pt;}
.h0_c01104{height:1122.560000pt;}
.h1_c01104{height:1122.666667pt;}
.w2_c01104{width:793.740000pt;}
.w0_c01104{width:793.760000pt;}
.w1_c01104{width:794.000000pt;}
.x0_c01104{left:0.000000pt;}
.x2_c01104{left:122.912000pt;}
.x8_c01104{left:139.226667pt;}
.x1_c01104{left:151.066667pt;}
.x4_c01104{left:256.326667pt;}
.x5_c01104{left:274.146667pt;}
.x7_c01104{left:314.946667pt;}
.x6_c01104{left:624.613333pt;}
.x3_c01104{left:656.453333pt;}
}





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

.ir_c01105:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01105;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01105;src:url('chunks/assets/font_68ab63bebdfa532d901e14ed.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01105;src:url('chunks/assets/font_f4bf605b3bceea568761f97d.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01105;src:url('chunks/assets/font_2bcceb697f240c3bee1f5e85.woff2')format("woff");}.ff4_c01105{font-family:ff4_c01105;line-height:1.104492;font-style:normal;font-weight: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_c01105;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff5_c01105{font-family:ff5_c01105;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:ff6_c01105;src:url('chunks/assets/font_6d7365f56116c68c54e6014c.woff2')format("woff");}.ff6_c01105{font-family:ff6_c01105;line-height:1.575000;font-style:normal;font-weight: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_c01105;src:url('chunks/assets/font_70c5942616dfb70585c1a95b.woff2')format("woff");}.ff7_c01105{font-family:ff7_c01105;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.ls3_c01105{letter-spacing:-0.720000px;}
.ls2_c01105{letter-spacing:-0.432000px;}
.ls5_c01105{letter-spacing:-0.247800px;}
.ls4_c01105{letter-spacing:-0.181200px;}
.ls1_c01105{letter-spacing:0.000000px;}
.ls0_c01105{letter-spacing:5.604480px;}
.sc__c01105{text-shadow:none;}
.sc0_c01105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01105{-webkit-text-stroke:0px transparent;}
.sc0_c01105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01105{word-spacing:-20.016000px;}
.ws1_c01105{word-spacing:0.000000px;}
._7_c01105{margin-left:-5.040000px;}
._6_c01105{margin-left:-3.744000px;}
._c_c01105{margin-left:-2.461157px;}
._0_c01105{margin-left:-1.258891px;}
._5_c01105{width:1.104048px;}
._9_c01105{width:2.771760px;}
._16_c01105{width:4.081200px;}
._17_c01105{width:6.048000px;}
._19_c01105{width:7.272000px;}
._1a_c01105{width:8.567856px;}
._4_c01105{width:11.567952px;}
._3_c01105{width:12.864024px;}
._18_c01105{width:14.948698px;}
._10_c01105{width:16.128000px;}
._f_c01105{width:17.136000px;}
._e_c01105{width:21.024000px;}
._d_c01105{width:22.032000px;}
._11_c01105{width:28.069157px;}
._2_c01105{width:29.314843px;}
._1_c01105{width:30.720024px;}
._8_c01105{width:33.384024px;}
._15_c01105{width:44.712000px;}
._14_c01105{width:45.720000px;}
._1b_c01105{width:52.469340px;}
._b_c01105{width:55.306891px;}
._a_c01105{width:57.384000px;}
._12_c01105{width:76.176000px;}
._13_c01105{width:77.616000px;}
.fc1_c01105{color:rgb(46,116,181);}
.fc0_c01105{color:rgb(0,0,0);}
.fs4_c01105{font-size:38.880000px;}
.fs3_c01105{font-size:48.240000px;}
.fs5_c01105{font-size:59.760000px;}
.fs0_c01105{font-size:66.240000px;}
.fs1_c01105{font-size:72.000000px;}
.fs2_c01105{font-size:84.240000px;}
.y0_c01105{bottom:0.000000px;}
.y2d_c01105{bottom:19.980000px;}
.y2_c01105{bottom:105.516000px;}
.y2b_c01105{bottom:126.216000px;}
.y2a_c01105{bottom:145.836000px;}
.y29_c01105{bottom:165.630000px;}
.y28_c01105{bottom:185.250000px;}
.y27_c01105{bottom:190.470000px;}
.y25_c01105{bottom:269.670000px;}
.y26_c01105{bottom:275.610000px;}
.y24_c01105{bottom:292.035000px;}
.y23_c01105{bottom:314.355000px;}
.y22_c01105{bottom:336.675000px;}
.y21_c01105{bottom:358.995000px;}
.y20_c01105{bottom:381.315000px;}
.y1f_c01105{bottom:403.635000px;}
.y1e_c01105{bottom:425.955000px;}
.y1d_c01105{bottom:448.275000px;}
.y1c_c01105{bottom:470.775000px;}
.y1b_c01105{bottom:493.095000px;}
.y1a_c01105{bottom:515.415000px;}
.y19_c01105{bottom:559.695000px;}
.y18_c01105{bottom:657.825000px;}
.y2c_c01105{bottom:676.185000px;}
.y17_c01105{bottom:680.325000px;}
.y16_c01105{bottom:702.645000px;}
.y15_c01105{bottom:724.785000px;}
.y14_c01105{bottom:747.105000px;}
.y13_c01105{bottom:769.605000px;}
.y12_c01105{bottom:791.745000px;}
.y11_c01105{bottom:814.065000px;}
.y10_c01105{bottom:836.565000px;}
.yf_c01105{bottom:858.750000px;}
.ye_c01105{bottom:881.070000px;}
.yd_c01105{bottom:903.390000px;}
.yc_c01105{bottom:938.130000px;}
.yb_c01105{bottom:960.270000px;}
.ya_c01105{bottom:982.590000px;}
.y9_c01105{bottom:1005.090000px;}
.y8_c01105{bottom:1027.410000px;}
.y7_c01105{bottom:1049.550000px;}
.y6_c01105{bottom:1071.870000px;}
.y5_c01105{bottom:1094.190000px;}
.y4_c01105{bottom:1116.510000px;}
.y3_c01105{bottom:1138.860000px;}
.y1_c01105{bottom:1194.840000px;}
.ha_c01105{height:33.660000px;}
.h8_c01105{height:41.484960px;}
.h7_c01105{height:43.246406px;}
.h2_c01105{height:48.062812px;}
.h3_c01105{height:50.027344px;}
.hb_c01105{height:53.428008px;}
.h9_c01105{height:63.763920px;}
.h4_c01105{height:64.546875px;}
.h5_c01105{height:87.859687px;}
.h6_c01105{height:1262.865000px;}
.h0_c01105{height:1262.880000px;}
.h1_c01105{height:1263.000000px;}
.w3_c01105{width:281.235000px;}
.w2_c01105{width:892.957500px;}
.w0_c01105{width:892.980000px;}
.w1_c01105{width:893.250000px;}
.x0_c01105{left:0.000000px;}
.x1_c01105{left:138.276000px;}
.x4_c01105{left:156.630000px;}
.x2_c01105{left:305.872500px;}
.x3_c01105{left:325.875000px;}
.x5_c01105{left:490.755000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls3_c01105{letter-spacing:-0.640000pt;}
.ls2_c01105{letter-spacing:-0.384000pt;}
.ls5_c01105{letter-spacing:-0.220267pt;}
.ls4_c01105{letter-spacing:-0.161067pt;}
.ls1_c01105{letter-spacing:0.000000pt;}
.ls0_c01105{letter-spacing:4.981760pt;}
.ws0_c01105{word-spacing:-17.792000pt;}
.ws1_c01105{word-spacing:0.000000pt;}
._7_c01105{margin-left:-4.480000pt;}
._6_c01105{margin-left:-3.328000pt;}
._c_c01105{margin-left:-2.187695pt;}
._0_c01105{margin-left:-1.119014pt;}
._5_c01105{width:0.981376pt;}
._9_c01105{width:2.463787pt;}
._16_c01105{width:3.627733pt;}
._17_c01105{width:5.376000pt;}
._19_c01105{width:6.464000pt;}
._1a_c01105{width:7.615872pt;}
._4_c01105{width:10.282624pt;}
._3_c01105{width:11.434688pt;}
._18_c01105{width:13.287731pt;}
._10_c01105{width:14.336000pt;}
._f_c01105{width:15.232000pt;}
._e_c01105{width:18.688000pt;}
._d_c01105{width:19.584000pt;}
._11_c01105{width:24.950362pt;}
._2_c01105{width:26.057638pt;}
._1_c01105{width:27.306688pt;}
._8_c01105{width:29.674688pt;}
._15_c01105{width:39.744000pt;}
._14_c01105{width:40.640000pt;}
._1b_c01105{width:46.639413pt;}
._b_c01105{width:49.161681pt;}
._a_c01105{width:51.008000pt;}
._12_c01105{width:67.712000pt;}
._13_c01105{width:68.992000pt;}
.fs4_c01105{font-size:34.560000pt;}
.fs3_c01105{font-size:42.880000pt;}
.fs5_c01105{font-size:53.120000pt;}
.fs0_c01105{font-size:58.880000pt;}
.fs1_c01105{font-size:64.000000pt;}
.fs2_c01105{font-size:74.880000pt;}
.y0_c01105{bottom:0.000000pt;}
.y2d_c01105{bottom:17.760000pt;}
.y2_c01105{bottom:93.792000pt;}
.y2b_c01105{bottom:112.192000pt;}
.y2a_c01105{bottom:129.632000pt;}
.y29_c01105{bottom:147.226667pt;}
.y28_c01105{bottom:164.666667pt;}
.y27_c01105{bottom:169.306667pt;}
.y25_c01105{bottom:239.706667pt;}
.y26_c01105{bottom:244.986667pt;}
.y24_c01105{bottom:259.586667pt;}
.y23_c01105{bottom:279.426667pt;}
.y22_c01105{bottom:299.266667pt;}
.y21_c01105{bottom:319.106667pt;}
.y20_c01105{bottom:338.946667pt;}
.y1f_c01105{bottom:358.786667pt;}
.y1e_c01105{bottom:378.626667pt;}
.y1d_c01105{bottom:398.466667pt;}
.y1c_c01105{bottom:418.466667pt;}
.y1b_c01105{bottom:438.306667pt;}
.y1a_c01105{bottom:458.146667pt;}
.y19_c01105{bottom:497.506667pt;}
.y18_c01105{bottom:584.733333pt;}
.y2c_c01105{bottom:601.053333pt;}
.y17_c01105{bottom:604.733333pt;}
.y16_c01105{bottom:624.573333pt;}
.y15_c01105{bottom:644.253333pt;}
.y14_c01105{bottom:664.093333pt;}
.y13_c01105{bottom:684.093333pt;}
.y12_c01105{bottom:703.773333pt;}
.y11_c01105{bottom:723.613333pt;}
.y10_c01105{bottom:743.613333pt;}
.yf_c01105{bottom:763.333333pt;}
.ye_c01105{bottom:783.173333pt;}
.yd_c01105{bottom:803.013333pt;}
.yc_c01105{bottom:833.893333pt;}
.yb_c01105{bottom:853.573333pt;}
.ya_c01105{bottom:873.413333pt;}
.y9_c01105{bottom:893.413333pt;}
.y8_c01105{bottom:913.253333pt;}
.y7_c01105{bottom:932.933333pt;}
.y6_c01105{bottom:952.773333pt;}
.y5_c01105{bottom:972.613333pt;}
.y4_c01105{bottom:992.453333pt;}
.y3_c01105{bottom:1012.320000pt;}
.y1_c01105{bottom:1062.080000pt;}
.ha_c01105{height:29.920000pt;}
.h8_c01105{height:36.875520pt;}
.h7_c01105{height:38.441250pt;}
.h2_c01105{height:42.722500pt;}
.h3_c01105{height:44.468750pt;}
.hb_c01105{height:47.491563pt;}
.h9_c01105{height:56.679040pt;}
.h4_c01105{height:57.375000pt;}
.h5_c01105{height:78.097500pt;}
.h6_c01105{height:1122.546667pt;}
.h0_c01105{height:1122.560000pt;}
.h1_c01105{height:1122.666667pt;}
.w3_c01105{width:249.986667pt;}
.w2_c01105{width:793.740000pt;}
.w0_c01105{width:793.760000pt;}
.w1_c01105{width:794.000000pt;}
.x0_c01105{left:0.000000pt;}
.x1_c01105{left:122.912000pt;}
.x4_c01105{left:139.226667pt;}
.x2_c01105{left:271.886667pt;}
.x3_c01105{left:289.666667pt;}
.x5_c01105{left:436.226667pt;}
}





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

.ir_c01106:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01106;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01106;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01106;src:url('chunks/assets/font_4d5c2edbfbbc7e112e5a5284.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01106;src:url('chunks/assets/font_76d9d42dbbb270e9930d822e.woff2')format("woff");}.ff4_c01106{font-family:ff4_c01106;line-height:1.106934;font-style:normal;font-weight: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_c01106;src:url('chunks/assets/font_e2957d024c1df6364953d3ce.woff2')format("woff");}.ff5_c01106{font-family:ff5_c01106;line-height:1.104492;font-style:normal;font-weight: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_c01106;src:url('chunks/assets/font_aa0bb24bc1058f36e1e2f5da.woff2')format("woff");}.ff6_c01106{font-family:ff6_c01106;line-height:1.575000;font-style:normal;font-weight: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_c01106;src:url('chunks/assets/font_68c665472db0a037ff3e2575.woff2')format("woff");}.ff7_c01106{font-family:ff7_c01106;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01106{vertical-align:0.000000px;}
.ls3_c01106{letter-spacing:-0.432000px;}
.ls1_c01106{letter-spacing:0.000000px;}
.ls2_c01106{letter-spacing:0.144000px;}
.ls0_c01106{letter-spacing:0.152400px;}
.sc__c01106{text-shadow:none;}
.sc0_c01106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01106{-webkit-text-stroke:0px transparent;}
.sc0_c01106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01106{word-spacing:-21.187920px;}
.ws0_c01106{word-spacing:-20.016000px;}
.ws2_c01106{word-spacing:0.000000px;}
._b_c01106{margin-left:-5.449159px;}
._9_c01106{margin-left:-4.032000px;}
._1_c01106{margin-left:-2.569159px;}
._0_c01106{margin-left:-1.390841px;}
._2_c01106{width:1.011476px;}
._a_c01106{width:2.122841px;}
._10_c01106{width:3.145183px;}
._c_c01106{width:4.224269px;}
._8_c01106{width:5.281183px;}
._4_c01106{width:7.222841px;}
._3_c01106{width:8.352000px;}
._7_c01106{width:9.792000px;}
._6_c01106{width:10.944000px;}
._5_c01106{width:12.168000px;}
._12_c01106{width:14.502254px;}
._11_c01106{width:15.624000px;}
._d_c01106{width:18.936000px;}
._f_c01106{width:23.112000px;}
._e_c01106{width:24.600000px;}
.fc0_c01106{color:rgb(0,0,0);}
.fs2_c01106{font-size:59.760000px;}
.fs0_c01106{font-size:66.240000px;}
.fs1_c01106{font-size:72.000000px;}
.y0_c01106{bottom:0.000000px;}
.y4_c01106{bottom:71.136000px;}
.y3_c01106{bottom:105.516000px;}
.y2e_c01106{bottom:138.456000px;}
.y2d_c01106{bottom:157.890000px;}
.y2c_c01106{bottom:191.190000px;}
.y2b_c01106{bottom:229.890000px;}
.y2a_c01106{bottom:252.210000px;}
.y29_c01106{bottom:286.815000px;}
.y28_c01106{bottom:308.955000px;}
.y27_c01106{bottom:331.275000px;}
.y26_c01106{bottom:353.595000px;}
.y25_c01106{bottom:388.155000px;}
.y24_c01106{bottom:410.295000px;}
.y23_c01106{bottom:432.615000px;}
.y22_c01106{bottom:454.935000px;}
.y21_c01106{bottom:477.255000px;}
.y20_c01106{bottom:499.755000px;}
.y1f_c01106{bottom:522.075000px;}
.y1e_c01106{bottom:556.635000px;}
.y1d_c01106{bottom:578.805000px;}
.y1c_c01106{bottom:601.305000px;}
.y1b_c01106{bottom:623.445000px;}
.y1a_c01106{bottom:645.765000px;}
.y19_c01106{bottom:668.085000px;}
.y18_c01106{bottom:690.405000px;}
.y17_c01106{bottom:712.725000px;}
.y16_c01106{bottom:735.045000px;}
.y15_c01106{bottom:757.365000px;}
.y14_c01106{bottom:779.685000px;}
.y13_c01106{bottom:814.245000px;}
.y12_c01106{bottom:836.565000px;}
.y11_c01106{bottom:858.750000px;}
.y10_c01106{bottom:881.070000px;}
.yf_c01106{bottom:903.390000px;}
.ye_c01106{bottom:925.890000px;}
.yd_c01106{bottom:948.210000px;}
.yc_c01106{bottom:970.530000px;}
.yb_c01106{bottom:992.850000px;}
.ya_c01106{bottom:1015.170000px;}
.y9_c01106{bottom:1037.490000px;}
.y8_c01106{bottom:1072.050000px;}
.y7_c01106{bottom:1094.190000px;}
.y6_c01106{bottom:1116.510000px;}
.y5_c01106{bottom:1138.860000px;}
.y2_c01106{bottom:1160.100000px;}
.y1_c01106{bottom:1194.840000px;}
.h3_c01106{height:50.027344px;}
.h2_c01106{height:50.229844px;}
.h6_c01106{height:63.763920px;}
.h4_c01106{height:64.546875px;}
.h5_c01106{height:1262.865000px;}
.h0_c01106{height:1262.880000px;}
.h1_c01106{height:1263.000000px;}
.w2_c01106{width:892.957500px;}
.w0_c01106{width:892.980000px;}
.w1_c01106{width:893.250000px;}
.x0_c01106{left:0.000000px;}
.x2_c01106{left:138.276000px;}
.x1_c01106{left:169.950000px;}
.x4_c01106{left:354.315000px;}
.x3_c01106{left:738.510000px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls3_c01106{letter-spacing:-0.384000pt;}
.ls1_c01106{letter-spacing:0.000000pt;}
.ls2_c01106{letter-spacing:0.128000pt;}
.ls0_c01106{letter-spacing:0.135467pt;}
.ws1_c01106{word-spacing:-18.833707pt;}
.ws0_c01106{word-spacing:-17.792000pt;}
.ws2_c01106{word-spacing:0.000000pt;}
._b_c01106{margin-left:-4.843697pt;}
._9_c01106{margin-left:-3.584000pt;}
._1_c01106{margin-left:-2.283697pt;}
._0_c01106{margin-left:-1.236303pt;}
._2_c01106{width:0.899090pt;}
._a_c01106{width:1.886970pt;}
._10_c01106{width:2.795718pt;}
._c_c01106{width:3.754906pt;}
._8_c01106{width:4.694385pt;}
._4_c01106{width:6.420303pt;}
._3_c01106{width:7.424000pt;}
._7_c01106{width:8.704000pt;}
._6_c01106{width:9.728000pt;}
._5_c01106{width:10.816000pt;}
._12_c01106{width:12.890893pt;}
._11_c01106{width:13.888000pt;}
._d_c01106{width:16.832000pt;}
._f_c01106{width:20.544000pt;}
._e_c01106{width:21.866667pt;}
.fs2_c01106{font-size:53.120000pt;}
.fs0_c01106{font-size:58.880000pt;}
.fs1_c01106{font-size:64.000000pt;}
.y0_c01106{bottom:0.000000pt;}
.y4_c01106{bottom:63.232000pt;}
.y3_c01106{bottom:93.792000pt;}
.y2e_c01106{bottom:123.072000pt;}
.y2d_c01106{bottom:140.346667pt;}
.y2c_c01106{bottom:169.946667pt;}
.y2b_c01106{bottom:204.346667pt;}
.y2a_c01106{bottom:224.186667pt;}
.y29_c01106{bottom:254.946667pt;}
.y28_c01106{bottom:274.626667pt;}
.y27_c01106{bottom:294.466667pt;}
.y26_c01106{bottom:314.306667pt;}
.y25_c01106{bottom:345.026667pt;}
.y24_c01106{bottom:364.706667pt;}
.y23_c01106{bottom:384.546667pt;}
.y22_c01106{bottom:404.386667pt;}
.y21_c01106{bottom:424.226667pt;}
.y20_c01106{bottom:444.226667pt;}
.y1f_c01106{bottom:464.066667pt;}
.y1e_c01106{bottom:494.786667pt;}
.y1d_c01106{bottom:514.493333pt;}
.y1c_c01106{bottom:534.493333pt;}
.y1b_c01106{bottom:554.173333pt;}
.y1a_c01106{bottom:574.013333pt;}
.y19_c01106{bottom:593.853333pt;}
.y18_c01106{bottom:613.693333pt;}
.y17_c01106{bottom:633.533333pt;}
.y16_c01106{bottom:653.373333pt;}
.y15_c01106{bottom:673.213333pt;}
.y14_c01106{bottom:693.053333pt;}
.y13_c01106{bottom:723.773333pt;}
.y12_c01106{bottom:743.613333pt;}
.y11_c01106{bottom:763.333333pt;}
.y10_c01106{bottom:783.173333pt;}
.yf_c01106{bottom:803.013333pt;}
.ye_c01106{bottom:823.013333pt;}
.yd_c01106{bottom:842.853333pt;}
.yc_c01106{bottom:862.693333pt;}
.yb_c01106{bottom:882.533333pt;}
.ya_c01106{bottom:902.373333pt;}
.y9_c01106{bottom:922.213333pt;}
.y8_c01106{bottom:952.933333pt;}
.y7_c01106{bottom:972.613333pt;}
.y6_c01106{bottom:992.453333pt;}
.y5_c01106{bottom:1012.320000pt;}
.y2_c01106{bottom:1031.200000pt;}
.y1_c01106{bottom:1062.080000pt;}
.h3_c01106{height:44.468750pt;}
.h2_c01106{height:44.648750pt;}
.h6_c01106{height:56.679040pt;}
.h4_c01106{height:57.375000pt;}
.h5_c01106{height:1122.546667pt;}
.h0_c01106{height:1122.560000pt;}
.h1_c01106{height:1122.666667pt;}
.w2_c01106{width:793.740000pt;}
.w0_c01106{width:793.760000pt;}
.w1_c01106{width:794.000000pt;}
.x0_c01106{left:0.000000pt;}
.x2_c01106{left:122.912000pt;}
.x1_c01106{left:151.066667pt;}
.x4_c01106{left:314.946667pt;}
.x3_c01106{left:656.453333pt;}
}





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

.ir_c01107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01107;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01107;src:url('chunks/assets/font_49f67a2a1c0957b2c0763a79.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01107;src:url('chunks/assets/font_31dba0a0d6835bbd17f99adb.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01107;src:url('chunks/assets/font_474e2d518ac6ab6b22887b53.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01107;src:url('chunks/assets/font_d9f3fd8cd1af8deb6631af42.woff2')format("woff");}.ff5_c01107{font-family:ff5_c01107;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01107;src:url('chunks/assets/font_8467da0c360c3faa916147db.woff2')format("woff");}.ff6_c01107{font-family:ff6_c01107;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01107{vertical-align:0.000000px;}
.ls1_c01107{letter-spacing:-0.432000px;}
.ls3_c01107{letter-spacing:-0.247800px;}
.ls2_c01107{letter-spacing:-0.181200px;}
.ls0_c01107{letter-spacing:0.000000px;}
.sc__c01107{text-shadow:none;}
.sc0_c01107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01107{-webkit-text-stroke:0px transparent;}
.sc0_c01107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01107{word-spacing:-21.035520px;}
.ws0_c01107{word-spacing:-20.016000px;}
.ws2_c01107{word-spacing:0.000000px;}
._3_c01107{margin-left:-4.392000px;}
._5_c01107{margin-left:-2.963952px;}
._0_c01107{margin-left:-1.258891px;}
._2_c01107{width:1.030867px;}
._4_c01107{width:2.541758px;}
._7_c01107{width:4.008024px;}
._d_c01107{width:5.255928px;}
._9_c01107{width:7.344000px;}
._8_c01107{width:8.424000px;}
._c_c01107{width:10.296000px;}
._b_c01107{width:11.880000px;}
._1_c01107{width:18.144000px;}
._6_c01107{width:23.112000px;}
._a_c01107{width:45.936000px;}
._e_c01107{width:844.140000px;}
.fc0_c01107{color:rgb(0,0,0);}
.fs3_c01107{font-size:38.880000px;}
.fs2_c01107{font-size:48.240000px;}
.fs4_c01107{font-size:59.760000px;}
.fs0_c01107{font-size:66.240000px;}
.fs1_c01107{font-size:72.000000px;}
.y0_c01107{bottom:0.000000px;}
.y27_c01107{bottom:19.980000px;}
.y4_c01107{bottom:71.136000px;}
.y3_c01107{bottom:105.516000px;}
.y25_c01107{bottom:138.456000px;}
.y24_c01107{bottom:143.676000px;}
.y23_c01107{bottom:171.390000px;}
.y22_c01107{bottom:453.495000px;}
.y21_c01107{bottom:487.875000px;}
.y20_c01107{bottom:510.015000px;}
.y1f_c01107{bottom:532.335000px;}
.y1e_c01107{bottom:554.655000px;}
.y1d_c01107{bottom:577.005000px;}
.y1c_c01107{bottom:599.505000px;}
.y1b_c01107{bottom:633.885000px;}
.y26_c01107{bottom:641.445000px;}
.y1a_c01107{bottom:656.205000px;}
.y19_c01107{bottom:678.525000px;}
.y18_c01107{bottom:700.665000px;}
.y17_c01107{bottom:722.985000px;}
.y16_c01107{bottom:745.485000px;}
.y15_c01107{bottom:767.805000px;}
.y14_c01107{bottom:790.125000px;}
.y13_c01107{bottom:824.685000px;}
.y11_c01107{bottom:846.825000px;}
.y12_c01107{bottom:852.810000px;}
.y10_c01107{bottom:869.190000px;}
.yf_c01107{bottom:903.570000px;}
.ye_c01107{bottom:925.890000px;}
.yd_c01107{bottom:948.210000px;}
.yc_c01107{bottom:970.530000px;}
.yb_c01107{bottom:992.850000px;}
.ya_c01107{bottom:1027.410000px;}
.y9_c01107{bottom:1049.550000px;}
.y8_c01107{bottom:1071.870000px;}
.y7_c01107{bottom:1094.190000px;}
.y6_c01107{bottom:1116.510000px;}
.y5_c01107{bottom:1138.860000px;}
.y2_c01107{bottom:1160.100000px;}
.y1_c01107{bottom:1194.840000px;}
.h9_c01107{height:33.660000px;}
.h7_c01107{height:37.892813px;}
.h6_c01107{height:43.246406px;}
.h2_c01107{height:48.062812px;}
.h3_c01107{height:50.027344px;}
.ha_c01107{height:53.428008px;}
.h8_c01107{height:63.763920px;}
.h4_c01107{height:64.546875px;}
.h5_c01107{height:1262.865000px;}
.h0_c01107{height:1262.880000px;}
.h1_c01107{height:1263.000000px;}
.w3_c01107{width:236.190000px;}
.w2_c01107{width:892.957500px;}
.w0_c01107{width:892.980000px;}
.w1_c01107{width:893.250000px;}
.x0_c01107{left:0.000000px;}
.x1_c01107{left:138.276000px;}
.x8_c01107{left:141.165000px;}
.x7_c01107{left:156.630000px;}
.x6_c01107{left:354.315000px;}
.x5_c01107{left:388.515000px;}
.x4_c01107{left:392.835000px;}
.x2_c01107{left:540.622500px;}
.x3_c01107{left:560.625000px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls1_c01107{letter-spacing:-0.384000pt;}
.ls3_c01107{letter-spacing:-0.220267pt;}
.ls2_c01107{letter-spacing:-0.161067pt;}
.ls0_c01107{letter-spacing:0.000000pt;}
.ws1_c01107{word-spacing:-18.698240pt;}
.ws0_c01107{word-spacing:-17.792000pt;}
.ws2_c01107{word-spacing:0.000000pt;}
._3_c01107{margin-left:-3.904000pt;}
._5_c01107{margin-left:-2.634624pt;}
._0_c01107{margin-left:-1.119014pt;}
._2_c01107{width:0.916326pt;}
._4_c01107{width:2.259341pt;}
._7_c01107{width:3.562688pt;}
._d_c01107{width:4.671936pt;}
._9_c01107{width:6.528000pt;}
._8_c01107{width:7.488000pt;}
._c_c01107{width:9.152000pt;}
._b_c01107{width:10.560000pt;}
._1_c01107{width:16.128000pt;}
._6_c01107{width:20.544000pt;}
._a_c01107{width:40.832000pt;}
._e_c01107{width:750.346667pt;}
.fs3_c01107{font-size:34.560000pt;}
.fs2_c01107{font-size:42.880000pt;}
.fs4_c01107{font-size:53.120000pt;}
.fs0_c01107{font-size:58.880000pt;}
.fs1_c01107{font-size:64.000000pt;}
.y0_c01107{bottom:0.000000pt;}
.y27_c01107{bottom:17.760000pt;}
.y4_c01107{bottom:63.232000pt;}
.y3_c01107{bottom:93.792000pt;}
.y25_c01107{bottom:123.072000pt;}
.y24_c01107{bottom:127.712000pt;}
.y23_c01107{bottom:152.346667pt;}
.y22_c01107{bottom:403.106667pt;}
.y21_c01107{bottom:433.666667pt;}
.y20_c01107{bottom:453.346667pt;}
.y1f_c01107{bottom:473.186667pt;}
.y1e_c01107{bottom:493.026667pt;}
.y1d_c01107{bottom:512.893333pt;}
.y1c_c01107{bottom:532.893333pt;}
.y1b_c01107{bottom:563.453333pt;}
.y26_c01107{bottom:570.173333pt;}
.y1a_c01107{bottom:583.293333pt;}
.y19_c01107{bottom:603.133333pt;}
.y18_c01107{bottom:622.813333pt;}
.y17_c01107{bottom:642.653333pt;}
.y16_c01107{bottom:662.653333pt;}
.y15_c01107{bottom:682.493333pt;}
.y14_c01107{bottom:702.333333pt;}
.y13_c01107{bottom:733.053333pt;}
.y11_c01107{bottom:752.733333pt;}
.y12_c01107{bottom:758.053333pt;}
.y10_c01107{bottom:772.613333pt;}
.yf_c01107{bottom:803.173333pt;}
.ye_c01107{bottom:823.013333pt;}
.yd_c01107{bottom:842.853333pt;}
.yc_c01107{bottom:862.693333pt;}
.yb_c01107{bottom:882.533333pt;}
.ya_c01107{bottom:913.253333pt;}
.y9_c01107{bottom:932.933333pt;}
.y8_c01107{bottom:952.773333pt;}
.y7_c01107{bottom:972.613333pt;}
.y6_c01107{bottom:992.453333pt;}
.y5_c01107{bottom:1012.320000pt;}
.y2_c01107{bottom:1031.200000pt;}
.y1_c01107{bottom:1062.080000pt;}
.h9_c01107{height:29.920000pt;}
.h7_c01107{height:33.682500pt;}
.h6_c01107{height:38.441250pt;}
.h2_c01107{height:42.722500pt;}
.h3_c01107{height:44.468750pt;}
.ha_c01107{height:47.491563pt;}
.h8_c01107{height:56.679040pt;}
.h4_c01107{height:57.375000pt;}
.h5_c01107{height:1122.546667pt;}
.h0_c01107{height:1122.560000pt;}
.h1_c01107{height:1122.666667pt;}
.w3_c01107{width:209.946667pt;}
.w2_c01107{width:793.740000pt;}
.w0_c01107{width:793.760000pt;}
.w1_c01107{width:794.000000pt;}
.x0_c01107{left:0.000000pt;}
.x1_c01107{left:122.912000pt;}
.x8_c01107{left:125.480000pt;}
.x7_c01107{left:139.226667pt;}
.x6_c01107{left:314.946667pt;}
.x5_c01107{left:345.346667pt;}
.x4_c01107{left:349.186667pt;}
.x2_c01107{left:480.553333pt;}
.x3_c01107{left:498.333333pt;}
}





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

.ir_c01108:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01108;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01108;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01108;src:url('chunks/assets/font_3f7026d8b7b025224f45b1db.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01108;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff4_c01108{font-family:ff4_c01108;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01108;src:url('chunks/assets/font_770b896cbf85594f0e86d8e1.woff2')format("woff");}.ff5_c01108{font-family:ff5_c01108;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01108{vertical-align:0.000000px;}
.ls0_c01108{letter-spacing:0.000000px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01108{word-spacing:0.000000px;}
._0_c01108{margin-left:-1.390841px;}
._1_c01108{width:1.135201px;}
.fc0_c01108{color:rgb(0,0,0);}
.fs2_c01108{font-size:59.760000px;}
.fs0_c01108{font-size:66.240000px;}
.fs1_c01108{font-size:72.000000px;}
.y0_c01108{bottom:0.000000px;}
.y4_c01108{bottom:71.136000px;}
.y3_c01108{bottom:105.516000px;}
.y7_c01108{bottom:220.530000px;}
.y6_c01108{bottom:247.710000px;}
.y5_c01108{bottom:709.485000px;}
.y2_c01108{bottom:1160.100000px;}
.y1_c01108{bottom:1194.840000px;}
.h3_c01108{height:50.027344px;}
.h2_c01108{height:50.229844px;}
.h5_c01108{height:53.428008px;}
.h4_c01108{height:53.573906px;}
.h0_c01108{height:1262.880000px;}
.h1_c01108{height:1263.000000px;}
.w0_c01108{width:892.980000px;}
.w1_c01108{width:893.250000px;}
.x0_c01108{left:0.000000px;}
.x2_c01108{left:138.276000px;}
.x1_c01108{left:169.950000px;}
.x3_c01108{left:738.510000px;}
.x4_c01108{left:766.050000px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls0_c01108{letter-spacing:0.000000pt;}
.ws0_c01108{word-spacing:0.000000pt;}
._0_c01108{margin-left:-1.236303pt;}
._1_c01108{width:1.009068pt;}
.fs2_c01108{font-size:53.120000pt;}
.fs0_c01108{font-size:58.880000pt;}
.fs1_c01108{font-size:64.000000pt;}
.y0_c01108{bottom:0.000000pt;}
.y4_c01108{bottom:63.232000pt;}
.y3_c01108{bottom:93.792000pt;}
.y7_c01108{bottom:196.026667pt;}
.y6_c01108{bottom:220.186667pt;}
.y5_c01108{bottom:630.653333pt;}
.y2_c01108{bottom:1031.200000pt;}
.y1_c01108{bottom:1062.080000pt;}
.h3_c01108{height:44.468750pt;}
.h2_c01108{height:44.648750pt;}
.h5_c01108{height:47.491563pt;}
.h4_c01108{height:47.621250pt;}
.h0_c01108{height:1122.560000pt;}
.h1_c01108{height:1122.666667pt;}
.w0_c01108{width:793.760000pt;}
.w1_c01108{width:794.000000pt;}
.x0_c01108{left:0.000000pt;}
.x2_c01108{left:122.912000pt;}
.x1_c01108{left:151.066667pt;}
.x3_c01108{left:656.453333pt;}
.x4_c01108{left:680.933333pt;}
}





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

.ir_c01109:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01109;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01109;src:url('chunks/assets/font_eab7d7f90a431601bbee5899.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01109;src:url('chunks/assets/font_854b29e3f4f16c34d3caecda.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01109{vertical-align:0.000000px;}
.ls0_c01109{letter-spacing:0.000000px;}
.sc__c01109{text-shadow:none;}
.sc0_c01109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01109{-webkit-text-stroke:0px transparent;}
.sc0_c01109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01109{word-spacing:0.000000px;}
._0_c01109{margin-left:-1.258891px;}
._1_c01109{width:1.255199px;}
.fc0_c01109{color:rgb(0,0,0);}
.fs2_c01109{font-size:59.760000px;}
.fs0_c01109{font-size:66.240000px;}
.fs1_c01109{font-size:72.000000px;}
.y0_c01109{bottom:0.000000px;}
.y2_c01109{bottom:105.516000px;}
.y3_c01109{bottom:186.690000px;}
.y1_c01109{bottom:1194.840000px;}
.h2_c01109{height:48.062812px;}
.h3_c01109{height:50.027344px;}
.h4_c01109{height:53.428008px;}
.h0_c01109{height:1262.880000px;}
.h1_c01109{height:1263.000000px;}
.w0_c01109{width:892.980000px;}
.w1_c01109{width:893.250000px;}
.x0_c01109{left:0.000000px;}
.x1_c01109{left:138.276000px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls0_c01109{letter-spacing:0.000000pt;}
.ws0_c01109{word-spacing:0.000000pt;}
._0_c01109{margin-left:-1.119014pt;}
._1_c01109{width:1.115732pt;}
.fs2_c01109{font-size:53.120000pt;}
.fs0_c01109{font-size:58.880000pt;}
.fs1_c01109{font-size:64.000000pt;}
.y0_c01109{bottom:0.000000pt;}
.y2_c01109{bottom:93.792000pt;}
.y3_c01109{bottom:165.946667pt;}
.y1_c01109{bottom:1062.080000pt;}
.h2_c01109{height:42.722500pt;}
.h3_c01109{height:44.468750pt;}
.h4_c01109{height:47.491563pt;}
.h0_c01109{height:1122.560000pt;}
.h1_c01109{height:1122.666667pt;}
.w0_c01109{width:793.760000pt;}
.w1_c01109{width:794.000000pt;}
.x0_c01109{left:0.000000pt;}
.x1_c01109{left:122.912000pt;}
}





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

.ir_c01110:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01110;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01110;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01110;src:url('chunks/assets/font_c001df49515526e6b04f1cca.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01110;src:url('chunks/assets/font_d8c77f6f99cd078cc3f4cf1e.woff2')format("woff");}.ff4_c01110{font-family:ff4_c01110;line-height:1.104492;font-style:normal;font-weight: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_c01110;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff5_c01110{font-family:ff5_c01110;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01110{vertical-align:0.000000px;}
.ls1_c01110{letter-spacing:-0.053400px;}
.ls0_c01110{letter-spacing:0.000000px;}
.sc__c01110{text-shadow:none;}
.sc0_c01110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01110{-webkit-text-stroke:0px transparent;}
.sc0_c01110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01110{word-spacing:0.000000px;}
._3_c01110{margin-left:-15.173363px;}
._0_c01110{margin-left:-1.390841px;}
._2_c01110{width:1.489817px;}
._4_c01110{width:195.966486px;}
._5_c01110{width:847.542720px;}
._1_c01110{width:1196.940240px;}
.fc0_c01110{color:rgb(0,0,0);}
.fs2_c01110{font-size:59.760000px;}
.fs0_c01110{font-size:66.240000px;}
.fs1_c01110{font-size:72.000000px;}
.y0_c01110{bottom:0.000000px;}
.y4_c01110{bottom:71.136000px;}
.y3_c01110{bottom:105.516000px;}
.yc_c01110{bottom:234.210000px;}
.yb_c01110{bottom:264.810000px;}
.ya_c01110{bottom:295.635000px;}
.y9_c01110{bottom:326.235000px;}
.y8_c01110{bottom:353.775000px;}
.y7_c01110{bottom:653.865000px;}
.y6_c01110{bottom:686.985000px;}
.y5_c01110{bottom:714.165000px;}
.y2_c01110{bottom:1160.100000px;}
.y1_c01110{bottom:1194.840000px;}
.h3_c01110{height:50.027344px;}
.h2_c01110{height:50.229844px;}
.h4_c01110{height:53.428008px;}
.h5_c01110{height:53.573906px;}
.h0_c01110{height:1262.880000px;}
.h1_c01110{height:1263.000000px;}
.w0_c01110{width:892.980000px;}
.w1_c01110{width:893.250000px;}
.x0_c01110{left:0.000000px;}
.x2_c01110{left:138.276000px;}
.x1_c01110{left:169.950000px;}
.x5_c01110{left:451.875000px;}
.x4_c01110{left:456.555000px;}
.x6_c01110{left:672.405000px;}
.x3_c01110{left:738.510000px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.ls1_c01110{letter-spacing:-0.047467pt;}
.ls0_c01110{letter-spacing:0.000000pt;}
.ws0_c01110{word-spacing:0.000000pt;}
._3_c01110{margin-left:-13.487434pt;}
._0_c01110{margin-left:-1.236303pt;}
._2_c01110{width:1.324282pt;}
._4_c01110{width:174.192432pt;}
._5_c01110{width:753.371307pt;}
._1_c01110{width:1063.946880pt;}
.fs2_c01110{font-size:53.120000pt;}
.fs0_c01110{font-size:58.880000pt;}
.fs1_c01110{font-size:64.000000pt;}
.y0_c01110{bottom:0.000000pt;}
.y4_c01110{bottom:63.232000pt;}
.y3_c01110{bottom:93.792000pt;}
.yc_c01110{bottom:208.186667pt;}
.yb_c01110{bottom:235.386667pt;}
.ya_c01110{bottom:262.786667pt;}
.y9_c01110{bottom:289.986667pt;}
.y8_c01110{bottom:314.466667pt;}
.y7_c01110{bottom:581.213333pt;}
.y6_c01110{bottom:610.653333pt;}
.y5_c01110{bottom:634.813333pt;}
.y2_c01110{bottom:1031.200000pt;}
.y1_c01110{bottom:1062.080000pt;}
.h3_c01110{height:44.468750pt;}
.h2_c01110{height:44.648750pt;}
.h4_c01110{height:47.491563pt;}
.h5_c01110{height:47.621250pt;}
.h0_c01110{height:1122.560000pt;}
.h1_c01110{height:1122.666667pt;}
.w0_c01110{width:793.760000pt;}
.w1_c01110{width:794.000000pt;}
.x0_c01110{left:0.000000pt;}
.x2_c01110{left:122.912000pt;}
.x1_c01110{left:151.066667pt;}
.x5_c01110{left:401.666667pt;}
.x4_c01110{left:405.826667pt;}
.x6_c01110{left:597.693333pt;}
.x3_c01110{left:656.453333pt;}
}





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

.ir_c01111:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01111;src:url('chunks/assets/font_cbe423bc4ff9385ecced807a.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01111;src:url('chunks/assets/font_0f648e4efdf5148e368cd8e3.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01111{vertical-align:0.000000px;}
.ls1_c01111{letter-spacing:0.000000px;}
.ls0_c01111{letter-spacing:0.024000px;}
.sc__c01111{text-shadow:none;}
.sc0_c01111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01111{-webkit-text-stroke:0px transparent;}
.sc0_c01111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01111{word-spacing:-0.072000px;}
.ws1_c01111{word-spacing:-0.024000px;}
.fc0_c01111{color:rgb(0,0,0);}
.fs0_c01111{font-size:66.240000px;}
.fs1_c01111{font-size:72.000000px;}
.y0_c01111{bottom:0.000000px;}
.y2_c01111{bottom:105.516000px;}
.y1_c01111{bottom:1194.840000px;}
.h2_c01111{height:48.062812px;}
.h3_c01111{height:50.027344px;}
.h0_c01111{height:1262.880000px;}
.h1_c01111{height:1263.000000px;}
.w0_c01111{width:892.980000px;}
.w1_c01111{width:893.250000px;}
.x0_c01111{left:0.000000px;}
.x1_c01111{left:138.276000px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls1_c01111{letter-spacing:0.000000pt;}
.ls0_c01111{letter-spacing:0.021333pt;}
.ws0_c01111{word-spacing:-0.064000pt;}
.ws1_c01111{word-spacing:-0.021333pt;}
.fs0_c01111{font-size:58.880000pt;}
.fs1_c01111{font-size:64.000000pt;}
.y0_c01111{bottom:0.000000pt;}
.y2_c01111{bottom:93.792000pt;}
.y1_c01111{bottom:1062.080000pt;}
.h2_c01111{height:42.722500pt;}
.h3_c01111{height:44.468750pt;}
.h0_c01111{height:1122.560000pt;}
.h1_c01111{height:1122.666667pt;}
.w0_c01111{width:793.760000pt;}
.w1_c01111{width:794.000000pt;}
.x0_c01111{left:0.000000pt;}
.x1_c01111{left:122.912000pt;}
}





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

.ir_c01112:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01112;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01112;src:url('chunks/assets/font_8e02877238998f76a15363fc.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01112;src:url('chunks/assets/font_52a59c3857d93a9bacb8a076.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01112;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01112{font-family:ff4_c01112;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:ff5_c01112;src:url('chunks/assets/font_7fc1bbad1913cbbeac8f6a3c.woff2')format("woff");}.ff5_c01112{font-family:ff5_c01112;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01112;src:url('chunks/assets/font_870570ff1977b6d39c1fce28.woff2')format("woff");}.ff6_c01112{font-family:ff6_c01112;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01112;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff7_c01112{font-family:ff7_c01112;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:ff8_c01112;src:url('chunks/assets/font_dc411a31a700f545ecd8698c.woff2')format("woff");}.ff8_c01112{font-family:ff8_c01112;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01112{vertical-align:0.000000px;}
.ls3_c01112{letter-spacing:-0.540600px;}
.ls4_c01112{letter-spacing:-0.432000px;}
.ls2_c01112{letter-spacing:0.000000px;}
.ls0_c01112{letter-spacing:20.784000px;}
.ls1_c01112{letter-spacing:20.808000px;}
.sc__c01112{text-shadow:none;}
.sc1_c01112{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01112{-webkit-text-stroke:0px transparent;}
.sc1_c01112{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01112{word-spacing:-20.554560px;}
.ws0_c01112{word-spacing:-18.000000px;}
.ws2_c01112{word-spacing:0.000000px;}
._c_c01112{margin-left:-4.144152px;}
._3_c01112{margin-left:-2.695848px;}
._0_c01112{margin-left:-1.390841px;}
._1_c01112{width:1.436304px;}
._2_c01112{width:2.842157px;}
._7_c01112{width:3.983976px;}
._6_c01112{width:5.088024px;}
._d_c01112{width:6.358841px;}
._5_c01112{width:7.416000px;}
._4_c01112{width:8.424000px;}
._8_c01112{width:10.152000px;}
._b_c01112{width:11.242589px;}
._a_c01112{width:12.600000px;}
._9_c01112{width:13.608000px;}
._f_c01112{width:15.023880px;}
._e_c01112{width:16.248024px;}
.fc1_c01112{color:rgb(238,119,0);}
.fc0_c01112{color:rgb(0,0,0);}
.fs0_c01112{font-size:66.240000px;}
.fs2_c01112{font-size:72.000000px;}
.fs3_c01112{font-size:84.240000px;}
.fs1_c01112{font-size:95.760000px;}
.y0_c01112{bottom:0.000000px;}
.y8_c01112{bottom:5.055000px;}
.ye_c01112{bottom:9.000000px;}
.y6_c01112{bottom:27.360000px;}
.ya_c01112{bottom:31.140000px;}
.yd_c01112{bottom:41.040000px;}
.y5_c01112{bottom:53.640000px;}
.y2_c01112{bottom:77.796000px;}
.y2d_c01112{bottom:136.296000px;}
.y2c_c01112{bottom:158.610000px;}
.y2b_c01112{bottom:180.930000px;}
.y2a_c01112{bottom:203.250000px;}
.y29_c01112{bottom:225.570000px;}
.y28_c01112{bottom:247.890000px;}
.y27_c01112{bottom:270.210000px;}
.y26_c01112{bottom:292.575000px;}
.y25_c01112{bottom:315.075000px;}
.y24_c01112{bottom:337.395000px;}
.y23_c01112{bottom:359.715000px;}
.y22_c01112{bottom:394.095000px;}
.y21_c01112{bottom:416.415000px;}
.y20_c01112{bottom:438.735000px;}
.y1f_c01112{bottom:461.055000px;}
.y1e_c01112{bottom:483.375000px;}
.y1d_c01112{bottom:505.695000px;}
.y1c_c01112{bottom:528.015000px;}
.y1b_c01112{bottom:550.335000px;}
.y1a_c01112{bottom:572.685000px;}
.y19_c01112{bottom:595.005000px;}
.y18_c01112{bottom:617.325000px;}
.y17_c01112{bottom:639.825000px;}
.y16_c01112{bottom:662.145000px;}
.y15_c01112{bottom:684.465000px;}
.y14_c01112{bottom:706.785000px;}
.y13_c01112{bottom:729.105000px;}
.y12_c01112{bottom:751.425000px;}
.y11_c01112{bottom:795.165000px;}
.y10_c01112{bottom:852.435000px;}
.yf_c01112{bottom:852.450000px;}
.yc_c01112{bottom:906.810000px;}
.yb_c01112{bottom:971.055000px;}
.y9_c01112{bottom:971.070000px;}
.y7_c01112{bottom:1025.415000px;}
.y4_c01112{bottom:1025.430000px;}
.y3_c01112{bottom:1131.120000px;}
.y1_c01112{bottom:1194.660000px;}
.h2_c01112{height:48.062812px;}
.h3_c01112{height:50.229844px;}
.h7_c01112{height:52.382812px;}
.ha_c01112{height:54.345000px;}
.hb_c01112{height:54.351000px;}
.hc_c01112{height:54.360000px;}
.h6_c01112{height:63.550195px;}
.hd_c01112{height:64.245000px;}
.hf_c01112{height:64.546875px;}
.h4_c01112{height:69.575625px;}
.h5_c01112{height:76.845000px;}
.h8_c01112{height:76.851000px;}
.h9_c01112{height:76.860000px;}
.he_c01112{height:87.859687px;}
.h0_c01112{height:1262.880000px;}
.h1_c01112{height:1263.000000px;}
.w3_c01112{width:230.415000px;}
.w4_c01112{width:230.430000px;}
.w2_c01112{width:403.626000px;}
.w0_c01112{width:892.980000px;}
.w1_c01112{width:893.250000px;}
.x0_c01112{left:0.000000px;}
.x4_c01112{left:10.251000px;}
.x5_c01112{left:31.485000px;}
.x3_c01112{left:127.656000px;}
.x1_c01112{left:169.950000px;}
.x6_c01112{left:531.300000px;}
.x2_c01112{left:740.490000px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls3_c01112{letter-spacing:-0.480533pt;}
.ls4_c01112{letter-spacing:-0.384000pt;}
.ls2_c01112{letter-spacing:0.000000pt;}
.ls0_c01112{letter-spacing:18.474667pt;}
.ls1_c01112{letter-spacing:18.496000pt;}
.ws1_c01112{word-spacing:-18.270720pt;}
.ws0_c01112{word-spacing:-16.000000pt;}
.ws2_c01112{word-spacing:0.000000pt;}
._c_c01112{margin-left:-3.683690pt;}
._3_c01112{margin-left:-2.396310pt;}
._0_c01112{margin-left:-1.236303pt;}
._1_c01112{width:1.276715pt;}
._2_c01112{width:2.526362pt;}
._7_c01112{width:3.541312pt;}
._6_c01112{width:4.522688pt;}
._d_c01112{width:5.652303pt;}
._5_c01112{width:6.592000pt;}
._4_c01112{width:7.488000pt;}
._8_c01112{width:9.024000pt;}
._b_c01112{width:9.993412pt;}
._a_c01112{width:11.200000pt;}
._9_c01112{width:12.096000pt;}
._f_c01112{width:13.354560pt;}
._e_c01112{width:14.442688pt;}
.fs0_c01112{font-size:58.880000pt;}
.fs2_c01112{font-size:64.000000pt;}
.fs3_c01112{font-size:74.880000pt;}
.fs1_c01112{font-size:85.120000pt;}
.y0_c01112{bottom:0.000000pt;}
.y8_c01112{bottom:4.493333pt;}
.ye_c01112{bottom:8.000000pt;}
.y6_c01112{bottom:24.320000pt;}
.ya_c01112{bottom:27.680000pt;}
.yd_c01112{bottom:36.480000pt;}
.y5_c01112{bottom:47.680000pt;}
.y2_c01112{bottom:69.152000pt;}
.y2d_c01112{bottom:121.152000pt;}
.y2c_c01112{bottom:140.986667pt;}
.y2b_c01112{bottom:160.826667pt;}
.y2a_c01112{bottom:180.666667pt;}
.y29_c01112{bottom:200.506667pt;}
.y28_c01112{bottom:220.346667pt;}
.y27_c01112{bottom:240.186667pt;}
.y26_c01112{bottom:260.066667pt;}
.y25_c01112{bottom:280.066667pt;}
.y24_c01112{bottom:299.906667pt;}
.y23_c01112{bottom:319.746667pt;}
.y22_c01112{bottom:350.306667pt;}
.y21_c01112{bottom:370.146667pt;}
.y20_c01112{bottom:389.986667pt;}
.y1f_c01112{bottom:409.826667pt;}
.y1e_c01112{bottom:429.666667pt;}
.y1d_c01112{bottom:449.506667pt;}
.y1c_c01112{bottom:469.346667pt;}
.y1b_c01112{bottom:489.186667pt;}
.y1a_c01112{bottom:509.053333pt;}
.y19_c01112{bottom:528.893333pt;}
.y18_c01112{bottom:548.733333pt;}
.y17_c01112{bottom:568.733333pt;}
.y16_c01112{bottom:588.573333pt;}
.y15_c01112{bottom:608.413333pt;}
.y14_c01112{bottom:628.253333pt;}
.y13_c01112{bottom:648.093333pt;}
.y12_c01112{bottom:667.933333pt;}
.y11_c01112{bottom:706.813333pt;}
.y10_c01112{bottom:757.720000pt;}
.yf_c01112{bottom:757.733333pt;}
.yc_c01112{bottom:806.053333pt;}
.yb_c01112{bottom:863.160000pt;}
.y9_c01112{bottom:863.173333pt;}
.y7_c01112{bottom:911.480000pt;}
.y4_c01112{bottom:911.493333pt;}
.y3_c01112{bottom:1005.440000pt;}
.y1_c01112{bottom:1061.920000pt;}
.h2_c01112{height:42.722500pt;}
.h3_c01112{height:44.648750pt;}
.h7_c01112{height:46.562500pt;}
.ha_c01112{height:48.306667pt;}
.hb_c01112{height:48.312000pt;}
.hc_c01112{height:48.320000pt;}
.h6_c01112{height:56.489062pt;}
.hd_c01112{height:57.106667pt;}
.hf_c01112{height:57.375000pt;}
.h4_c01112{height:61.845000pt;}
.h5_c01112{height:68.306667pt;}
.h8_c01112{height:68.312000pt;}
.h9_c01112{height:68.320000pt;}
.he_c01112{height:78.097500pt;}
.h0_c01112{height:1122.560000pt;}
.h1_c01112{height:1122.666667pt;}
.w3_c01112{width:204.813333pt;}
.w4_c01112{width:204.826667pt;}
.w2_c01112{width:358.778667pt;}
.w0_c01112{width:793.760000pt;}
.w1_c01112{width:794.000000pt;}
.x0_c01112{left:0.000000pt;}
.x4_c01112{left:9.112000pt;}
.x5_c01112{left:27.986667pt;}
.x3_c01112{left:113.472000pt;}
.x1_c01112{left:151.066667pt;}
.x6_c01112{left:472.266667pt;}
.x2_c01112{left:658.213333pt;}
}





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

.ir_c01113:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01113;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01113;src:url('chunks/assets/font_912069ee67c594ed4e67a11b.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01113;src:url('chunks/assets/font_a106750382b5b52937aedd20.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01113;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff4_c01113{font-family:ff4_c01113;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:ff5_c01113;src:url('chunks/assets/font_081b9cacdf196575f5cd78b8.woff2')format("woff");}.ff5_c01113{font-family:ff5_c01113;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01113;src:url('chunks/assets/font_927abd959603183416b1fb49.woff2')format("woff");}.ff6_c01113{font-family:ff6_c01113;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01113;src:url('chunks/assets/font_fe1563b1d47caae6ddb43d31.woff2')format("woff");}.ff7_c01113{font-family:ff7_c01113;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01113{vertical-align:0.000000px;}
.ls5_c01113{letter-spacing:-0.272400px;}
.ls3_c01113{letter-spacing:-0.181200px;}
.ls2_c01113{letter-spacing:0.000000px;}
.ls4_c01113{letter-spacing:0.150000px;}
.ls1_c01113{letter-spacing:0.152400px;}
.ls0_c01113{letter-spacing:0.174240px;}
.sc__c01113{text-shadow:none;}
.sc0_c01113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01113{-webkit-text-stroke:0px transparent;}
.sc0_c01113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01113{word-spacing:-21.187920px;}
.ws1_c01113{word-spacing:0.000000px;}
._2_c01113{margin-left:-4.886194px;}
._1_c01113{margin-left:-3.456000px;}
._4_c01113{margin-left:-2.341109px;}
._0_c01113{margin-left:-1.258891px;}
._3_c01113{width:1.186891px;}
._5_c01113{width:2.962915px;}
._b_c01113{width:4.104000px;}
._c_c01113{width:5.127278px;}
._d_c01113{width:6.264000px;}
._f_c01113{width:7.632000px;}
._8_c01113{width:8.784000px;}
._a_c01113{width:10.152000px;}
._9_c01113{width:11.304000px;}
._7_c01113{width:15.840000px;}
._6_c01113{width:17.568000px;}
._10_c01113{width:19.010218px;}
._11_c01113{width:29.376000px;}
._e_c01113{width:87.624000px;}
.fc0_c01113{color:rgb(0,0,0);}
.fs4_c01113{font-size:38.880000px;}
.fs2_c01113{font-size:48.240000px;}
.fs5_c01113{font-size:59.760000px;}
.fs0_c01113{font-size:66.240000px;}
.fs1_c01113{font-size:72.000000px;}
.fs3_c01113{font-size:84.240000px;}
.y0_c01113{bottom:0.000000px;}
.y35_c01113{bottom:25.005000px;}
.y34_c01113{bottom:42.465000px;}
.y4_c01113{bottom:57.636000px;}
.y3_c01113{bottom:77.796000px;}
.y32_c01113{bottom:109.296000px;}
.y31_c01113{bottom:128.376000px;}
.y30_c01113{bottom:133.596000px;}
.y2f_c01113{bottom:148.176000px;}
.y33_c01113{bottom:163.665000px;}
.y2e_c01113{bottom:184.710000px;}
.y2d_c01113{bottom:207.030000px;}
.y2c_c01113{bottom:229.350000px;}
.y2b_c01113{bottom:251.670000px;}
.y2a_c01113{bottom:273.990000px;}
.y29_c01113{bottom:296.355000px;}
.y28_c01113{bottom:318.855000px;}
.y27_c01113{bottom:341.175000px;}
.y26_c01113{bottom:375.555000px;}
.y25_c01113{bottom:397.695000px;}
.y24_c01113{bottom:420.195000px;}
.y23_c01113{bottom:442.515000px;}
.y22_c01113{bottom:464.835000px;}
.y21_c01113{bottom:487.155000px;}
.y20_c01113{bottom:509.475000px;}
.y1f_c01113{bottom:531.795000px;}
.y1e_c01113{bottom:554.115000px;}
.y1d_c01113{bottom:576.465000px;}
.y1c_c01113{bottom:598.785000px;}
.y1b_c01113{bottom:621.105000px;}
.y1a_c01113{bottom:643.605000px;}
.y19_c01113{bottom:665.925000px;}
.y18_c01113{bottom:688.245000px;}
.y17_c01113{bottom:710.565000px;}
.y16_c01113{bottom:732.885000px;}
.y15_c01113{bottom:754.305000px;}
.y14_c01113{bottom:776.625000px;}
.y13_c01113{bottom:813.525000px;}
.y11_c01113{bottom:847.950000px;}
.y12_c01113{bottom:853.890000px;}
.y10_c01113{bottom:870.090000px;}
.yf_c01113{bottom:904.650000px;}
.ye_c01113{bottom:926.790000px;}
.yd_c01113{bottom:949.110000px;}
.yc_c01113{bottom:971.430000px;}
.yb_c01113{bottom:993.750000px;}
.ya_c01113{bottom:1016.070000px;}
.y9_c01113{bottom:1038.570000px;}
.y8_c01113{bottom:1060.890000px;}
.y7_c01113{bottom:1083.210000px;}
.y6_c01113{bottom:1117.590000px;}
.y5_c01113{bottom:1139.940000px;}
.y2_c01113{bottom:1174.320000px;}
.y1_c01113{bottom:1194.660000px;}
.h8_c01113{height:29.482734px;}
.h6_c01113{height:43.246406px;}
.h2_c01113{height:48.062812px;}
.h3_c01113{height:50.229844px;}
.hb_c01113{height:53.428008px;}
.ha_c01113{height:56.160000px;}
.h9_c01113{height:63.763920px;}
.h4_c01113{height:64.546875px;}
.h7_c01113{height:87.859687px;}
.h5_c01113{height:1262.865000px;}
.h0_c01113{height:1262.880000px;}
.h1_c01113{height:1263.000000px;}
.w3_c01113{width:238.170000px;}
.w2_c01113{width:892.957500px;}
.w0_c01113{width:892.980000px;}
.w1_c01113{width:893.250000px;}
.x0_c01113{left:0.000000px;}
.x1_c01113{left:127.656000px;}
.x5_c01113{left:142.236000px;}
.x4_c01113{left:343.695000px;}
.x6_c01113{left:526.980000px;}
.x2_c01113{left:740.647500px;}
.x3_c01113{left:760.650000px;}
@media print{
.v0_c01113{vertical-align:0.000000pt;}
.ls5_c01113{letter-spacing:-0.242133pt;}
.ls3_c01113{letter-spacing:-0.161067pt;}
.ls2_c01113{letter-spacing:0.000000pt;}
.ls4_c01113{letter-spacing:0.133333pt;}
.ls1_c01113{letter-spacing:0.135467pt;}
.ls0_c01113{letter-spacing:0.154880pt;}
.ws0_c01113{word-spacing:-18.833707pt;}
.ws1_c01113{word-spacing:0.000000pt;}
._2_c01113{margin-left:-4.343283pt;}
._1_c01113{margin-left:-3.072000pt;}
._4_c01113{margin-left:-2.080986pt;}
._0_c01113{margin-left:-1.119014pt;}
._3_c01113{width:1.055014pt;}
._5_c01113{width:2.633702pt;}
._b_c01113{width:3.648000pt;}
._c_c01113{width:4.557581pt;}
._d_c01113{width:5.568000pt;}
._f_c01113{width:6.784000pt;}
._8_c01113{width:7.808000pt;}
._a_c01113{width:9.024000pt;}
._9_c01113{width:10.048000pt;}
._7_c01113{width:14.080000pt;}
._6_c01113{width:15.616000pt;}
._10_c01113{width:16.897971pt;}
._11_c01113{width:26.112000pt;}
._e_c01113{width:77.888000pt;}
.fs4_c01113{font-size:34.560000pt;}
.fs2_c01113{font-size:42.880000pt;}
.fs5_c01113{font-size:53.120000pt;}
.fs0_c01113{font-size:58.880000pt;}
.fs1_c01113{font-size:64.000000pt;}
.fs3_c01113{font-size:74.880000pt;}
.y0_c01113{bottom:0.000000pt;}
.y35_c01113{bottom:22.226667pt;}
.y34_c01113{bottom:37.746667pt;}
.y4_c01113{bottom:51.232000pt;}
.y3_c01113{bottom:69.152000pt;}
.y32_c01113{bottom:97.152000pt;}
.y31_c01113{bottom:114.112000pt;}
.y30_c01113{bottom:118.752000pt;}
.y2f_c01113{bottom:131.712000pt;}
.y33_c01113{bottom:145.480000pt;}
.y2e_c01113{bottom:164.186667pt;}
.y2d_c01113{bottom:184.026667pt;}
.y2c_c01113{bottom:203.866667pt;}
.y2b_c01113{bottom:223.706667pt;}
.y2a_c01113{bottom:243.546667pt;}
.y29_c01113{bottom:263.426667pt;}
.y28_c01113{bottom:283.426667pt;}
.y27_c01113{bottom:303.266667pt;}
.y26_c01113{bottom:333.826667pt;}
.y25_c01113{bottom:353.506667pt;}
.y24_c01113{bottom:373.506667pt;}
.y23_c01113{bottom:393.346667pt;}
.y22_c01113{bottom:413.186667pt;}
.y21_c01113{bottom:433.026667pt;}
.y20_c01113{bottom:452.866667pt;}
.y1f_c01113{bottom:472.706667pt;}
.y1e_c01113{bottom:492.546667pt;}
.y1d_c01113{bottom:512.413333pt;}
.y1c_c01113{bottom:532.253333pt;}
.y1b_c01113{bottom:552.093333pt;}
.y1a_c01113{bottom:572.093333pt;}
.y19_c01113{bottom:591.933333pt;}
.y18_c01113{bottom:611.773333pt;}
.y17_c01113{bottom:631.613333pt;}
.y16_c01113{bottom:651.453333pt;}
.y15_c01113{bottom:670.493333pt;}
.y14_c01113{bottom:690.333333pt;}
.y13_c01113{bottom:723.133333pt;}
.y11_c01113{bottom:753.733333pt;}
.y12_c01113{bottom:759.013333pt;}
.y10_c01113{bottom:773.413333pt;}
.yf_c01113{bottom:804.133333pt;}
.ye_c01113{bottom:823.813333pt;}
.yd_c01113{bottom:843.653333pt;}
.yc_c01113{bottom:863.493333pt;}
.yb_c01113{bottom:883.333333pt;}
.ya_c01113{bottom:903.173333pt;}
.y9_c01113{bottom:923.173333pt;}
.y8_c01113{bottom:943.013333pt;}
.y7_c01113{bottom:962.853333pt;}
.y6_c01113{bottom:993.413333pt;}
.y5_c01113{bottom:1013.280000pt;}
.y2_c01113{bottom:1043.840000pt;}
.y1_c01113{bottom:1061.920000pt;}
.h8_c01113{height:26.206875pt;}
.h6_c01113{height:38.441250pt;}
.h2_c01113{height:42.722500pt;}
.h3_c01113{height:44.648750pt;}
.hb_c01113{height:47.491563pt;}
.ha_c01113{height:49.920000pt;}
.h9_c01113{height:56.679040pt;}
.h4_c01113{height:57.375000pt;}
.h7_c01113{height:78.097500pt;}
.h5_c01113{height:1122.546667pt;}
.h0_c01113{height:1122.560000pt;}
.h1_c01113{height:1122.666667pt;}
.w3_c01113{width:211.706667pt;}
.w2_c01113{width:793.740000pt;}
.w0_c01113{width:793.760000pt;}
.w1_c01113{width:794.000000pt;}
.x0_c01113{left:0.000000pt;}
.x1_c01113{left:113.472000pt;}
.x5_c01113{left:126.432000pt;}
.x4_c01113{left:305.506667pt;}
.x6_c01113{left:468.426667pt;}
.x2_c01113{left:658.353333pt;}
.x3_c01113{left:676.133333pt;}
}





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

.ir_c01114:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01114;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01114;src:url('chunks/assets/font_83615653fc4eac5ae86208f4.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01114;src:url('chunks/assets/font_42772e2158720bdd8ac71840.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01114;src:url('chunks/assets/font_56f237543a0a26243bf0aede.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01114{vertical-align:0.000000px;}
.ls1_c01114{letter-spacing:-0.576000px;}
.ls0_c01114{letter-spacing:0.000000px;}
.sc__c01114{text-shadow:none;}
.sc0_c01114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01114{-webkit-text-stroke:0px transparent;}
.sc0_c01114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01114{word-spacing:0.000000px;}
._11_c01114{margin-left:-5.497644px;}
._12_c01114{margin-left:-3.624578px;}
._3_c01114{margin-left:-2.476587px;}
._0_c01114{margin-left:-1.390841px;}
._2_c01114{width:1.666817px;}
._c_c01114{width:2.705669px;}
._5_c01114{width:3.744000px;}
._4_c01114{width:4.752000px;}
._a_c01114{width:6.192000px;}
._b_c01114{width:7.250365px;}
._9_c01114{width:10.368000px;}
._8_c01114{width:13.680000px;}
._7_c01114{width:15.336000px;}
._6_c01114{width:16.344000px;}
._1_c01114{width:18.936000px;}
._10_c01114{width:26.726293px;}
._f_c01114{width:27.864000px;}
._e_c01114{width:28.989683px;}
._d_c01114{width:30.024000px;}
.fc0_c01114{color:rgb(0,0,0);}
.fs2_c01114{font-size:59.760000px;}
.fs0_c01114{font-size:66.240000px;}
.fs1_c01114{font-size:72.000000px;}
.y0_c01114{bottom:0.000000px;}
.y23_c01114{bottom:19.815000px;}
.y4_c01114{bottom:57.636000px;}
.y3_c01114{bottom:77.796000px;}
.y21_c01114{bottom:144.036000px;}
.y20_c01114{bottom:178.230000px;}
.y1f_c01114{bottom:200.370000px;}
.y1e_c01114{bottom:222.870000px;}
.y1d_c01114{bottom:245.190000px;}
.y1c_c01114{bottom:267.510000px;}
.y1b_c01114{bottom:289.875000px;}
.y1a_c01114{bottom:312.195000px;}
.y19_c01114{bottom:334.515000px;}
.y18_c01114{bottom:356.835000px;}
.y22_c01114{bottom:384.360000px;}
.y17_c01114{bottom:391.395000px;}
.y16_c01114{bottom:421.815000px;}
.y15_c01114{bottom:770.505000px;}
.y14_c01114{bottom:792.645000px;}
.y13_c01114{bottom:815.145000px;}
.y12_c01114{bottom:837.465000px;}
.y11_c01114{bottom:859.830000px;}
.y10_c01114{bottom:882.150000px;}
.yf_c01114{bottom:904.470000px;}
.ye_c01114{bottom:926.790000px;}
.yd_c01114{bottom:949.110000px;}
.yc_c01114{bottom:971.430000px;}
.yb_c01114{bottom:993.750000px;}
.ya_c01114{bottom:1016.070000px;}
.y9_c01114{bottom:1038.570000px;}
.y8_c01114{bottom:1060.890000px;}
.y7_c01114{bottom:1083.210000px;}
.y6_c01114{bottom:1117.590000px;}
.y5_c01114{bottom:1139.940000px;}
.y2_c01114{bottom:1174.320000px;}
.y1_c01114{bottom:1194.660000px;}
.h5_c01114{height:33.660000px;}
.h2_c01114{height:48.062812px;}
.h3_c01114{height:50.229844px;}
.h6_c01114{height:53.428008px;}
.h4_c01114{height:64.546875px;}
.h0_c01114{height:1262.880000px;}
.h1_c01114{height:1263.000000px;}
.w2_c01114{width:499.590000px;}
.w0_c01114{width:892.980000px;}
.w1_c01114{width:893.250000px;}
.x0_c01114{left:0.000000px;}
.x2_c01114{left:127.656000px;}
.x5_c01114{left:153.570000px;}
.x1_c01114{left:169.950000px;}
.x6_c01114{left:193.005000px;}
.x4_c01114{left:700.890000px;}
.x3_c01114{left:740.490000px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls1_c01114{letter-spacing:-0.512000pt;}
.ls0_c01114{letter-spacing:0.000000pt;}
.ws0_c01114{word-spacing:0.000000pt;}
._11_c01114{margin-left:-4.886794pt;}
._12_c01114{margin-left:-3.221847pt;}
._3_c01114{margin-left:-2.201411pt;}
._0_c01114{margin-left:-1.236303pt;}
._2_c01114{width:1.481615pt;}
._c_c01114{width:2.405039pt;}
._5_c01114{width:3.328000pt;}
._4_c01114{width:4.224000pt;}
._a_c01114{width:5.504000pt;}
._b_c01114{width:6.444769pt;}
._9_c01114{width:9.216000pt;}
._8_c01114{width:12.160000pt;}
._7_c01114{width:13.632000pt;}
._6_c01114{width:14.528000pt;}
._1_c01114{width:16.832000pt;}
._10_c01114{width:23.756705pt;}
._f_c01114{width:24.768000pt;}
._e_c01114{width:25.768607pt;}
._d_c01114{width:26.688000pt;}
.fs2_c01114{font-size:53.120000pt;}
.fs0_c01114{font-size:58.880000pt;}
.fs1_c01114{font-size:64.000000pt;}
.y0_c01114{bottom:0.000000pt;}
.y23_c01114{bottom:17.613333pt;}
.y4_c01114{bottom:51.232000pt;}
.y3_c01114{bottom:69.152000pt;}
.y21_c01114{bottom:128.032000pt;}
.y20_c01114{bottom:158.426667pt;}
.y1f_c01114{bottom:178.106667pt;}
.y1e_c01114{bottom:198.106667pt;}
.y1d_c01114{bottom:217.946667pt;}
.y1c_c01114{bottom:237.786667pt;}
.y1b_c01114{bottom:257.666667pt;}
.y1a_c01114{bottom:277.506667pt;}
.y19_c01114{bottom:297.346667pt;}
.y18_c01114{bottom:317.186667pt;}
.y22_c01114{bottom:341.653333pt;}
.y17_c01114{bottom:347.906667pt;}
.y16_c01114{bottom:374.946667pt;}
.y15_c01114{bottom:684.893333pt;}
.y14_c01114{bottom:704.573333pt;}
.y13_c01114{bottom:724.573333pt;}
.y12_c01114{bottom:744.413333pt;}
.y11_c01114{bottom:764.293333pt;}
.y10_c01114{bottom:784.133333pt;}
.yf_c01114{bottom:803.973333pt;}
.ye_c01114{bottom:823.813333pt;}
.yd_c01114{bottom:843.653333pt;}
.yc_c01114{bottom:863.493333pt;}
.yb_c01114{bottom:883.333333pt;}
.ya_c01114{bottom:903.173333pt;}
.y9_c01114{bottom:923.173333pt;}
.y8_c01114{bottom:943.013333pt;}
.y7_c01114{bottom:962.853333pt;}
.y6_c01114{bottom:993.413333pt;}
.y5_c01114{bottom:1013.280000pt;}
.y2_c01114{bottom:1043.840000pt;}
.y1_c01114{bottom:1061.920000pt;}
.h5_c01114{height:29.920000pt;}
.h2_c01114{height:42.722500pt;}
.h3_c01114{height:44.648750pt;}
.h6_c01114{height:47.491563pt;}
.h4_c01114{height:57.375000pt;}
.h0_c01114{height:1122.560000pt;}
.h1_c01114{height:1122.666667pt;}
.w2_c01114{width:444.080000pt;}
.w0_c01114{width:793.760000pt;}
.w1_c01114{width:794.000000pt;}
.x0_c01114{left:0.000000pt;}
.x2_c01114{left:113.472000pt;}
.x5_c01114{left:136.506667pt;}
.x1_c01114{left:151.066667pt;}
.x6_c01114{left:171.560000pt;}
.x4_c01114{left:623.013333pt;}
.x3_c01114{left:658.213333pt;}
}





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

.ir_c01115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01115;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01115;src:url('chunks/assets/font_c12eb901ae2c9a405000489b.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01115;src:url('chunks/assets/font_2d44a77dbd649ed063ff4e36.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01115;src:url('chunks/assets/font_15445d20592b51368a2b8607.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;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:ff5_c01115;src:url('chunks/assets/font_a1e4ec19934660f76a9e82c7.woff2')format("woff");}.ff5_c01115{font-family:ff5_c01115;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01115;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff6_c01115{font-family:ff6_c01115;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01115{vertical-align:0.000000px;}
.ls1_c01115{letter-spacing:0.000000px;}
.ls0_c01115{letter-spacing:0.144000px;}
.sc__c01115{text-shadow:none;}
.sc0_c01115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01115{-webkit-text-stroke:0px transparent;}
.sc0_c01115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01115{word-spacing:0.000000px;}
._c_c01115{margin-left:-4.392000px;}
._8_c01115{margin-left:-2.520000px;}
._0_c01115{margin-left:-1.258891px;}
._3_c01115{width:1.084435px;}
._7_c01115{width:2.185085px;}
._b_c01115{width:3.857371px;}
._a_c01115{width:5.256000px;}
._9_c01115{width:6.408000px;}
._2_c01115{width:7.954891px;}
._1_c01115{width:9.144000px;}
._6_c01115{width:10.152000px;}
._5_c01115{width:13.680000px;}
._4_c01115{width:14.832000px;}
._d_c01115{width:15.941002px;}
.fc1_c01115{color:transparent;}
.fc0_c01115{color:rgb(0,0,0);}
.fs3_c01115{font-size:59.760000px;}
.fs0_c01115{font-size:66.240000px;}
.fs1_c01115{font-size:72.000000px;}
.fs2_c01115{font-size:84.240000px;}
.y2b_c01115{bottom:-1.785000px;}
.y0_c01115{bottom:0.000000px;}
.y29_c01115{bottom:7.365000px;}
.y4_c01115{bottom:57.636000px;}
.y3_c01115{bottom:77.796000px;}
.y27_c01115{bottom:197.310000px;}
.y26_c01115{bottom:231.690000px;}
.y28_c01115{bottom:239.265000px;}
.y25_c01115{bottom:266.070000px;}
.y24_c01115{bottom:300.495000px;}
.y2a_c01115{bottom:324.420000px;}
.y23_c01115{bottom:334.695000px;}
.y22_c01115{bottom:369.075000px;}
.y21_c01115{bottom:403.455000px;}
.y20_c01115{bottom:437.835000px;}
.y1f_c01115{bottom:472.035000px;}
.y1e_c01115{bottom:506.415000px;}
.y1d_c01115{bottom:527.655000px;}
.y1c_c01115{bottom:549.975000px;}
.y1b_c01115{bottom:587.085000px;}
.y1a_c01115{bottom:621.285000px;}
.y19_c01115{bottom:643.605000px;}
.y18_c01115{bottom:665.925000px;}
.y17_c01115{bottom:688.245000px;}
.y16_c01115{bottom:710.565000px;}
.y15_c01115{bottom:745.125000px;}
.y14_c01115{bottom:767.265000px;}
.y13_c01115{bottom:789.585000px;}
.y12_c01115{bottom:811.905000px;}
.y11_c01115{bottom:834.225000px;}
.y10_c01115{bottom:868.830000px;}
.yf_c01115{bottom:890.970000px;}
.ye_c01115{bottom:913.290000px;}
.yd_c01115{bottom:935.610000px;}
.yc_c01115{bottom:957.930000px;}
.yb_c01115{bottom:979.350000px;}
.ya_c01115{bottom:1001.670000px;}
.y9_c01115{bottom:1038.750000px;}
.y8_c01115{bottom:1072.950000px;}
.y7_c01115{bottom:1095.090000px;}
.y6_c01115{bottom:1117.410000px;}
.y5_c01115{bottom:1139.940000px;}
.y2_c01115{bottom:1174.320000px;}
.y1_c01115{bottom:1194.660000px;}
.h8_c01115{height:11.880000px;}
.h6_c01115{height:21.240000px;}
.h2_c01115{height:48.062812px;}
.h3_c01115{height:50.229844px;}
.h7_c01115{height:53.428008px;}
.h9_c01115{height:53.953242px;}
.h4_c01115{height:64.546875px;}
.h5_c01115{height:87.859687px;}
.h0_c01115{height:1262.880000px;}
.h1_c01115{height:1263.000000px;}
.w3_c01115{width:21.600000px;}
.w2_c01115{width:483.915000px;}
.w0_c01115{width:892.980000px;}
.w1_c01115{width:893.250000px;}
.x0_c01115{left:0.000000px;}
.x6_c01115{left:10.800000px;}
.x1_c01115{left:127.656000px;}
.x4_c01115{left:136.305000px;}
.x5_c01115{left:373.935000px;}
.x2_c01115{left:532.725000px;}
.x3_c01115{left:633.705000px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls1_c01115{letter-spacing:0.000000pt;}
.ls0_c01115{letter-spacing:0.128000pt;}
.ws0_c01115{word-spacing:0.000000pt;}
._c_c01115{margin-left:-3.904000pt;}
._8_c01115{margin-left:-2.240000pt;}
._0_c01115{margin-left:-1.119014pt;}
._3_c01115{width:0.963942pt;}
._7_c01115{width:1.942298pt;}
._b_c01115{width:3.428774pt;}
._a_c01115{width:4.672000pt;}
._9_c01115{width:5.696000pt;}
._2_c01115{width:7.071014pt;}
._1_c01115{width:8.128000pt;}
._6_c01115{width:9.024000pt;}
._5_c01115{width:12.160000pt;}
._4_c01115{width:13.184000pt;}
._d_c01115{width:14.169779pt;}
.fs3_c01115{font-size:53.120000pt;}
.fs0_c01115{font-size:58.880000pt;}
.fs1_c01115{font-size:64.000000pt;}
.fs2_c01115{font-size:74.880000pt;}
.y2b_c01115{bottom:-1.586667pt;}
.y0_c01115{bottom:0.000000pt;}
.y29_c01115{bottom:6.546667pt;}
.y4_c01115{bottom:51.232000pt;}
.y3_c01115{bottom:69.152000pt;}
.y27_c01115{bottom:175.386667pt;}
.y26_c01115{bottom:205.946667pt;}
.y28_c01115{bottom:212.680000pt;}
.y25_c01115{bottom:236.506667pt;}
.y24_c01115{bottom:267.106667pt;}
.y2a_c01115{bottom:288.373333pt;}
.y23_c01115{bottom:297.506667pt;}
.y22_c01115{bottom:328.066667pt;}
.y21_c01115{bottom:358.626667pt;}
.y20_c01115{bottom:389.186667pt;}
.y1f_c01115{bottom:419.586667pt;}
.y1e_c01115{bottom:450.146667pt;}
.y1d_c01115{bottom:469.026667pt;}
.y1c_c01115{bottom:488.866667pt;}
.y1b_c01115{bottom:521.853333pt;}
.y1a_c01115{bottom:552.253333pt;}
.y19_c01115{bottom:572.093333pt;}
.y18_c01115{bottom:591.933333pt;}
.y17_c01115{bottom:611.773333pt;}
.y16_c01115{bottom:631.613333pt;}
.y15_c01115{bottom:662.333333pt;}
.y14_c01115{bottom:682.013333pt;}
.y13_c01115{bottom:701.853333pt;}
.y12_c01115{bottom:721.693333pt;}
.y11_c01115{bottom:741.533333pt;}
.y10_c01115{bottom:772.293333pt;}
.yf_c01115{bottom:791.973333pt;}
.ye_c01115{bottom:811.813333pt;}
.yd_c01115{bottom:831.653333pt;}
.yc_c01115{bottom:851.493333pt;}
.yb_c01115{bottom:870.533333pt;}
.ya_c01115{bottom:890.373333pt;}
.y9_c01115{bottom:923.333333pt;}
.y8_c01115{bottom:953.733333pt;}
.y7_c01115{bottom:973.413333pt;}
.y6_c01115{bottom:993.253333pt;}
.y5_c01115{bottom:1013.280000pt;}
.y2_c01115{bottom:1043.840000pt;}
.y1_c01115{bottom:1061.920000pt;}
.h8_c01115{height:10.560000pt;}
.h6_c01115{height:18.880000pt;}
.h2_c01115{height:42.722500pt;}
.h3_c01115{height:44.648750pt;}
.h7_c01115{height:47.491563pt;}
.h9_c01115{height:47.958438pt;}
.h4_c01115{height:57.375000pt;}
.h5_c01115{height:78.097500pt;}
.h0_c01115{height:1122.560000pt;}
.h1_c01115{height:1122.666667pt;}
.w3_c01115{width:19.200000pt;}
.w2_c01115{width:430.146667pt;}
.w0_c01115{width:793.760000pt;}
.w1_c01115{width:794.000000pt;}
.x0_c01115{left:0.000000pt;}
.x6_c01115{left:9.600000pt;}
.x1_c01115{left:113.472000pt;}
.x4_c01115{left:121.160000pt;}
.x5_c01115{left:332.386667pt;}
.x2_c01115{left:473.533333pt;}
.x3_c01115{left:563.293333pt;}
}





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

.ir_c01116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01116;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01116;src:url('chunks/assets/font_6055f4123e4a1fe7cbeb4ce8.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01116;src:url('chunks/assets/font_8b23969b7327d26555a3cfb4.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01116;src:url('chunks/assets/font_518c88af653f92ac0575cf64.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01116;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01116{font-family:ff5_c01116;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;}
.m0_c01116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01116{vertical-align:0.000000px;}
.ls1_c01116{letter-spacing:-0.144000px;}
.ls0_c01116{letter-spacing:0.000000px;}
.sc__c01116{text-shadow:none;}
.sc0_c01116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01116{-webkit-text-stroke:0px transparent;}
.sc0_c01116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01116{word-spacing:-20.016000px;}
.ws1_c01116{word-spacing:-19.872000px;}
.ws2_c01116{word-spacing:0.000000px;}
._11_c01116{margin-left:-5.760000px;}
._10_c01116{margin-left:-4.680000px;}
._1_c01116{margin-left:-2.526952px;}
._0_c01116{margin-left:-1.390841px;}
._2_c01116{width:1.028857px;}
._a_c01116{width:2.136024px;}
._13_c01116{width:3.816000px;}
._17_c01116{width:5.422841px;}
._b_c01116{width:7.200000px;}
._14_c01116{width:9.072000px;}
._e_c01116{width:10.152000px;}
._d_c01116{width:11.304000px;}
._9_c01116{width:16.560000px;}
._8_c01116{width:18.072000px;}
._c_c01116{width:21.384000px;}
._7_c01116{width:22.392000px;}
._6_c01116{width:23.688000px;}
._16_c01116{width:25.056000px;}
._15_c01116{width:26.208000px;}
._4_c01116{width:30.384000px;}
._3_c01116{width:31.464000px;}
._f_c01116{width:32.976000px;}
._5_c01116{width:34.056000px;}
._12_c01116{width:55.080000px;}
.fc0_c01116{color:rgb(0,0,0);}
.fs2_c01116{font-size:59.760000px;}
.fs0_c01116{font-size:66.240000px;}
.fs1_c01116{font-size:72.000000px;}
.y0_c01116{bottom:0.000000px;}
.y26_c01116{bottom:6.495000px;}
.y22_c01116{bottom:11.520000px;}
.y24_c01116{bottom:12.045000px;}
.y4_c01116{bottom:57.636000px;}
.y3_c01116{bottom:77.796000px;}
.y20_c01116{bottom:135.936000px;}
.y1f_c01116{bottom:170.310000px;}
.y1e_c01116{bottom:204.690000px;}
.y23_c01116{bottom:206.505000px;}
.y1d_c01116{bottom:235.110000px;}
.y1c_c01116{bottom:590.145000px;}
.y21_c01116{bottom:593.205000px;}
.y1b_c01116{bottom:624.525000px;}
.y1a_c01116{bottom:646.665000px;}
.y19_c01116{bottom:668.985000px;}
.y18_c01116{bottom:691.305000px;}
.y17_c01116{bottom:713.805000px;}
.y16_c01116{bottom:736.125000px;}
.y15_c01116{bottom:758.445000px;}
.y14_c01116{bottom:780.765000px;}
.y13_c01116{bottom:803.085000px;}
.y12_c01116{bottom:825.405000px;}
.y25_c01116{bottom:850.095000px;}
.y11_c01116{bottom:860.010000px;}
.y10_c01116{bottom:894.390000px;}
.yf_c01116{bottom:916.710000px;}
.ye_c01116{bottom:938.850000px;}
.yd_c01116{bottom:961.170000px;}
.yc_c01116{bottom:983.490000px;}
.yb_c01116{bottom:1005.810000px;}
.ya_c01116{bottom:1028.130000px;}
.y9_c01116{bottom:1050.450000px;}
.y8_c01116{bottom:1072.770000px;}
.y7_c01116{bottom:1095.090000px;}
.y6_c01116{bottom:1117.410000px;}
.y5_c01116{bottom:1139.940000px;}
.y2_c01116{bottom:1174.320000px;}
.y1_c01116{bottom:1194.660000px;}
.h9_c01116{height:20.340000px;}
.h6_c01116{height:25.380000px;}
.h8_c01116{height:25.920000px;}
.h2_c01116{height:48.062812px;}
.h3_c01116{height:50.229844px;}
.h7_c01116{height:53.428008px;}
.h4_c01116{height:64.546875px;}
.h5_c01116{height:75.093750px;}
.h0_c01116{height:1262.880000px;}
.h1_c01116{height:1263.000000px;}
.w4_c01116{width:117.000000px;}
.w2_c01116{width:281.415000px;}
.w3_c01116{width:420.915000px;}
.w0_c01116{width:892.980000px;}
.w1_c01116{width:893.250000px;}
.x0_c01116{left:0.000000px;}
.x2_c01116{left:127.656000px;}
.x1_c01116{left:169.950000px;}
.x8_c01116{left:194.085000px;}
.x5_c01116{left:255.810000px;}
.x4_c01116{left:325.515000px;}
.x7_c01116{left:462.135000px;}
.x6_c01116{left:697.830000px;}
.x3_c01116{left:740.490000px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls1_c01116{letter-spacing:-0.128000pt;}
.ls0_c01116{letter-spacing:0.000000pt;}
.ws0_c01116{word-spacing:-17.792000pt;}
.ws1_c01116{word-spacing:-17.664000pt;}
.ws2_c01116{word-spacing:0.000000pt;}
._11_c01116{margin-left:-5.120000pt;}
._10_c01116{margin-left:-4.160000pt;}
._1_c01116{margin-left:-2.246180pt;}
._0_c01116{margin-left:-1.236303pt;}
._2_c01116{width:0.914540pt;}
._a_c01116{width:1.898688pt;}
._13_c01116{width:3.392000pt;}
._17_c01116{width:4.820303pt;}
._b_c01116{width:6.400000pt;}
._14_c01116{width:8.064000pt;}
._e_c01116{width:9.024000pt;}
._d_c01116{width:10.048000pt;}
._9_c01116{width:14.720000pt;}
._8_c01116{width:16.064000pt;}
._c_c01116{width:19.008000pt;}
._7_c01116{width:19.904000pt;}
._6_c01116{width:21.056000pt;}
._16_c01116{width:22.272000pt;}
._15_c01116{width:23.296000pt;}
._4_c01116{width:27.008000pt;}
._3_c01116{width:27.968000pt;}
._f_c01116{width:29.312000pt;}
._5_c01116{width:30.272000pt;}
._12_c01116{width:48.960000pt;}
.fs2_c01116{font-size:53.120000pt;}
.fs0_c01116{font-size:58.880000pt;}
.fs1_c01116{font-size:64.000000pt;}
.y0_c01116{bottom:0.000000pt;}
.y26_c01116{bottom:5.773333pt;}
.y22_c01116{bottom:10.240000pt;}
.y24_c01116{bottom:10.706667pt;}
.y4_c01116{bottom:51.232000pt;}
.y3_c01116{bottom:69.152000pt;}
.y20_c01116{bottom:120.832000pt;}
.y1f_c01116{bottom:151.386667pt;}
.y1e_c01116{bottom:181.946667pt;}
.y23_c01116{bottom:183.560000pt;}
.y1d_c01116{bottom:208.986667pt;}
.y1c_c01116{bottom:524.573333pt;}
.y21_c01116{bottom:527.293333pt;}
.y1b_c01116{bottom:555.133333pt;}
.y1a_c01116{bottom:574.813333pt;}
.y19_c01116{bottom:594.653333pt;}
.y18_c01116{bottom:614.493333pt;}
.y17_c01116{bottom:634.493333pt;}
.y16_c01116{bottom:654.333333pt;}
.y15_c01116{bottom:674.173333pt;}
.y14_c01116{bottom:694.013333pt;}
.y13_c01116{bottom:713.853333pt;}
.y12_c01116{bottom:733.693333pt;}
.y25_c01116{bottom:755.640000pt;}
.y11_c01116{bottom:764.453333pt;}
.y10_c01116{bottom:795.013333pt;}
.yf_c01116{bottom:814.853333pt;}
.ye_c01116{bottom:834.533333pt;}
.yd_c01116{bottom:854.373333pt;}
.yc_c01116{bottom:874.213333pt;}
.yb_c01116{bottom:894.053333pt;}
.ya_c01116{bottom:913.893333pt;}
.y9_c01116{bottom:933.733333pt;}
.y8_c01116{bottom:953.573333pt;}
.y7_c01116{bottom:973.413333pt;}
.y6_c01116{bottom:993.253333pt;}
.y5_c01116{bottom:1013.280000pt;}
.y2_c01116{bottom:1043.840000pt;}
.y1_c01116{bottom:1061.920000pt;}
.h9_c01116{height:18.080000pt;}
.h6_c01116{height:22.560000pt;}
.h8_c01116{height:23.040000pt;}
.h2_c01116{height:42.722500pt;}
.h3_c01116{height:44.648750pt;}
.h7_c01116{height:47.491563pt;}
.h4_c01116{height:57.375000pt;}
.h5_c01116{height:66.750000pt;}
.h0_c01116{height:1122.560000pt;}
.h1_c01116{height:1122.666667pt;}
.w4_c01116{width:104.000000pt;}
.w2_c01116{width:250.146667pt;}
.w3_c01116{width:374.146667pt;}
.w0_c01116{width:793.760000pt;}
.w1_c01116{width:794.000000pt;}
.x0_c01116{left:0.000000pt;}
.x2_c01116{left:113.472000pt;}
.x1_c01116{left:151.066667pt;}
.x8_c01116{left:172.520000pt;}
.x5_c01116{left:227.386667pt;}
.x4_c01116{left:289.346667pt;}
.x7_c01116{left:410.786667pt;}
.x6_c01116{left:620.293333pt;}
.x3_c01116{left:658.213333pt;}
}





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

.ir_c01117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01117;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01117;src:url('chunks/assets/font_aa7f86aeec7bc50ebcda927a.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01117;src:url('chunks/assets/font_d4b040e68f07f6a4eaeae513.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01117;src:url('chunks/assets/font_54d93c7ae85c05533f32b79a.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01117;src:url('chunks/assets/font_deda7fd796451e5524241587.woff2')format("woff");}.ff5_c01117{font-family:ff5_c01117;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01117;src:url('chunks/assets/font_e2854ff6972192ebeb88ab0a.woff2')format("woff");}.ff6_c01117{font-family:ff6_c01117;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01117;src:url('chunks/assets/font_877dd731e9850470e9c233ed.woff2')format("woff");}.ff7_c01117{font-family:ff7_c01117;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01117{vertical-align:0.000000px;}
.ls5_c01117{letter-spacing:-0.247800px;}
.ls2_c01117{letter-spacing:-0.181200px;}
.ls1_c01117{letter-spacing:0.000000px;}
.ls4_c01117{letter-spacing:0.150000px;}
.ls0_c01117{letter-spacing:0.152400px;}
.ls3_c01117{letter-spacing:0.288000px;}
.ls6_c01117{letter-spacing:0.567600px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01117{word-spacing:-21.187920px;}
.ws1_c01117{word-spacing:0.000000px;}
._3_c01117{margin-left:-4.320000px;}
._2_c01117{margin-left:-3.312000px;}
._0_c01117{margin-left:-1.258891px;}
._6_c01117{width:1.008000px;}
._5_c01117{width:2.232000px;}
._4_c01117{width:3.384000px;}
._a_c01117{width:4.392000px;}
._7_c01117{width:5.472000px;}
._c_c01117{width:7.344000px;}
._1_c01117{width:21.240000px;}
._e_c01117{width:33.768000px;}
._d_c01117{width:35.208000px;}
._8_c01117{width:39.096000px;}
._9_c01117{width:40.176000px;}
._b_c01117{width:44.928000px;}
.fc0_c01117{color:rgb(0,0,0);}
.fs3_c01117{font-size:38.880000px;}
.fs2_c01117{font-size:48.240000px;}
.fs4_c01117{font-size:59.760000px;}
.fs0_c01117{font-size:66.240000px;}
.fs1_c01117{font-size:72.000000px;}
.y0_c01117{bottom:0.000000px;}
.y21_c01117{bottom:6.120000px;}
.y23_c01117{bottom:18.375000px;}
.y20_c01117{bottom:23.580000px;}
.y4_c01117{bottom:57.636000px;}
.y3_c01117{bottom:77.796000px;}
.y1e_c01117{bottom:109.296000px;}
.y1d_c01117{bottom:127.476000px;}
.y1c_c01117{bottom:132.696000px;}
.y1b_c01117{bottom:147.276000px;}
.y1a_c01117{bottom:302.115000px;}
.y19_c01117{bottom:336.495000px;}
.y22_c01117{bottom:366.180000px;}
.y18_c01117{bottom:370.875000px;}
.y17_c01117{bottom:401.115000px;}
.y1f_c01117{bottom:755.745000px;}
.y16_c01117{bottom:758.625000px;}
.y15_c01117{bottom:792.825000px;}
.y14_c01117{bottom:815.145000px;}
.y13_c01117{bottom:837.465000px;}
.y12_c01117{bottom:859.830000px;}
.y11_c01117{bottom:882.150000px;}
.y10_c01117{bottom:904.470000px;}
.yf_c01117{bottom:926.790000px;}
.yd_c01117{bottom:949.110000px;}
.ye_c01117{bottom:955.050000px;}
.yc_c01117{bottom:971.430000px;}
.yb_c01117{bottom:993.750000px;}
.ya_c01117{bottom:1016.250000px;}
.y9_c01117{bottom:1038.570000px;}
.y8_c01117{bottom:1060.890000px;}
.y7_c01117{bottom:1083.210000px;}
.y6_c01117{bottom:1105.530000px;}
.y5_c01117{bottom:1140.120000px;}
.y2_c01117{bottom:1174.320000px;}
.y1_c01117{bottom:1194.660000px;}
.hc_c01117{height:32.220000px;}
.ha_c01117{height:37.260000px;}
.h8_c01117{height:41.484960px;}
.h7_c01117{height:43.246406px;}
.h2_c01117{height:48.062812px;}
.h3_c01117{height:50.229844px;}
.hb_c01117{height:53.428008px;}
.h9_c01117{height:63.763920px;}
.h5_c01117{height:64.546875px;}
.h4_c01117{height:65.003906px;}
.h6_c01117{height:1262.865000px;}
.h0_c01117{height:1262.880000px;}
.h1_c01117{height:1263.000000px;}
.w3_c01117{width:185.610000px;}
.w4_c01117{width:276.870000px;}
.w2_c01117{width:892.957500px;}
.w0_c01117{width:892.980000px;}
.w1_c01117{width:893.250000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:127.656000px;}
.x7_c01117{left:146.016000px;}
.x8_c01117{left:192.645000px;}
.x2_c01117{left:326.595000px;}
.x6_c01117{left:343.695000px;}
.x3_c01117{left:560.062500px;}
.x4_c01117{left:580.065000px;}
.x5_c01117{left:699.630000px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls5_c01117{letter-spacing:-0.220267pt;}
.ls2_c01117{letter-spacing:-0.161067pt;}
.ls1_c01117{letter-spacing:0.000000pt;}
.ls4_c01117{letter-spacing:0.133333pt;}
.ls0_c01117{letter-spacing:0.135467pt;}
.ls3_c01117{letter-spacing:0.256000pt;}
.ls6_c01117{letter-spacing:0.504533pt;}
.ws0_c01117{word-spacing:-18.833707pt;}
.ws1_c01117{word-spacing:0.000000pt;}
._3_c01117{margin-left:-3.840000pt;}
._2_c01117{margin-left:-2.944000pt;}
._0_c01117{margin-left:-1.119014pt;}
._6_c01117{width:0.896000pt;}
._5_c01117{width:1.984000pt;}
._4_c01117{width:3.008000pt;}
._a_c01117{width:3.904000pt;}
._7_c01117{width:4.864000pt;}
._c_c01117{width:6.528000pt;}
._1_c01117{width:18.880000pt;}
._e_c01117{width:30.016000pt;}
._d_c01117{width:31.296000pt;}
._8_c01117{width:34.752000pt;}
._9_c01117{width:35.712000pt;}
._b_c01117{width:39.936000pt;}
.fs3_c01117{font-size:34.560000pt;}
.fs2_c01117{font-size:42.880000pt;}
.fs4_c01117{font-size:53.120000pt;}
.fs0_c01117{font-size:58.880000pt;}
.fs1_c01117{font-size:64.000000pt;}
.y0_c01117{bottom:0.000000pt;}
.y21_c01117{bottom:5.440000pt;}
.y23_c01117{bottom:16.333333pt;}
.y20_c01117{bottom:20.960000pt;}
.y4_c01117{bottom:51.232000pt;}
.y3_c01117{bottom:69.152000pt;}
.y1e_c01117{bottom:97.152000pt;}
.y1d_c01117{bottom:113.312000pt;}
.y1c_c01117{bottom:117.952000pt;}
.y1b_c01117{bottom:130.912000pt;}
.y1a_c01117{bottom:268.546667pt;}
.y19_c01117{bottom:299.106667pt;}
.y22_c01117{bottom:325.493333pt;}
.y18_c01117{bottom:329.666667pt;}
.y17_c01117{bottom:356.546667pt;}
.y1f_c01117{bottom:671.773333pt;}
.y16_c01117{bottom:674.333333pt;}
.y15_c01117{bottom:704.733333pt;}
.y14_c01117{bottom:724.573333pt;}
.y13_c01117{bottom:744.413333pt;}
.y12_c01117{bottom:764.293333pt;}
.y11_c01117{bottom:784.133333pt;}
.y10_c01117{bottom:803.973333pt;}
.yf_c01117{bottom:823.813333pt;}
.yd_c01117{bottom:843.653333pt;}
.ye_c01117{bottom:848.933333pt;}
.yc_c01117{bottom:863.493333pt;}
.yb_c01117{bottom:883.333333pt;}
.ya_c01117{bottom:903.333333pt;}
.y9_c01117{bottom:923.173333pt;}
.y8_c01117{bottom:943.013333pt;}
.y7_c01117{bottom:962.853333pt;}
.y6_c01117{bottom:982.693333pt;}
.y5_c01117{bottom:1013.440000pt;}
.y2_c01117{bottom:1043.840000pt;}
.y1_c01117{bottom:1061.920000pt;}
.hc_c01117{height:28.640000pt;}
.ha_c01117{height:33.120000pt;}
.h8_c01117{height:36.875520pt;}
.h7_c01117{height:38.441250pt;}
.h2_c01117{height:42.722500pt;}
.h3_c01117{height:44.648750pt;}
.hb_c01117{height:47.491563pt;}
.h9_c01117{height:56.679040pt;}
.h5_c01117{height:57.375000pt;}
.h4_c01117{height:57.781250pt;}
.h6_c01117{height:1122.546667pt;}
.h0_c01117{height:1122.560000pt;}
.h1_c01117{height:1122.666667pt;}
.w3_c01117{width:164.986667pt;}
.w4_c01117{width:246.106667pt;}
.w2_c01117{width:793.740000pt;}
.w0_c01117{width:793.760000pt;}
.w1_c01117{width:794.000000pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:113.472000pt;}
.x7_c01117{left:129.792000pt;}
.x8_c01117{left:171.240000pt;}
.x2_c01117{left:290.306667pt;}
.x6_c01117{left:305.506667pt;}
.x3_c01117{left:497.833333pt;}
.x4_c01117{left:515.613333pt;}
.x5_c01117{left:621.893333pt;}
}





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

.ir_c01118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01118;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01118;src:url('chunks/assets/font_4c0a0f24c570adf75a499c23.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01118;src:url('chunks/assets/font_8c104909dda6739f4ac0e3f2.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01118;src:url('chunks/assets/font_a3e558ef3a44891c9b3e3507.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01118;src:url('chunks/assets/font_8b3748cc23ef7d0416f69648.woff2')format("woff");}.ff5_c01118{font-family:ff5_c01118;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01118;src:url('chunks/assets/font_5539a8d7def7de8c61e4d453.woff2')format("woff");}.ff6_c01118{font-family:ff6_c01118;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01118{vertical-align:0.000000px;}
.ls6_c01118{letter-spacing:-0.576000px;}
.ls9_c01118{letter-spacing:-0.272400px;}
.lsa_c01118{letter-spacing:-0.247800px;}
.ls7_c01118{letter-spacing:-0.181200px;}
.lsc_c01118{letter-spacing:-0.152400px;}
.ls5_c01118{letter-spacing:0.000000px;}
.ls0_c01118{letter-spacing:0.144000px;}
.ls8_c01118{letter-spacing:0.150000px;}
.ls4_c01118{letter-spacing:0.152400px;}
.ls1_c01118{letter-spacing:0.174240px;}
.ls3_c01118{letter-spacing:0.226320px;}
.ls2_c01118{letter-spacing:0.567360px;}
.lsb_c01118{letter-spacing:0.930000px;}
.sc__c01118{text-shadow:none;}
.sc0_c01118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01118{-webkit-text-stroke:0px transparent;}
.sc0_c01118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01118{word-spacing:-21.965520px;}
.ws1_c01118{word-spacing:-21.187920px;}
.ws2_c01118{word-spacing:0.000000px;}
._9_c01118{margin-left:-5.445683px;}
._2_c01118{margin-left:-4.441159px;}
._1_c01118{margin-left:-3.096000px;}
._0_c01118{margin-left:-1.390841px;}
._3_c01118{width:1.034317px;}
._7_c01118{width:2.736000px;}
._8_c01118{width:4.044024px;}
._f_c01118{width:5.904000px;}
._e_c01118{width:7.272000px;}
._c_c01118{width:8.856000px;}
._d_c01118{width:10.380024px;}
._a_c01118{width:11.808000px;}
._13_c01118{width:13.368024px;}
._16_c01118{width:14.760000px;}
._11_c01118{width:15.768000px;}
._10_c01118{width:17.064000px;}
._15_c01118{width:21.744000px;}
._17_c01118{width:22.824000px;}
._5_c01118{width:25.056000px;}
._4_c01118{width:26.424000px;}
._6_c01118{width:27.564000px;}
._b_c01118{width:28.812000px;}
._12_c01118{width:29.985683px;}
._14_c01118{width:41.760000px;}
.fc0_c01118{color:rgb(0,0,0);}
.fs3_c01118{font-size:38.880000px;}
.fs2_c01118{font-size:48.240000px;}
.fs4_c01118{font-size:59.760000px;}
.fs0_c01118{font-size:66.240000px;}
.fs1_c01118{font-size:72.000000px;}
.y0_c01118{bottom:0.000000px;}
.y45_c01118{bottom:4.545000px;}
.y4_c01118{bottom:57.636000px;}
.y3_c01118{bottom:77.796000px;}
.y43_c01118{bottom:110.196000px;}
.y42_c01118{bottom:115.416000px;}
.y41_c01118{bottom:129.276000px;}
.y40_c01118{bottom:134.496000px;}
.y3f_c01118{bottom:148.356000px;}
.y3e_c01118{bottom:153.570000px;}
.y3d_c01118{bottom:167.430000px;}
.y3c_c01118{bottom:172.650000px;}
.y3b_c01118{bottom:186.510000px;}
.y3a_c01118{bottom:191.730000px;}
.y39_c01118{bottom:205.770000px;}
.y38_c01118{bottom:210.990000px;}
.y37_c01118{bottom:223.950000px;}
.y36_c01118{bottom:229.170000px;}
.y35_c01118{bottom:243.030000px;}
.y34_c01118{bottom:248.250000px;}
.y33_c01118{bottom:262.830000px;}
.y32_c01118{bottom:301.215000px;}
.y30_c01118{bottom:323.715000px;}
.y31_c01118{bottom:329.655000px;}
.y2f_c01118{bottom:346.035000px;}
.y2e_c01118{bottom:368.355000px;}
.y2c_c01118{bottom:390.675000px;}
.y2d_c01118{bottom:396.615000px;}
.y2b_c01118{bottom:412.995000px;}
.y29_c01118{bottom:435.315000px;}
.y2a_c01118{bottom:441.255000px;}
.y27_c01118{bottom:457.635000px;}
.y28_c01118{bottom:463.575000px;}
.y26_c01118{bottom:480.135000px;}
.y24_c01118{bottom:502.275000px;}
.y25_c01118{bottom:508.215000px;}
.y23_c01118{bottom:524.595000px;}
.y22_c01118{bottom:559.155000px;}
.y44_c01118{bottom:562.920000px;}
.y21_c01118{bottom:581.325000px;}
.y20_c01118{bottom:603.645000px;}
.y1e_c01118{bottom:625.965000px;}
.y1f_c01118{bottom:631.905000px;}
.y1d_c01118{bottom:648.465000px;}
.y1c_c01118{bottom:670.785000px;}
.y1a_c01118{bottom:693.105000px;}
.y1b_c01118{bottom:699.045000px;}
.y19_c01118{bottom:715.425000px;}
.y18_c01118{bottom:737.745000px;}
.y17_c01118{bottom:760.065000px;}
.y16_c01118{bottom:782.385000px;}
.y15_c01118{bottom:804.705000px;}
.y14_c01118{bottom:827.025000px;}
.y13_c01118{bottom:849.390000px;}
.y12_c01118{bottom:871.710000px;}
.y11_c01118{bottom:894.210000px;}
.y10_c01118{bottom:916.530000px;}
.yf_c01118{bottom:938.850000px;}
.ye_c01118{bottom:961.170000px;}
.yd_c01118{bottom:983.490000px;}
.yc_c01118{bottom:1005.810000px;}
.ya_c01118{bottom:1028.130000px;}
.yb_c01118{bottom:1034.070000px;}
.y9_c01118{bottom:1050.450000px;}
.y8_c01118{bottom:1072.770000px;}
.y7_c01118{bottom:1095.270000px;}
.y6_c01118{bottom:1117.410000px;}
.y5_c01118{bottom:1139.940000px;}
.y2_c01118{bottom:1174.320000px;}
.y1_c01118{bottom:1194.660000px;}
.ha_c01118{height:18.405000px;}
.h7_c01118{height:29.482734px;}
.h9_c01118{height:41.484960px;}
.h6_c01118{height:43.246406px;}
.h2_c01118{height:48.062812px;}
.h3_c01118{height:50.229844px;}
.hb_c01118{height:53.428008px;}
.h8_c01118{height:63.763920px;}
.h4_c01118{height:64.546875px;}
.h5_c01118{height:1262.865000px;}
.h0_c01118{height:1262.880000px;}
.h1_c01118{height:1263.000000px;}
.w3_c01118{width:177.870000px;}
.w2_c01118{width:892.957500px;}
.w0_c01118{width:892.980000px;}
.w1_c01118{width:893.250000px;}
.x0_c01118{left:0.000000px;}
.x2_c01118{left:127.656000px;}
.x10_c01118{left:142.236000px;}
.x11_c01118{left:146.016000px;}
.x1_c01118{left:169.950000px;}
.x8_c01118{left:253.627500px;}
.x9_c01118{left:273.630000px;}
.x6_c01118{left:302.632500px;}
.x7_c01118{left:322.635000px;}
.xf_c01118{left:343.695000px;}
.x4_c01118{left:397.672500px;}
.x5_c01118{left:417.675000px;}
.xb_c01118{left:541.882500px;}
.xc_c01118{left:561.885000px;}
.x12_c01118{left:587.640000px;}
.xd_c01118{left:692.047500px;}
.xe_c01118{left:712.050000px;}
.x3_c01118{left:740.490000px;}
.xa_c01118{left:760.470000px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls6_c01118{letter-spacing:-0.512000pt;}
.ls9_c01118{letter-spacing:-0.242133pt;}
.lsa_c01118{letter-spacing:-0.220267pt;}
.ls7_c01118{letter-spacing:-0.161067pt;}
.lsc_c01118{letter-spacing:-0.135467pt;}
.ls5_c01118{letter-spacing:0.000000pt;}
.ls0_c01118{letter-spacing:0.128000pt;}
.ls8_c01118{letter-spacing:0.133333pt;}
.ls4_c01118{letter-spacing:0.135467pt;}
.ls1_c01118{letter-spacing:0.154880pt;}
.ls3_c01118{letter-spacing:0.201173pt;}
.ls2_c01118{letter-spacing:0.504320pt;}
.lsb_c01118{letter-spacing:0.826667pt;}
.ws0_c01118{word-spacing:-19.524907pt;}
.ws1_c01118{word-spacing:-18.833707pt;}
.ws2_c01118{word-spacing:0.000000pt;}
._9_c01118{margin-left:-4.840607pt;}
._2_c01118{margin-left:-3.947697pt;}
._1_c01118{margin-left:-2.752000pt;}
._0_c01118{margin-left:-1.236303pt;}
._3_c01118{width:0.919393pt;}
._7_c01118{width:2.432000pt;}
._8_c01118{width:3.594688pt;}
._f_c01118{width:5.248000pt;}
._e_c01118{width:6.464000pt;}
._c_c01118{width:7.872000pt;}
._d_c01118{width:9.226688pt;}
._a_c01118{width:10.496000pt;}
._13_c01118{width:11.882688pt;}
._16_c01118{width:13.120000pt;}
._11_c01118{width:14.016000pt;}
._10_c01118{width:15.168000pt;}
._15_c01118{width:19.328000pt;}
._17_c01118{width:20.288000pt;}
._5_c01118{width:22.272000pt;}
._4_c01118{width:23.488000pt;}
._6_c01118{width:24.501333pt;}
._b_c01118{width:25.610667pt;}
._12_c01118{width:26.653940pt;}
._14_c01118{width:37.120000pt;}
.fs3_c01118{font-size:34.560000pt;}
.fs2_c01118{font-size:42.880000pt;}
.fs4_c01118{font-size:53.120000pt;}
.fs0_c01118{font-size:58.880000pt;}
.fs1_c01118{font-size:64.000000pt;}
.y0_c01118{bottom:0.000000pt;}
.y45_c01118{bottom:4.040000pt;}
.y4_c01118{bottom:51.232000pt;}
.y3_c01118{bottom:69.152000pt;}
.y43_c01118{bottom:97.952000pt;}
.y42_c01118{bottom:102.592000pt;}
.y41_c01118{bottom:114.912000pt;}
.y40_c01118{bottom:119.552000pt;}
.y3f_c01118{bottom:131.872000pt;}
.y3e_c01118{bottom:136.506667pt;}
.y3d_c01118{bottom:148.826667pt;}
.y3c_c01118{bottom:153.466667pt;}
.y3b_c01118{bottom:165.786667pt;}
.y3a_c01118{bottom:170.426667pt;}
.y39_c01118{bottom:182.906667pt;}
.y38_c01118{bottom:187.546667pt;}
.y37_c01118{bottom:199.066667pt;}
.y36_c01118{bottom:203.706667pt;}
.y35_c01118{bottom:216.026667pt;}
.y34_c01118{bottom:220.666667pt;}
.y33_c01118{bottom:233.626667pt;}
.y32_c01118{bottom:267.746667pt;}
.y30_c01118{bottom:287.746667pt;}
.y31_c01118{bottom:293.026667pt;}
.y2f_c01118{bottom:307.586667pt;}
.y2e_c01118{bottom:327.426667pt;}
.y2c_c01118{bottom:347.266667pt;}
.y2d_c01118{bottom:352.546667pt;}
.y2b_c01118{bottom:367.106667pt;}
.y29_c01118{bottom:386.946667pt;}
.y2a_c01118{bottom:392.226667pt;}
.y27_c01118{bottom:406.786667pt;}
.y28_c01118{bottom:412.066667pt;}
.y26_c01118{bottom:426.786667pt;}
.y24_c01118{bottom:446.466667pt;}
.y25_c01118{bottom:451.746667pt;}
.y23_c01118{bottom:466.306667pt;}
.y22_c01118{bottom:497.026667pt;}
.y44_c01118{bottom:500.373333pt;}
.y21_c01118{bottom:516.733333pt;}
.y20_c01118{bottom:536.573333pt;}
.y1e_c01118{bottom:556.413333pt;}
.y1f_c01118{bottom:561.693333pt;}
.y1d_c01118{bottom:576.413333pt;}
.y1c_c01118{bottom:596.253333pt;}
.y1a_c01118{bottom:616.093333pt;}
.y1b_c01118{bottom:621.373333pt;}
.y19_c01118{bottom:635.933333pt;}
.y18_c01118{bottom:655.773333pt;}
.y17_c01118{bottom:675.613333pt;}
.y16_c01118{bottom:695.453333pt;}
.y15_c01118{bottom:715.293333pt;}
.y14_c01118{bottom:735.133333pt;}
.y13_c01118{bottom:755.013333pt;}
.y12_c01118{bottom:774.853333pt;}
.y11_c01118{bottom:794.853333pt;}
.y10_c01118{bottom:814.693333pt;}
.yf_c01118{bottom:834.533333pt;}
.ye_c01118{bottom:854.373333pt;}
.yd_c01118{bottom:874.213333pt;}
.yc_c01118{bottom:894.053333pt;}
.ya_c01118{bottom:913.893333pt;}
.yb_c01118{bottom:919.173333pt;}
.y9_c01118{bottom:933.733333pt;}
.y8_c01118{bottom:953.573333pt;}
.y7_c01118{bottom:973.573333pt;}
.y6_c01118{bottom:993.253333pt;}
.y5_c01118{bottom:1013.280000pt;}
.y2_c01118{bottom:1043.840000pt;}
.y1_c01118{bottom:1061.920000pt;}
.ha_c01118{height:16.360000pt;}
.h7_c01118{height:26.206875pt;}
.h9_c01118{height:36.875520pt;}
.h6_c01118{height:38.441250pt;}
.h2_c01118{height:42.722500pt;}
.h3_c01118{height:44.648750pt;}
.hb_c01118{height:47.491563pt;}
.h8_c01118{height:56.679040pt;}
.h4_c01118{height:57.375000pt;}
.h5_c01118{height:1122.546667pt;}
.h0_c01118{height:1122.560000pt;}
.h1_c01118{height:1122.666667pt;}
.w3_c01118{width:158.106667pt;}
.w2_c01118{width:793.740000pt;}
.w0_c01118{width:793.760000pt;}
.w1_c01118{width:794.000000pt;}
.x0_c01118{left:0.000000pt;}
.x2_c01118{left:113.472000pt;}
.x10_c01118{left:126.432000pt;}
.x11_c01118{left:129.792000pt;}
.x1_c01118{left:151.066667pt;}
.x8_c01118{left:225.446667pt;}
.x9_c01118{left:243.226667pt;}
.x6_c01118{left:269.006667pt;}
.x7_c01118{left:286.786667pt;}
.xf_c01118{left:305.506667pt;}
.x4_c01118{left:353.486667pt;}
.x5_c01118{left:371.266667pt;}
.xb_c01118{left:481.673333pt;}
.xc_c01118{left:499.453333pt;}
.x12_c01118{left:522.346667pt;}
.xd_c01118{left:615.153333pt;}
.xe_c01118{left:632.933333pt;}
.x3_c01118{left:658.213333pt;}
.xa_c01118{left:675.973333pt;}
}





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

.ir_c01119:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01119;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01119;src:url('chunks/assets/font_e8fbc40b0a6ca2bff7e05b76.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01119;src:url('chunks/assets/font_17cca35dcbd766494486be54.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01119;src:url('chunks/assets/font_cfcf632685988f077020fe5e.woff2')format("woff");}.ff4_c01119{font-family:ff4_c01119;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01119;src:url('chunks/assets/font_3a8e2df586c8be8b4332902b.woff2')format("woff");}.ff5_c01119{font-family:ff5_c01119;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01119;src:url('chunks/assets/font_71383434c414baf190564d28.woff2')format("woff");}.ff6_c01119{font-family:ff6_c01119;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01119{vertical-align:0.000000px;}
.ls7_c01119{letter-spacing:-0.272400px;}
.ls5_c01119{letter-spacing:-0.181200px;}
.ls8_c01119{letter-spacing:-0.152400px;}
.ls4_c01119{letter-spacing:0.000000px;}
.ls6_c01119{letter-spacing:0.150000px;}
.ls3_c01119{letter-spacing:0.152400px;}
.ls1_c01119{letter-spacing:0.174240px;}
.ls0_c01119{letter-spacing:0.216000px;}
.ls2_c01119{letter-spacing:0.929520px;}
.sc__c01119{text-shadow:none;}
.sc0_c01119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01119{-webkit-text-stroke:0px transparent;}
.sc0_c01119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01119{word-spacing:-21.187920px;}
.ws1_c01119{word-spacing:0.000000px;}
._0_c01119{margin-left:-1.258891px;}
._1_c01119{width:1.152000px;}
._2_c01119{width:2.939976px;}
._6_c01119{width:4.392000px;}
._9_c01119{width:5.864674px;}
._4_c01119{width:6.912000px;}
._5_c01119{width:7.940650px;}
._8_c01119{width:12.418891px;}
._7_c01119{width:13.680000px;}
._3_c01119{width:1719.084000px;}
.fc0_c01119{color:rgb(0,0,0);}
.fs3_c01119{font-size:38.880000px;}
.fs2_c01119{font-size:48.240000px;}
.fs4_c01119{font-size:59.760000px;}
.fs0_c01119{font-size:66.240000px;}
.fs1_c01119{font-size:72.000000px;}
.y0_c01119{bottom:0.000000px;}
.y1d_c01119{bottom:8.280000px;}
.y4_c01119{bottom:57.636000px;}
.y3_c01119{bottom:77.796000px;}
.y1b_c01119{bottom:109.296000px;}
.y1a_c01119{bottom:128.376000px;}
.y19_c01119{bottom:133.596000px;}
.y18_c01119{bottom:147.456000px;}
.y17_c01119{bottom:152.670000px;}
.y16_c01119{bottom:167.250000px;}
.y14_c01119{bottom:524.055000px;}
.y15_c01119{bottom:529.995000px;}
.y13_c01119{bottom:546.195000px;}
.y12_c01119{bottom:568.365000px;}
.y11_c01119{bottom:590.865000px;}
.y10_c01119{bottom:613.185000px;}
.yf_c01119{bottom:635.505000px;}
.ye_c01119{bottom:657.825000px;}
.yd_c01119{bottom:680.145000px;}
.yc_c01119{bottom:702.465000px;}
.yb_c01119{bottom:724.785000px;}
.ya_c01119{bottom:759.345000px;}
.y1c_c01119{bottom:764.385000px;}
.y9_c01119{bottom:789.765000px;}
.y8_c01119{bottom:1095.270000px;}
.y7_c01119{bottom:1117.410000px;}
.y5_c01119{bottom:1139.940000px;}
.y6_c01119{bottom:1145.880000px;}
.y2_c01119{bottom:1174.320000px;}
.y1_c01119{bottom:1194.660000px;}
.h9_c01119{height:22.140000px;}
.h7_c01119{height:29.482734px;}
.h6_c01119{height:43.246406px;}
.h2_c01119{height:48.062812px;}
.h3_c01119{height:50.229844px;}
.ha_c01119{height:53.428008px;}
.h8_c01119{height:63.763920px;}
.h4_c01119{height:64.546875px;}
.h5_c01119{height:1262.865000px;}
.h0_c01119{height:1262.880000px;}
.h1_c01119{height:1263.000000px;}
.w3_c01119{width:233.130000px;}
.w2_c01119{width:892.957500px;}
.w0_c01119{width:892.980000px;}
.w1_c01119{width:893.250000px;}
.x0_c01119{left:0.000000px;}
.x1_c01119{left:127.656000px;}
.x9_c01119{left:142.236000px;}
.x4_c01119{left:316.875000px;}
.x8_c01119{left:343.695000px;}
.x6_c01119{left:371.932500px;}
.x5_c01119{left:387.255000px;}
.x7_c01119{left:391.935000px;}
.x2_c01119{left:623.602500px;}
.x3_c01119{left:643.605000px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls7_c01119{letter-spacing:-0.242133pt;}
.ls5_c01119{letter-spacing:-0.161067pt;}
.ls8_c01119{letter-spacing:-0.135467pt;}
.ls4_c01119{letter-spacing:0.000000pt;}
.ls6_c01119{letter-spacing:0.133333pt;}
.ls3_c01119{letter-spacing:0.135467pt;}
.ls1_c01119{letter-spacing:0.154880pt;}
.ls0_c01119{letter-spacing:0.192000pt;}
.ls2_c01119{letter-spacing:0.826240pt;}
.ws0_c01119{word-spacing:-18.833707pt;}
.ws1_c01119{word-spacing:0.000000pt;}
._0_c01119{margin-left:-1.119014pt;}
._1_c01119{width:1.024000pt;}
._2_c01119{width:2.613312pt;}
._6_c01119{width:3.904000pt;}
._9_c01119{width:5.213043pt;}
._4_c01119{width:6.144000pt;}
._5_c01119{width:7.058355pt;}
._8_c01119{width:11.039014pt;}
._7_c01119{width:12.160000pt;}
._3_c01119{width:1528.074667pt;}
.fs3_c01119{font-size:34.560000pt;}
.fs2_c01119{font-size:42.880000pt;}
.fs4_c01119{font-size:53.120000pt;}
.fs0_c01119{font-size:58.880000pt;}
.fs1_c01119{font-size:64.000000pt;}
.y0_c01119{bottom:0.000000pt;}
.y1d_c01119{bottom:7.360000pt;}
.y4_c01119{bottom:51.232000pt;}
.y3_c01119{bottom:69.152000pt;}
.y1b_c01119{bottom:97.152000pt;}
.y1a_c01119{bottom:114.112000pt;}
.y19_c01119{bottom:118.752000pt;}
.y18_c01119{bottom:131.072000pt;}
.y17_c01119{bottom:135.706667pt;}
.y16_c01119{bottom:148.666667pt;}
.y14_c01119{bottom:465.826667pt;}
.y15_c01119{bottom:471.106667pt;}
.y13_c01119{bottom:485.506667pt;}
.y12_c01119{bottom:505.213333pt;}
.y11_c01119{bottom:525.213333pt;}
.y10_c01119{bottom:545.053333pt;}
.yf_c01119{bottom:564.893333pt;}
.ye_c01119{bottom:584.733333pt;}
.yd_c01119{bottom:604.573333pt;}
.yc_c01119{bottom:624.413333pt;}
.yb_c01119{bottom:644.253333pt;}
.ya_c01119{bottom:674.973333pt;}
.y1c_c01119{bottom:679.453333pt;}
.y9_c01119{bottom:702.013333pt;}
.y8_c01119{bottom:973.573333pt;}
.y7_c01119{bottom:993.253333pt;}
.y5_c01119{bottom:1013.280000pt;}
.y6_c01119{bottom:1018.560000pt;}
.y2_c01119{bottom:1043.840000pt;}
.y1_c01119{bottom:1061.920000pt;}
.h9_c01119{height:19.680000pt;}
.h7_c01119{height:26.206875pt;}
.h6_c01119{height:38.441250pt;}
.h2_c01119{height:42.722500pt;}
.h3_c01119{height:44.648750pt;}
.ha_c01119{height:47.491563pt;}
.h8_c01119{height:56.679040pt;}
.h4_c01119{height:57.375000pt;}
.h5_c01119{height:1122.546667pt;}
.h0_c01119{height:1122.560000pt;}
.h1_c01119{height:1122.666667pt;}
.w3_c01119{width:207.226667pt;}
.w2_c01119{width:793.740000pt;}
.w0_c01119{width:793.760000pt;}
.w1_c01119{width:794.000000pt;}
.x0_c01119{left:0.000000pt;}
.x1_c01119{left:113.472000pt;}
.x9_c01119{left:126.432000pt;}
.x4_c01119{left:281.666667pt;}
.x8_c01119{left:305.506667pt;}
.x6_c01119{left:330.606667pt;}
.x5_c01119{left:344.226667pt;}
.x7_c01119{left:348.386667pt;}
.x2_c01119{left:554.313333pt;}
.x3_c01119{left:572.093333pt;}
}





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

.ir_c01120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01120;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01120;src:url('chunks/assets/font_83615653fc4eac5ae86208f4.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01120;src:url('chunks/assets/font_df00c093a3c69c17f2bacd6d.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01120;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;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:ff5_c01120;src:url('chunks/assets/font_3bfdda8c4cb0982ebd83ef08.woff2')format("woff");}.ff5_c01120{font-family:ff5_c01120;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01120{vertical-align:0.000000px;}
.ls2_c01120{letter-spacing:-0.432000px;}
.ls1_c01120{letter-spacing:-0.053400px;}
.ls0_c01120{letter-spacing:0.000000px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01120{word-spacing:0.000000px;}
._d_c01120{margin-left:-4.873159px;}
._c_c01120{margin-left:-3.600000px;}
._0_c01120{margin-left:-1.390841px;}
._1_c01120{width:1.055400px;}
._7_c01120{width:2.244576px;}
._4_c01120{width:3.312000px;}
._6_c01120{width:5.229683px;}
._5_c01120{width:6.696000px;}
._3_c01120{width:10.008000px;}
._2_c01120{width:11.592000px;}
._b_c01120{width:13.536000px;}
._a_c01120{width:14.688000px;}
._9_c01120{width:22.176000px;}
._8_c01120{width:23.328000px;}
.fc1_c01120{color:rgb(68,84,106);}
.fc0_c01120{color:rgb(0,0,0);}
.fs1_c01120{font-size:59.760000px;}
.fs0_c01120{font-size:66.240000px;}
.fs3_c01120{font-size:72.000000px;}
.fs2_c01120{font-size:84.240000px;}
.y0_c01120{bottom:0.000000px;}
.y2_c01120{bottom:77.796000px;}
.y17_c01120{bottom:251.490000px;}
.y16_c01120{bottom:273.630000px;}
.y15_c01120{bottom:295.995000px;}
.y14_c01120{bottom:318.315000px;}
.y13_c01120{bottom:340.635000px;}
.y12_c01120{bottom:362.955000px;}
.y11_c01120{bottom:397.515000px;}
.y10_c01120{bottom:419.655000px;}
.yf_c01120{bottom:441.975000px;}
.ye_c01120{bottom:464.295000px;}
.yd_c01120{bottom:486.615000px;}
.yc_c01120{bottom:508.935000px;}
.yb_c01120{bottom:531.255000px;}
.ya_c01120{bottom:553.755000px;}
.y9_c01120{bottom:576.105000px;}
.y8_c01120{bottom:598.425000px;}
.y7_c01120{bottom:620.745000px;}
.y6_c01120{bottom:643.065000px;}
.y5_c01120{bottom:665.385000px;}
.y4_c01120{bottom:709.125000px;}
.y3_c01120{bottom:784.725000px;}
.y1_c01120{bottom:1194.660000px;}
.h2_c01120{height:48.062812px;}
.h3_c01120{height:50.229844px;}
.h4_c01120{height:53.428008px;}
.h6_c01120{height:64.546875px;}
.h5_c01120{height:87.859687px;}
.h0_c01120{height:1262.880000px;}
.h1_c01120{height:1263.000000px;}
.w0_c01120{width:892.980000px;}
.w1_c01120{width:893.250000px;}
.x0_c01120{left:0.000000px;}
.x4_c01120{left:127.656000px;}
.x3_c01120{left:165.081000px;}
.x1_c01120{left:169.950000px;}
.x2_c01120{left:740.490000px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.ls2_c01120{letter-spacing:-0.384000pt;}
.ls1_c01120{letter-spacing:-0.047467pt;}
.ls0_c01120{letter-spacing:0.000000pt;}
.ws0_c01120{word-spacing:0.000000pt;}
._d_c01120{margin-left:-4.331697pt;}
._c_c01120{margin-left:-3.200000pt;}
._0_c01120{margin-left:-1.236303pt;}
._1_c01120{width:0.938133pt;}
._7_c01120{width:1.995179pt;}
._4_c01120{width:2.944000pt;}
._6_c01120{width:4.648607pt;}
._5_c01120{width:5.952000pt;}
._3_c01120{width:8.896000pt;}
._2_c01120{width:10.304000pt;}
._b_c01120{width:12.032000pt;}
._a_c01120{width:13.056000pt;}
._9_c01120{width:19.712000pt;}
._8_c01120{width:20.736000pt;}
.fs1_c01120{font-size:53.120000pt;}
.fs0_c01120{font-size:58.880000pt;}
.fs3_c01120{font-size:64.000000pt;}
.fs2_c01120{font-size:74.880000pt;}
.y0_c01120{bottom:0.000000pt;}
.y2_c01120{bottom:69.152000pt;}
.y17_c01120{bottom:223.546667pt;}
.y16_c01120{bottom:243.226667pt;}
.y15_c01120{bottom:263.106667pt;}
.y14_c01120{bottom:282.946667pt;}
.y13_c01120{bottom:302.786667pt;}
.y12_c01120{bottom:322.626667pt;}
.y11_c01120{bottom:353.346667pt;}
.y10_c01120{bottom:373.026667pt;}
.yf_c01120{bottom:392.866667pt;}
.ye_c01120{bottom:412.706667pt;}
.yd_c01120{bottom:432.546667pt;}
.yc_c01120{bottom:452.386667pt;}
.yb_c01120{bottom:472.226667pt;}
.ya_c01120{bottom:492.226667pt;}
.y9_c01120{bottom:512.093333pt;}
.y8_c01120{bottom:531.933333pt;}
.y7_c01120{bottom:551.773333pt;}
.y6_c01120{bottom:571.613333pt;}
.y5_c01120{bottom:591.453333pt;}
.y4_c01120{bottom:630.333333pt;}
.y3_c01120{bottom:697.533333pt;}
.y1_c01120{bottom:1061.920000pt;}
.h2_c01120{height:42.722500pt;}
.h3_c01120{height:44.648750pt;}
.h4_c01120{height:47.491563pt;}
.h6_c01120{height:57.375000pt;}
.h5_c01120{height:78.097500pt;}
.h0_c01120{height:1122.560000pt;}
.h1_c01120{height:1122.666667pt;}
.w0_c01120{width:793.760000pt;}
.w1_c01120{width:794.000000pt;}
.x0_c01120{left:0.000000pt;}
.x4_c01120{left:113.472000pt;}
.x3_c01120{left:146.738667pt;}
.x1_c01120{left:151.066667pt;}
.x2_c01120{left:658.213333pt;}
}





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

.ir_c01121:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01121;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01121;src:url('chunks/assets/font_949fc26bcf17b85c86fd38c1.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01121;src:url('chunks/assets/font_b7f4eff2696594f2553a7e68.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01121{vertical-align:0.000000px;}
.ls0_c01121{letter-spacing:0.000000px;}
.sc__c01121{text-shadow:none;}
.sc0_c01121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01121{-webkit-text-stroke:0px transparent;}
.sc0_c01121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01121{word-spacing:0.000000px;}
._a_c01121{margin-left:-3.672000px;}
._4_c01121{margin-left:-2.448000px;}
._0_c01121{margin-left:-1.258891px;}
._3_c01121{width:1.152000px;}
._7_c01121{width:2.292221px;}
._8_c01121{width:8.260632px;}
._6_c01121{width:9.536674px;}
._5_c01121{width:10.584000px;}
._2_c01121{width:21.312000px;}
._1_c01121{width:22.392000px;}
._9_c01121{width:23.472000px;}
.fc0_c01121{color:rgb(0,0,0);}
.fs0_c01121{font-size:66.240000px;}
.fs1_c01121{font-size:72.000000px;}
.y0_c01121{bottom:0.000000px;}
.y2_c01121{bottom:77.796000px;}
.yb_c01121{bottom:961.350000px;}
.ya_c01121{bottom:983.490000px;}
.y9_c01121{bottom:1005.810000px;}
.y8_c01121{bottom:1028.130000px;}
.y7_c01121{bottom:1050.450000px;}
.y6_c01121{bottom:1072.770000px;}
.y5_c01121{bottom:1095.090000px;}
.y4_c01121{bottom:1117.410000px;}
.y3_c01121{bottom:1139.940000px;}
.y1_c01121{bottom:1194.660000px;}
.h2_c01121{height:48.062812px;}
.h3_c01121{height:50.229844px;}
.h4_c01121{height:64.546875px;}
.h0_c01121{height:1262.880000px;}
.h1_c01121{height:1263.000000px;}
.w0_c01121{width:892.980000px;}
.w1_c01121{width:893.250000px;}
.x0_c01121{left:0.000000px;}
.x1_c01121{left:127.656000px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.ls0_c01121{letter-spacing:0.000000pt;}
.ws0_c01121{word-spacing:0.000000pt;}
._a_c01121{margin-left:-3.264000pt;}
._4_c01121{margin-left:-2.176000pt;}
._0_c01121{margin-left:-1.119014pt;}
._3_c01121{width:1.024000pt;}
._7_c01121{width:2.037530pt;}
._8_c01121{width:7.342784pt;}
._6_c01121{width:8.477043pt;}
._5_c01121{width:9.408000pt;}
._2_c01121{width:18.944000pt;}
._1_c01121{width:19.904000pt;}
._9_c01121{width:20.864000pt;}
.fs0_c01121{font-size:58.880000pt;}
.fs1_c01121{font-size:64.000000pt;}
.y0_c01121{bottom:0.000000pt;}
.y2_c01121{bottom:69.152000pt;}
.yb_c01121{bottom:854.533333pt;}
.ya_c01121{bottom:874.213333pt;}
.y9_c01121{bottom:894.053333pt;}
.y8_c01121{bottom:913.893333pt;}
.y7_c01121{bottom:933.733333pt;}
.y6_c01121{bottom:953.573333pt;}
.y5_c01121{bottom:973.413333pt;}
.y4_c01121{bottom:993.253333pt;}
.y3_c01121{bottom:1013.280000pt;}
.y1_c01121{bottom:1061.920000pt;}
.h2_c01121{height:42.722500pt;}
.h3_c01121{height:44.648750pt;}
.h4_c01121{height:57.375000pt;}
.h0_c01121{height:1122.560000pt;}
.h1_c01121{height:1122.666667pt;}
.w0_c01121{width:793.760000pt;}
.w1_c01121{width:794.000000pt;}
.x0_c01121{left:0.000000pt;}
.x1_c01121{left:113.472000pt;}
}





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

.ir_c01122:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01122;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01122;src:url('chunks/assets/font_804737dc33f2dd2bc783e5ee.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01122;src:url('chunks/assets/font_518be02a04a17a1e980d79eb.woff2')format("woff");}.ff3_c01122{font-family:ff3_c01122;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01122;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01122{font-family:ff4_c01122;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:ff5_c01122;src:url('chunks/assets/font_597e56a46600f3a77350ea80.woff2')format("woff");}.ff5_c01122{font-family:ff5_c01122;line-height:0.915039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01122;src:url('chunks/assets/font_5add2dd888567a848574418c.woff2')format("woff");}.ff6_c01122{font-family:ff6_c01122;line-height:1.009766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01122;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff7_c01122{font-family:ff7_c01122;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:ff8_c01122;src:url('chunks/assets/font_b9d2d3e9b077794bcd958c6b.woff2')format("woff");}.ff8_c01122{font-family:ff8_c01122;line-height:1.106934;font-style:normal;font-weight: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_c01122;src:url('chunks/assets/font_42fb7210547c1ccb97ee693c.woff2')format("woff");}.ff9_c01122{font-family:ff9_c01122;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01122{vertical-align:0.000000px;}
.ls3_c01122{letter-spacing:-0.540600px;}
.ls4_c01122{letter-spacing:-0.432000px;}
.ls2_c01122{letter-spacing:0.000000px;}
.ls0_c01122{letter-spacing:20.784000px;}
.ls1_c01122{letter-spacing:20.808000px;}
.sc__c01122{text-shadow:none;}
.sc1_c01122{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01122{-webkit-text-stroke:0px transparent;}
.sc1_c01122{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01122{word-spacing:-20.554560px;}
.ws2_c01122{word-spacing:-19.584000px;}
.ws0_c01122{word-spacing:-18.000000px;}
.ws3_c01122{word-spacing:0.000000px;}
._14_c01122{margin-left:-4.895489px;}
._f_c01122{margin-left:-3.708256px;}
._2_c01122{margin-left:-2.695848px;}
._0_c01122{margin-left:-1.390841px;}
._1_c01122{width:1.377508px;}
._3_c01122{width:2.852787px;}
._4_c01122{width:4.176000px;}
._11_c01122{width:5.472000px;}
._c_c01122{width:6.840000px;}
._7_c01122{width:8.784000px;}
._12_c01122{width:10.296000px;}
._10_c01122{width:11.306341px;}
._e_c01122{width:12.501683px;}
._d_c01122{width:13.752000px;}
._6_c01122{width:15.070841px;}
._5_c01122{width:16.416000px;}
._13_c01122{width:21.456000px;}
._b_c01122{width:26.424000px;}
._a_c01122{width:27.912024px;}
._9_c01122{width:40.032000px;}
._8_c01122{width:77.472000px;}
.fc1_c01122{color:rgb(238,119,0);}
.fc0_c01122{color:rgb(0,0,0);}
.fs4_c01122{font-size:59.760000px;}
.fs0_c01122{font-size:66.240000px;}
.fs2_c01122{font-size:72.000000px;}
.fs3_c01122{font-size:84.240000px;}
.fs1_c01122{font-size:95.760000px;}
.y0_c01122{bottom:0.000000px;}
.y33_c01122{bottom:4.515000px;}
.yb_c01122{bottom:5.055000px;}
.y13_c01122{bottom:5.085000px;}
.y7_c01122{bottom:5.220000px;}
.ye_c01122{bottom:8.820000px;}
.y32_c01122{bottom:21.975000px;}
.y9_c01122{bottom:31.140000px;}
.y12_c01122{bottom:31.170000px;}
.y10_c01122{bottom:31.185000px;}
.y6_c01122{bottom:31.320000px;}
.yd_c01122{bottom:40.860000px;}
.y2_c01122{bottom:77.796000px;}
.y30_c01122{bottom:130.356000px;}
.y2f_c01122{bottom:152.670000px;}
.y2e_c01122{bottom:174.990000px;}
.y2d_c01122{bottom:197.490000px;}
.y2c_c01122{bottom:219.810000px;}
.y2b_c01122{bottom:242.130000px;}
.y2a_c01122{bottom:264.450000px;}
.y29_c01122{bottom:286.815000px;}
.y28_c01122{bottom:309.135000px;}
.y27_c01122{bottom:331.455000px;}
.y26_c01122{bottom:353.775000px;}
.y25_c01122{bottom:388.335000px;}
.y31_c01122{bottom:395.340000px;}
.y24_c01122{bottom:410.475000px;}
.y23_c01122{bottom:432.795000px;}
.y22_c01122{bottom:455.115000px;}
.y21_c01122{bottom:477.435000px;}
.y20_c01122{bottom:499.755000px;}
.y1f_c01122{bottom:522.255000px;}
.y1e_c01122{bottom:544.575000px;}
.y1d_c01122{bottom:566.925000px;}
.y1c_c01122{bottom:589.245000px;}
.y1b_c01122{bottom:611.565000px;}
.y1a_c01122{bottom:633.885000px;}
.y19_c01122{bottom:656.205000px;}
.y18_c01122{bottom:678.525000px;}
.y17_c01122{bottom:700.845000px;}
.y16_c01122{bottom:723.165000px;}
.y15_c01122{bottom:745.485000px;}
.y14_c01122{bottom:789.225000px;}
.yf_c01122{bottom:846.645000px;}
.y11_c01122{bottom:846.660000px;}
.yc_c01122{bottom:901.050000px;}
.ya_c01122{bottom:965.115000px;}
.y8_c01122{bottom:965.130000px;}
.y5_c01122{bottom:1019.490000px;}
.y4_c01122{bottom:1102.830000px;}
.y3_c01122{bottom:1134.180000px;}
.y1_c01122{bottom:1194.660000px;}
.hf_c01122{height:35.640000px;}
.h2_c01122{height:48.062812px;}
.h3_c01122{height:50.229844px;}
.h7_c01122{height:52.382812px;}
.h10_c01122{height:53.428008px;}
.h8_c01122{height:54.345000px;}
.h9_c01122{height:54.351000px;}
.ha_c01122{height:54.360000px;}
.hc_c01122{height:54.382500px;}
.h5_c01122{height:54.525000px;}
.h6_c01122{height:63.550195px;}
.hb_c01122{height:64.065000px;}
.he_c01122{height:64.546875px;}
.h4_c01122{height:69.575625px;}
.hd_c01122{height:87.859687px;}
.h0_c01122{height:1262.880000px;}
.h1_c01122{height:1263.000000px;}
.w3_c01122{width:230.415000px;}
.w4_c01122{width:230.430000px;}
.w5_c01122{width:273.810000px;}
.w2_c01122{width:403.626000px;}
.w0_c01122{width:892.980000px;}
.w1_c01122{width:893.250000px;}
.x0_c01122{left:0.000000px;}
.x5_c01122{left:10.251000px;}
.x6_c01122{left:31.485000px;}
.x3_c01122{left:127.656000px;}
.x1_c01122{left:169.950000px;}
.x4_c01122{left:180.750000px;}
.x8_c01122{left:491.880000px;}
.x7_c01122{left:531.300000px;}
.x2_c01122{left:740.490000px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls3_c01122{letter-spacing:-0.480533pt;}
.ls4_c01122{letter-spacing:-0.384000pt;}
.ls2_c01122{letter-spacing:0.000000pt;}
.ls0_c01122{letter-spacing:18.474667pt;}
.ls1_c01122{letter-spacing:18.496000pt;}
.ws1_c01122{word-spacing:-18.270720pt;}
.ws2_c01122{word-spacing:-17.408000pt;}
.ws0_c01122{word-spacing:-16.000000pt;}
.ws3_c01122{word-spacing:0.000000pt;}
._14_c01122{margin-left:-4.351546pt;}
._f_c01122{margin-left:-3.296227pt;}
._2_c01122{margin-left:-2.396310pt;}
._0_c01122{margin-left:-1.236303pt;}
._1_c01122{width:1.224451pt;}
._3_c01122{width:2.535811pt;}
._4_c01122{width:3.712000pt;}
._11_c01122{width:4.864000pt;}
._c_c01122{width:6.080000pt;}
._7_c01122{width:7.808000pt;}
._12_c01122{width:9.152000pt;}
._10_c01122{width:10.050081pt;}
._e_c01122{width:11.112607pt;}
._d_c01122{width:12.224000pt;}
._6_c01122{width:13.396303pt;}
._5_c01122{width:14.592000pt;}
._13_c01122{width:19.072000pt;}
._b_c01122{width:23.488000pt;}
._a_c01122{width:24.810688pt;}
._9_c01122{width:35.584000pt;}
._8_c01122{width:68.864000pt;}
.fs4_c01122{font-size:53.120000pt;}
.fs0_c01122{font-size:58.880000pt;}
.fs2_c01122{font-size:64.000000pt;}
.fs3_c01122{font-size:74.880000pt;}
.fs1_c01122{font-size:85.120000pt;}
.y0_c01122{bottom:0.000000pt;}
.y33_c01122{bottom:4.013333pt;}
.yb_c01122{bottom:4.493333pt;}
.y13_c01122{bottom:4.520000pt;}
.y7_c01122{bottom:4.640000pt;}
.ye_c01122{bottom:7.840000pt;}
.y32_c01122{bottom:19.533333pt;}
.y9_c01122{bottom:27.680000pt;}
.y12_c01122{bottom:27.706667pt;}
.y10_c01122{bottom:27.720000pt;}
.y6_c01122{bottom:27.840000pt;}
.yd_c01122{bottom:36.320000pt;}
.y2_c01122{bottom:69.152000pt;}
.y30_c01122{bottom:115.872000pt;}
.y2f_c01122{bottom:135.706667pt;}
.y2e_c01122{bottom:155.546667pt;}
.y2d_c01122{bottom:175.546667pt;}
.y2c_c01122{bottom:195.386667pt;}
.y2b_c01122{bottom:215.226667pt;}
.y2a_c01122{bottom:235.066667pt;}
.y29_c01122{bottom:254.946667pt;}
.y28_c01122{bottom:274.786667pt;}
.y27_c01122{bottom:294.626667pt;}
.y26_c01122{bottom:314.466667pt;}
.y25_c01122{bottom:345.186667pt;}
.y31_c01122{bottom:351.413333pt;}
.y24_c01122{bottom:364.866667pt;}
.y23_c01122{bottom:384.706667pt;}
.y22_c01122{bottom:404.546667pt;}
.y21_c01122{bottom:424.386667pt;}
.y20_c01122{bottom:444.226667pt;}
.y1f_c01122{bottom:464.226667pt;}
.y1e_c01122{bottom:484.066667pt;}
.y1d_c01122{bottom:503.933333pt;}
.y1c_c01122{bottom:523.773333pt;}
.y1b_c01122{bottom:543.613333pt;}
.y1a_c01122{bottom:563.453333pt;}
.y19_c01122{bottom:583.293333pt;}
.y18_c01122{bottom:603.133333pt;}
.y17_c01122{bottom:622.973333pt;}
.y16_c01122{bottom:642.813333pt;}
.y15_c01122{bottom:662.653333pt;}
.y14_c01122{bottom:701.533333pt;}
.yf_c01122{bottom:752.573333pt;}
.y11_c01122{bottom:752.586667pt;}
.yc_c01122{bottom:800.933333pt;}
.ya_c01122{bottom:857.880000pt;}
.y8_c01122{bottom:857.893333pt;}
.y5_c01122{bottom:906.213333pt;}
.y4_c01122{bottom:980.293333pt;}
.y3_c01122{bottom:1008.160000pt;}
.y1_c01122{bottom:1061.920000pt;}
.hf_c01122{height:31.680000pt;}
.h2_c01122{height:42.722500pt;}
.h3_c01122{height:44.648750pt;}
.h7_c01122{height:46.562500pt;}
.h10_c01122{height:47.491563pt;}
.h8_c01122{height:48.306667pt;}
.h9_c01122{height:48.312000pt;}
.ha_c01122{height:48.320000pt;}
.hc_c01122{height:48.340000pt;}
.h5_c01122{height:48.466667pt;}
.h6_c01122{height:56.489062pt;}
.hb_c01122{height:56.946667pt;}
.he_c01122{height:57.375000pt;}
.h4_c01122{height:61.845000pt;}
.hd_c01122{height:78.097500pt;}
.h0_c01122{height:1122.560000pt;}
.h1_c01122{height:1122.666667pt;}
.w3_c01122{width:204.813333pt;}
.w4_c01122{width:204.826667pt;}
.w5_c01122{width:243.386667pt;}
.w2_c01122{width:358.778667pt;}
.w0_c01122{width:793.760000pt;}
.w1_c01122{width:794.000000pt;}
.x0_c01122{left:0.000000pt;}
.x5_c01122{left:9.112000pt;}
.x6_c01122{left:27.986667pt;}
.x3_c01122{left:113.472000pt;}
.x1_c01122{left:151.066667pt;}
.x4_c01122{left:160.666667pt;}
.x8_c01122{left:437.226667pt;}
.x7_c01122{left:472.266667pt;}
.x2_c01122{left:658.213333pt;}
}





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

.ir_c01123:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01123;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01123;src:url('chunks/assets/font_5d7a07e7c8fb54fb483b7424.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01123;src:url('chunks/assets/font_bf161ab3a68b228a0acd9742.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01123;src:url('chunks/assets/font_b4308e39ac9c71770a718948.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:1.575000;font-style:normal;font-weight: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_c01123;src:url('chunks/assets/font_35cac3854ad6d78bea83f6b4.woff2')format("woff");}.ff5_c01123{font-family:ff5_c01123;line-height:1.211914;font-style:normal;font-weight: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_c01123;src:url('chunks/assets/font_6f4a081d5257953264a8d87e.woff2')format("woff");}.ff6_c01123{font-family:ff6_c01123;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01123{vertical-align:0.000000px;}
.ls5_c01123{letter-spacing:-0.720000px;}
.ls4_c01123{letter-spacing:-0.576000px;}
.ls7_c01123{letter-spacing:-0.247800px;}
.ls3_c01123{letter-spacing:-0.181200px;}
.ls2_c01123{letter-spacing:0.000000px;}
.ls0_c01123{letter-spacing:0.144000px;}
.ls6_c01123{letter-spacing:0.150000px;}
.ls1_c01123{letter-spacing:0.152400px;}
.sc__c01123{text-shadow:none;}
.sc0_c01123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01123{-webkit-text-stroke:0px transparent;}
.sc0_c01123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01123{word-spacing:-21.187920px;}
.ws1_c01123{word-spacing:0.000000px;}
._2_c01123{margin-left:-5.463302px;}
._1_c01123{margin-left:-4.392000px;}
._6_c01123{margin-left:-3.327278px;}
._d_c01123{margin-left:-2.304000px;}
._0_c01123{margin-left:-1.258891px;}
._3_c01123{width:1.071302px;}
._9_c01123{width:2.628000px;}
._f_c01123{width:4.400698px;}
._a_c01123{width:5.472000px;}
._5_c01123{width:7.325395px;}
._4_c01123{width:8.640000px;}
._b_c01123{width:9.771350px;}
._8_c01123{width:13.426891px;}
._7_c01123{width:14.616000px;}
._c_c01123{width:16.128000px;}
._10_c01123{width:17.928000px;}
._11_c01123{width:26.352000px;}
._12_c01123{width:27.694915px;}
._e_c01123{width:28.944000px;}
.fc0_c01123{color:rgb(0,0,0);}
.fs3_c01123{font-size:38.880000px;}
.fs2_c01123{font-size:48.240000px;}
.fs4_c01123{font-size:59.760000px;}
.fs0_c01123{font-size:66.240000px;}
.fs1_c01123{font-size:72.000000px;}
.y0_c01123{bottom:0.000000px;}
.y4_c01123{bottom:57.636000px;}
.y3_c01123{bottom:77.796000px;}
.y34_c01123{bottom:109.296000px;}
.y33_c01123{bottom:127.476000px;}
.y32_c01123{bottom:145.656000px;}
.y31_c01123{bottom:150.870000px;}
.y30_c01123{bottom:165.450000px;}
.y2f_c01123{bottom:187.950000px;}
.y2e_c01123{bottom:210.270000px;}
.y2d_c01123{bottom:232.590000px;}
.y2c_c01123{bottom:267.150000px;}
.y2b_c01123{bottom:289.335000px;}
.y2a_c01123{bottom:311.655000px;}
.y29_c01123{bottom:333.975000px;}
.y28_c01123{bottom:356.295000px;}
.y27_c01123{bottom:378.615000px;}
.y26_c01123{bottom:400.935000px;}
.y25_c01123{bottom:423.255000px;}
.y24_c01123{bottom:445.575000px;}
.y23_c01123{bottom:468.075000px;}
.y22_c01123{bottom:490.395000px;}
.y21_c01123{bottom:512.715000px;}
.y20_c01123{bottom:535.035000px;}
.y1f_c01123{bottom:557.355000px;}
.y1e_c01123{bottom:579.705000px;}
.y1d_c01123{bottom:614.265000px;}
.y1c_c01123{bottom:636.405000px;}
.y1b_c01123{bottom:658.725000px;}
.y1a_c01123{bottom:681.045000px;}
.y19_c01123{bottom:703.365000px;}
.y18_c01123{bottom:725.685000px;}
.y17_c01123{bottom:748.005000px;}
.y16_c01123{bottom:770.325000px;}
.y15_c01123{bottom:792.645000px;}
.y14_c01123{bottom:815.145000px;}
.y13_c01123{bottom:837.465000px;}
.y12_c01123{bottom:859.830000px;}
.y11_c01123{bottom:882.150000px;}
.y10_c01123{bottom:904.470000px;}
.yf_c01123{bottom:926.790000px;}
.ye_c01123{bottom:949.110000px;}
.yd_c01123{bottom:971.430000px;}
.yc_c01123{bottom:993.750000px;}
.yb_c01123{bottom:1016.070000px;}
.ya_c01123{bottom:1038.570000px;}
.y8_c01123{bottom:1072.950000px;}
.y9_c01123{bottom:1078.890000px;}
.y7_c01123{bottom:1095.090000px;}
.y6_c01123{bottom:1117.410000px;}
.y5_c01123{bottom:1139.940000px;}
.y2_c01123{bottom:1174.320000px;}
.y1_c01123{bottom:1194.660000px;}
.h7_c01123{height:41.484960px;}
.h6_c01123{height:43.246406px;}
.h2_c01123{height:48.062812px;}
.h3_c01123{height:50.229844px;}
.h9_c01123{height:59.789180px;}
.h8_c01123{height:63.763920px;}
.h4_c01123{height:64.546875px;}
.h5_c01123{height:1262.865000px;}
.h0_c01123{height:1262.880000px;}
.h1_c01123{height:1263.000000px;}
.w2_c01123{width:892.957500px;}
.w0_c01123{width:892.980000px;}
.w1_c01123{width:893.250000px;}
.x0_c01123{left:0.000000px;}
.x1_c01123{left:127.656000px;}
.x5_c01123{left:146.016000px;}
.x2_c01123{left:326.752500px;}
.x4_c01123{left:343.695000px;}
.x3_c01123{left:346.755000px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.ls5_c01123{letter-spacing:-0.640000pt;}
.ls4_c01123{letter-spacing:-0.512000pt;}
.ls7_c01123{letter-spacing:-0.220267pt;}
.ls3_c01123{letter-spacing:-0.161067pt;}
.ls2_c01123{letter-spacing:0.000000pt;}
.ls0_c01123{letter-spacing:0.128000pt;}
.ls6_c01123{letter-spacing:0.133333pt;}
.ls1_c01123{letter-spacing:0.135467pt;}
.ws0_c01123{word-spacing:-18.833707pt;}
.ws1_c01123{word-spacing:0.000000pt;}
._2_c01123{margin-left:-4.856269pt;}
._1_c01123{margin-left:-3.904000pt;}
._6_c01123{margin-left:-2.957581pt;}
._d_c01123{margin-left:-2.048000pt;}
._0_c01123{margin-left:-1.119014pt;}
._3_c01123{width:0.952269pt;}
._9_c01123{width:2.336000pt;}
._f_c01123{width:3.911731pt;}
._a_c01123{width:4.864000pt;}
._5_c01123{width:6.511462pt;}
._4_c01123{width:7.680000pt;}
._b_c01123{width:8.685645pt;}
._8_c01123{width:11.935014pt;}
._7_c01123{width:12.992000pt;}
._c_c01123{width:14.336000pt;}
._10_c01123{width:15.936000pt;}
._11_c01123{width:23.424000pt;}
._12_c01123{width:24.617702pt;}
._e_c01123{width:25.728000pt;}
.fs3_c01123{font-size:34.560000pt;}
.fs2_c01123{font-size:42.880000pt;}
.fs4_c01123{font-size:53.120000pt;}
.fs0_c01123{font-size:58.880000pt;}
.fs1_c01123{font-size:64.000000pt;}
.y0_c01123{bottom:0.000000pt;}
.y4_c01123{bottom:51.232000pt;}
.y3_c01123{bottom:69.152000pt;}
.y34_c01123{bottom:97.152000pt;}
.y33_c01123{bottom:113.312000pt;}
.y32_c01123{bottom:129.472000pt;}
.y31_c01123{bottom:134.106667pt;}
.y30_c01123{bottom:147.066667pt;}
.y2f_c01123{bottom:167.066667pt;}
.y2e_c01123{bottom:186.906667pt;}
.y2d_c01123{bottom:206.746667pt;}
.y2c_c01123{bottom:237.466667pt;}
.y2b_c01123{bottom:257.186667pt;}
.y2a_c01123{bottom:277.026667pt;}
.y29_c01123{bottom:296.866667pt;}
.y28_c01123{bottom:316.706667pt;}
.y27_c01123{bottom:336.546667pt;}
.y26_c01123{bottom:356.386667pt;}
.y25_c01123{bottom:376.226667pt;}
.y24_c01123{bottom:396.066667pt;}
.y23_c01123{bottom:416.066667pt;}
.y22_c01123{bottom:435.906667pt;}
.y21_c01123{bottom:455.746667pt;}
.y20_c01123{bottom:475.586667pt;}
.y1f_c01123{bottom:495.426667pt;}
.y1e_c01123{bottom:515.293333pt;}
.y1d_c01123{bottom:546.013333pt;}
.y1c_c01123{bottom:565.693333pt;}
.y1b_c01123{bottom:585.533333pt;}
.y1a_c01123{bottom:605.373333pt;}
.y19_c01123{bottom:625.213333pt;}
.y18_c01123{bottom:645.053333pt;}
.y17_c01123{bottom:664.893333pt;}
.y16_c01123{bottom:684.733333pt;}
.y15_c01123{bottom:704.573333pt;}
.y14_c01123{bottom:724.573333pt;}
.y13_c01123{bottom:744.413333pt;}
.y12_c01123{bottom:764.293333pt;}
.y11_c01123{bottom:784.133333pt;}
.y10_c01123{bottom:803.973333pt;}
.yf_c01123{bottom:823.813333pt;}
.ye_c01123{bottom:843.653333pt;}
.yd_c01123{bottom:863.493333pt;}
.yc_c01123{bottom:883.333333pt;}
.yb_c01123{bottom:903.173333pt;}
.ya_c01123{bottom:923.173333pt;}
.y8_c01123{bottom:953.733333pt;}
.y9_c01123{bottom:959.013333pt;}
.y7_c01123{bottom:973.413333pt;}
.y6_c01123{bottom:993.253333pt;}
.y5_c01123{bottom:1013.280000pt;}
.y2_c01123{bottom:1043.840000pt;}
.y1_c01123{bottom:1061.920000pt;}
.h7_c01123{height:36.875520pt;}
.h6_c01123{height:38.441250pt;}
.h2_c01123{height:42.722500pt;}
.h3_c01123{height:44.648750pt;}
.h9_c01123{height:53.145938pt;}
.h8_c01123{height:56.679040pt;}
.h4_c01123{height:57.375000pt;}
.h5_c01123{height:1122.546667pt;}
.h0_c01123{height:1122.560000pt;}
.h1_c01123{height:1122.666667pt;}
.w2_c01123{width:793.740000pt;}
.w0_c01123{width:793.760000pt;}
.w1_c01123{width:794.000000pt;}
.x0_c01123{left:0.000000pt;}
.x1_c01123{left:113.472000pt;}
.x5_c01123{left:129.792000pt;}
.x2_c01123{left:290.446667pt;}
.x4_c01123{left:305.506667pt;}
.x3_c01123{left:308.226667pt;}
}





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

.ir_c01124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01124;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01124;src:url('chunks/assets/font_c12eb901ae2c9a405000489b.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01124;src:url('chunks/assets/font_fec477b9638183d9d0072ba2.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01124;src:url('chunks/assets/font_a06b1775828be14517173355.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01124;src:url('chunks/assets/font_907ebf42da7f0521e8f31f55.woff2')format("woff");}.ff5_c01124{font-family:ff5_c01124;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01124;src:url('chunks/assets/font_448503eee24887669f6940ba.woff2')format("woff");}.ff6_c01124{font-family:ff6_c01124;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01124{vertical-align:0.000000px;}
.ls4_c01124{letter-spacing:-0.576000px;}
.ls8_c01124{letter-spacing:-0.247800px;}
.ls3_c01124{letter-spacing:-0.181200px;}
.ls6_c01124{letter-spacing:-0.144000px;}
.ls2_c01124{letter-spacing:0.000000px;}
.ls5_c01124{letter-spacing:0.144000px;}
.ls7_c01124{letter-spacing:0.150000px;}
.ls1_c01124{letter-spacing:0.152400px;}
.ls0_c01124{letter-spacing:847.506720px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01124{word-spacing:-21.187920px;}
.ws0_c01124{word-spacing:-19.872000px;}
.ws2_c01124{word-spacing:0.000000px;}
._13_c01124{margin-left:-5.229683px;}
._a_c01124{margin-left:-3.626317px;}
._9_c01124{margin-left:-2.592000px;}
._0_c01124{margin-left:-1.390841px;}
._2_c01124{width:1.176437px;}
._b_c01124{width:2.335608px;}
._e_c01124{width:3.816000px;}
._8_c01124{width:5.504135px;}
._7_c01124{width:6.624000px;}
._10_c01124{width:8.648833px;}
._f_c01124{width:9.720000px;}
._12_c01124{width:11.088000px;}
._1_c01124{width:12.528000px;}
._6_c01124{width:14.180524px;}
._5_c01124{width:15.552000px;}
._d_c01124{width:17.206865px;}
._c_c01124{width:18.216000px;}
._4_c01124{width:21.024000px;}
._3_c01124{width:22.104000px;}
._11_c01124{width:32.904000px;}
.fc0_c01124{color:rgb(0,0,0);}
.fs4_c01124{font-size:38.880000px;}
.fs2_c01124{font-size:48.240000px;}
.fs3_c01124{font-size:59.760000px;}
.fs0_c01124{font-size:66.240000px;}
.fs1_c01124{font-size:72.000000px;}
.y0_c01124{bottom:0.000000px;}
.y4_c01124{bottom:57.636000px;}
.y3_c01124{bottom:77.796000px;}
.y33_c01124{bottom:109.296000px;}
.y32_c01124{bottom:127.476000px;}
.y31_c01124{bottom:145.656000px;}
.y30_c01124{bottom:150.870000px;}
.y2f_c01124{bottom:165.450000px;}
.y2e_c01124{bottom:210.450000px;}
.y2d_c01124{bottom:232.590000px;}
.y2c_c01124{bottom:254.910000px;}
.y2b_c01124{bottom:289.515000px;}
.y2a_c01124{bottom:311.655000px;}
.y29_c01124{bottom:333.975000px;}
.y28_c01124{bottom:356.295000px;}
.y27_c01124{bottom:378.615000px;}
.y26_c01124{bottom:400.935000px;}
.y25_c01124{bottom:423.255000px;}
.y24_c01124{bottom:457.815000px;}
.y23_c01124{bottom:479.955000px;}
.y22_c01124{bottom:502.275000px;}
.y21_c01124{bottom:524.595000px;}
.y20_c01124{bottom:546.915000px;}
.y1f_c01124{bottom:569.445000px;}
.y1e_c01124{bottom:603.825000px;}
.y1d_c01124{bottom:625.965000px;}
.y1c_c01124{bottom:648.465000px;}
.y1b_c01124{bottom:670.785000px;}
.y1a_c01124{bottom:693.105000px;}
.y18_c01124{bottom:715.425000px;}
.y19_c01124{bottom:721.365000px;}
.y17_c01124{bottom:737.745000px;}
.y16_c01124{bottom:760.065000px;}
.y15_c01124{bottom:782.385000px;}
.y14_c01124{bottom:804.705000px;}
.y13_c01124{bottom:827.025000px;}
.y12_c01124{bottom:849.390000px;}
.y11_c01124{bottom:871.710000px;}
.y10_c01124{bottom:894.210000px;}
.yf_c01124{bottom:916.530000px;}
.ye_c01124{bottom:938.850000px;}
.yd_c01124{bottom:961.170000px;}
.yc_c01124{bottom:983.490000px;}
.yb_c01124{bottom:1005.810000px;}
.ya_c01124{bottom:1028.130000px;}
.y9_c01124{bottom:1050.450000px;}
.y8_c01124{bottom:1072.770000px;}
.y7_c01124{bottom:1095.090000px;}
.y6_c01124{bottom:1117.410000px;}
.y5_c01124{bottom:1139.940000px;}
.y2_c01124{bottom:1174.320000px;}
.y1_c01124{bottom:1194.660000px;}
.h7_c01124{height:41.484960px;}
.h6_c01124{height:43.246406px;}
.h2_c01124{height:48.062812px;}
.h3_c01124{height:50.229844px;}
.h8_c01124{height:63.763920px;}
.h4_c01124{height:64.546875px;}
.h5_c01124{height:1262.865000px;}
.h0_c01124{height:1262.880000px;}
.h1_c01124{height:1263.000000px;}
.w2_c01124{width:892.957500px;}
.w0_c01124{width:892.980000px;}
.w1_c01124{width:893.250000px;}
.x0_c01124{left:0.000000px;}
.x2_c01124{left:127.656000px;}
.x7_c01124{left:146.016000px;}
.x1_c01124{left:169.950000px;}
.x6_c01124{left:343.695000px;}
.x4_c01124{left:604.522500px;}
.x5_c01124{left:624.525000px;}
.x3_c01124{left:740.490000px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls4_c01124{letter-spacing:-0.512000pt;}
.ls8_c01124{letter-spacing:-0.220267pt;}
.ls3_c01124{letter-spacing:-0.161067pt;}
.ls6_c01124{letter-spacing:-0.128000pt;}
.ls2_c01124{letter-spacing:0.000000pt;}
.ls5_c01124{letter-spacing:0.128000pt;}
.ls7_c01124{letter-spacing:0.133333pt;}
.ls1_c01124{letter-spacing:0.135467pt;}
.ls0_c01124{letter-spacing:753.339307pt;}
.ws1_c01124{word-spacing:-18.833707pt;}
.ws0_c01124{word-spacing:-17.664000pt;}
.ws2_c01124{word-spacing:0.000000pt;}
._13_c01124{margin-left:-4.648607pt;}
._a_c01124{margin-left:-3.223393pt;}
._9_c01124{margin-left:-2.304000pt;}
._0_c01124{margin-left:-1.236303pt;}
._2_c01124{width:1.045722pt;}
._b_c01124{width:2.076096pt;}
._e_c01124{width:3.392000pt;}
._8_c01124{width:4.892564pt;}
._7_c01124{width:5.888000pt;}
._10_c01124{width:7.687852pt;}
._f_c01124{width:8.640000pt;}
._12_c01124{width:9.856000pt;}
._1_c01124{width:11.136000pt;}
._6_c01124{width:12.604910pt;}
._5_c01124{width:13.824000pt;}
._d_c01124{width:15.294991pt;}
._c_c01124{width:16.192000pt;}
._4_c01124{width:18.688000pt;}
._3_c01124{width:19.648000pt;}
._11_c01124{width:29.248000pt;}
.fs4_c01124{font-size:34.560000pt;}
.fs2_c01124{font-size:42.880000pt;}
.fs3_c01124{font-size:53.120000pt;}
.fs0_c01124{font-size:58.880000pt;}
.fs1_c01124{font-size:64.000000pt;}
.y0_c01124{bottom:0.000000pt;}
.y4_c01124{bottom:51.232000pt;}
.y3_c01124{bottom:69.152000pt;}
.y33_c01124{bottom:97.152000pt;}
.y32_c01124{bottom:113.312000pt;}
.y31_c01124{bottom:129.472000pt;}
.y30_c01124{bottom:134.106667pt;}
.y2f_c01124{bottom:147.066667pt;}
.y2e_c01124{bottom:187.066667pt;}
.y2d_c01124{bottom:206.746667pt;}
.y2c_c01124{bottom:226.586667pt;}
.y2b_c01124{bottom:257.346667pt;}
.y2a_c01124{bottom:277.026667pt;}
.y29_c01124{bottom:296.866667pt;}
.y28_c01124{bottom:316.706667pt;}
.y27_c01124{bottom:336.546667pt;}
.y26_c01124{bottom:356.386667pt;}
.y25_c01124{bottom:376.226667pt;}
.y24_c01124{bottom:406.946667pt;}
.y23_c01124{bottom:426.626667pt;}
.y22_c01124{bottom:446.466667pt;}
.y21_c01124{bottom:466.306667pt;}
.y20_c01124{bottom:486.146667pt;}
.y1f_c01124{bottom:506.173333pt;}
.y1e_c01124{bottom:536.733333pt;}
.y1d_c01124{bottom:556.413333pt;}
.y1c_c01124{bottom:576.413333pt;}
.y1b_c01124{bottom:596.253333pt;}
.y1a_c01124{bottom:616.093333pt;}
.y18_c01124{bottom:635.933333pt;}
.y19_c01124{bottom:641.213333pt;}
.y17_c01124{bottom:655.773333pt;}
.y16_c01124{bottom:675.613333pt;}
.y15_c01124{bottom:695.453333pt;}
.y14_c01124{bottom:715.293333pt;}
.y13_c01124{bottom:735.133333pt;}
.y12_c01124{bottom:755.013333pt;}
.y11_c01124{bottom:774.853333pt;}
.y10_c01124{bottom:794.853333pt;}
.yf_c01124{bottom:814.693333pt;}
.ye_c01124{bottom:834.533333pt;}
.yd_c01124{bottom:854.373333pt;}
.yc_c01124{bottom:874.213333pt;}
.yb_c01124{bottom:894.053333pt;}
.ya_c01124{bottom:913.893333pt;}
.y9_c01124{bottom:933.733333pt;}
.y8_c01124{bottom:953.573333pt;}
.y7_c01124{bottom:973.413333pt;}
.y6_c01124{bottom:993.253333pt;}
.y5_c01124{bottom:1013.280000pt;}
.y2_c01124{bottom:1043.840000pt;}
.y1_c01124{bottom:1061.920000pt;}
.h7_c01124{height:36.875520pt;}
.h6_c01124{height:38.441250pt;}
.h2_c01124{height:42.722500pt;}
.h3_c01124{height:44.648750pt;}
.h8_c01124{height:56.679040pt;}
.h4_c01124{height:57.375000pt;}
.h5_c01124{height:1122.546667pt;}
.h0_c01124{height:1122.560000pt;}
.h1_c01124{height:1122.666667pt;}
.w2_c01124{width:793.740000pt;}
.w0_c01124{width:793.760000pt;}
.w1_c01124{width:794.000000pt;}
.x0_c01124{left:0.000000pt;}
.x2_c01124{left:113.472000pt;}
.x7_c01124{left:129.792000pt;}
.x1_c01124{left:151.066667pt;}
.x6_c01124{left:305.506667pt;}
.x4_c01124{left:537.353333pt;}
.x5_c01124{left:555.133333pt;}
.x3_c01124{left:658.213333pt;}
}





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

.ir_c01125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01125;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01125;src:url('chunks/assets/font_0cbea220abed6d3d5502fa80.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01125;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01125;src:url('chunks/assets/font_48d26bf48a19a263631ecd60.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.106934;font-style:normal;font-weight: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_c01125;src:url('chunks/assets/font_b290da2c5e8299806205c6a6.woff2')format("woff");}.ff5_c01125{font-family:ff5_c01125;line-height:1.575000;font-style:normal;font-weight: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_c01125;src:url('chunks/assets/font_19932204149c923e68ae1697.woff2')format("woff");}.ff6_c01125{font-family:ff6_c01125;line-height:1.181152;font-style:normal;font-weight: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_c01125;src:url('chunks/assets/font_9e12ec7eb2e37321f14fc5f0.woff2')format("woff");}.ff7_c01125{font-family:ff7_c01125;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01125{vertical-align:0.000000px;}
.ls6_c01125{letter-spacing:-1.440000px;}
.ls3_c01125{letter-spacing:-0.720000px;}
.ls2_c01125{letter-spacing:-0.432000px;}
.ls8_c01125{letter-spacing:-0.272400px;}
.ls5_c01125{letter-spacing:-0.181200px;}
.ls1_c01125{letter-spacing:0.000000px;}
.ls7_c01125{letter-spacing:0.150000px;}
.ls4_c01125{letter-spacing:0.288000px;}
.ls9_c01125{letter-spacing:0.567600px;}
.ls0_c01125{letter-spacing:4.494240px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01125{word-spacing:-20.016000px;}
.ws0_c01125{word-spacing:-19.584000px;}
.ws2_c01125{word-spacing:0.000000px;}
._6_c01125{margin-left:-2.589782px;}
._0_c01125{margin-left:-1.258891px;}
._2_c01125{width:1.629806px;}
._1_c01125{width:2.664000px;}
._b_c01125{width:3.672000px;}
._c_c01125{width:4.944024px;}
._18_c01125{width:5.973782px;}
._3_c01125{width:6.984000px;}
._a_c01125{width:8.668411px;}
._5_c01125{width:12.024000px;}
._7_c01125{width:13.138891px;}
._17_c01125{width:14.184000px;}
._10_c01125{width:15.682867px;}
._8_c01125{width:16.824024px;}
._4_c01125{width:17.856000px;}
._9_c01125{width:18.864000px;}
._16_c01125{width:22.008000px;}
._15_c01125{width:23.040000px;}
._14_c01125{width:24.214771px;}
._13_c01125{width:26.040024px;}
._f_c01125{width:29.448000px;}
._e_c01125{width:38.064024px;}
._d_c01125{width:39.240000px;}
._12_c01125{width:48.754843px;}
._11_c01125{width:49.872024px;}
.fc0_c01125{color:rgb(0,0,0);}
.fs4_c01125{font-size:38.880000px;}
.fs3_c01125{font-size:48.240000px;}
.fs5_c01125{font-size:59.760000px;}
.fs0_c01125{font-size:66.240000px;}
.fs2_c01125{font-size:72.000000px;}
.fs1_c01125{font-size:84.240000px;}
.y0_c01125{bottom:0.000000px;}
.y37_c01125{bottom:7.035000px;}
.y36_c01125{bottom:24.495000px;}
.y4_c01125{bottom:57.636000px;}
.y3_c01125{bottom:77.796000px;}
.y34_c01125{bottom:109.296000px;}
.y33_c01125{bottom:128.376000px;}
.y32_c01125{bottom:133.596000px;}
.y31_c01125{bottom:148.176000px;}
.y30_c01125{bottom:187.950000px;}
.y2f_c01125{bottom:210.450000px;}
.y2e_c01125{bottom:232.770000px;}
.y2d_c01125{bottom:255.090000px;}
.y2c_c01125{bottom:277.410000px;}
.y2b_c01125{bottom:299.775000px;}
.y35_c01125{bottom:334.320000px;}
.y2a_c01125{bottom:334.335000px;}
.y29_c01125{bottom:356.475000px;}
.y28_c01125{bottom:378.795000px;}
.y26_c01125{bottom:401.115000px;}
.y27_c01125{bottom:407.055000px;}
.y25_c01125{bottom:423.435000px;}
.y24_c01125{bottom:445.755000px;}
.y23_c01125{bottom:468.075000px;}
.y22_c01125{bottom:490.395000px;}
.y21_c01125{bottom:512.715000px;}
.y20_c01125{bottom:535.215000px;}
.y1f_c01125{bottom:557.535000px;}
.y1e_c01125{bottom:579.885000px;}
.y1d_c01125{bottom:602.205000px;}
.y1c_c01125{bottom:624.525000px;}
.y1b_c01125{bottom:646.845000px;}
.y1a_c01125{bottom:669.165000px;}
.y19_c01125{bottom:691.485000px;}
.y18_c01125{bottom:713.805000px;}
.y17_c01125{bottom:736.125000px;}
.y16_c01125{bottom:758.445000px;}
.y15_c01125{bottom:780.945000px;}
.y14_c01125{bottom:803.265000px;}
.y13_c01125{bottom:825.585000px;}
.y12_c01125{bottom:847.950000px;}
.y11_c01125{bottom:870.270000px;}
.y10_c01125{bottom:892.590000px;}
.yf_c01125{bottom:914.910000px;}
.ye_c01125{bottom:937.230000px;}
.yd_c01125{bottom:959.550000px;}
.yc_c01125{bottom:981.870000px;}
.yb_c01125{bottom:1004.370000px;}
.ya_c01125{bottom:1026.690000px;}
.y9_c01125{bottom:1049.010000px;}
.y8_c01125{bottom:1071.330000px;}
.y7_c01125{bottom:1093.650000px;}
.y6_c01125{bottom:1115.070000px;}
.y5_c01125{bottom:1137.420000px;}
.y2_c01125{bottom:1174.320000px;}
.y1_c01125{bottom:1194.660000px;}
.h8_c01125{height:29.482734px;}
.ha_c01125{height:38.160000px;}
.h7_c01125{height:43.246406px;}
.h2_c01125{height:48.062812px;}
.h3_c01125{height:50.229844px;}
.hb_c01125{height:53.428008px;}
.h9_c01125{height:63.763920px;}
.h5_c01125{height:64.546875px;}
.h4_c01125{height:87.859687px;}
.h6_c01125{height:1262.865000px;}
.h0_c01125{height:1262.880000px;}
.h1_c01125{height:1263.000000px;}
.w3_c01125{width:250.950000px;}
.w2_c01125{width:892.957500px;}
.w0_c01125{width:892.980000px;}
.w1_c01125{width:893.250000px;}
.x0_c01125{left:0.000000px;}
.x1_c01125{left:127.656000px;}
.x6_c01125{left:142.236000px;}
.x5_c01125{left:343.695000px;}
.x2_c01125{left:390.855000px;}
.x3_c01125{left:469.852500px;}
.x4_c01125{left:489.855000px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls6_c01125{letter-spacing:-1.280000pt;}
.ls3_c01125{letter-spacing:-0.640000pt;}
.ls2_c01125{letter-spacing:-0.384000pt;}
.ls8_c01125{letter-spacing:-0.242133pt;}
.ls5_c01125{letter-spacing:-0.161067pt;}
.ls1_c01125{letter-spacing:0.000000pt;}
.ls7_c01125{letter-spacing:0.133333pt;}
.ls4_c01125{letter-spacing:0.256000pt;}
.ls9_c01125{letter-spacing:0.504533pt;}
.ls0_c01125{letter-spacing:3.994880pt;}
.ws1_c01125{word-spacing:-17.792000pt;}
.ws0_c01125{word-spacing:-17.408000pt;}
.ws2_c01125{word-spacing:0.000000pt;}
._6_c01125{margin-left:-2.302029pt;}
._0_c01125{margin-left:-1.119014pt;}
._2_c01125{width:1.448717pt;}
._1_c01125{width:2.368000pt;}
._b_c01125{width:3.264000pt;}
._c_c01125{width:4.394688pt;}
._18_c01125{width:5.310029pt;}
._3_c01125{width:6.208000pt;}
._a_c01125{width:7.705254pt;}
._5_c01125{width:10.688000pt;}
._7_c01125{width:11.679014pt;}
._17_c01125{width:12.608000pt;}
._10_c01125{width:13.940326pt;}
._8_c01125{width:14.954688pt;}
._4_c01125{width:15.872000pt;}
._9_c01125{width:16.768000pt;}
._16_c01125{width:19.562667pt;}
._15_c01125{width:20.480000pt;}
._14_c01125{width:21.524241pt;}
._13_c01125{width:23.146688pt;}
._f_c01125{width:26.176000pt;}
._e_c01125{width:33.834688pt;}
._d_c01125{width:34.880000pt;}
._12_c01125{width:43.337638pt;}
._11_c01125{width:44.330688pt;}
.fs4_c01125{font-size:34.560000pt;}
.fs3_c01125{font-size:42.880000pt;}
.fs5_c01125{font-size:53.120000pt;}
.fs0_c01125{font-size:58.880000pt;}
.fs2_c01125{font-size:64.000000pt;}
.fs1_c01125{font-size:74.880000pt;}
.y0_c01125{bottom:0.000000pt;}
.y37_c01125{bottom:6.253333pt;}
.y36_c01125{bottom:21.773333pt;}
.y4_c01125{bottom:51.232000pt;}
.y3_c01125{bottom:69.152000pt;}
.y34_c01125{bottom:97.152000pt;}
.y33_c01125{bottom:114.112000pt;}
.y32_c01125{bottom:118.752000pt;}
.y31_c01125{bottom:131.712000pt;}
.y30_c01125{bottom:167.066667pt;}
.y2f_c01125{bottom:187.066667pt;}
.y2e_c01125{bottom:206.906667pt;}
.y2d_c01125{bottom:226.746667pt;}
.y2c_c01125{bottom:246.586667pt;}
.y2b_c01125{bottom:266.466667pt;}
.y35_c01125{bottom:297.173333pt;}
.y2a_c01125{bottom:297.186667pt;}
.y29_c01125{bottom:316.866667pt;}
.y28_c01125{bottom:336.706667pt;}
.y26_c01125{bottom:356.546667pt;}
.y27_c01125{bottom:361.826667pt;}
.y25_c01125{bottom:376.386667pt;}
.y24_c01125{bottom:396.226667pt;}
.y23_c01125{bottom:416.066667pt;}
.y22_c01125{bottom:435.906667pt;}
.y21_c01125{bottom:455.746667pt;}
.y20_c01125{bottom:475.746667pt;}
.y1f_c01125{bottom:495.586667pt;}
.y1e_c01125{bottom:515.453333pt;}
.y1d_c01125{bottom:535.293333pt;}
.y1c_c01125{bottom:555.133333pt;}
.y1b_c01125{bottom:574.973333pt;}
.y1a_c01125{bottom:594.813333pt;}
.y19_c01125{bottom:614.653333pt;}
.y18_c01125{bottom:634.493333pt;}
.y17_c01125{bottom:654.333333pt;}
.y16_c01125{bottom:674.173333pt;}
.y15_c01125{bottom:694.173333pt;}
.y14_c01125{bottom:714.013333pt;}
.y13_c01125{bottom:733.853333pt;}
.y12_c01125{bottom:753.733333pt;}
.y11_c01125{bottom:773.573333pt;}
.y10_c01125{bottom:793.413333pt;}
.yf_c01125{bottom:813.253333pt;}
.ye_c01125{bottom:833.093333pt;}
.yd_c01125{bottom:852.933333pt;}
.yc_c01125{bottom:872.773333pt;}
.yb_c01125{bottom:892.773333pt;}
.ya_c01125{bottom:912.613333pt;}
.y9_c01125{bottom:932.453333pt;}
.y8_c01125{bottom:952.293333pt;}
.y7_c01125{bottom:972.133333pt;}
.y6_c01125{bottom:991.173333pt;}
.y5_c01125{bottom:1011.040000pt;}
.y2_c01125{bottom:1043.840000pt;}
.y1_c01125{bottom:1061.920000pt;}
.h8_c01125{height:26.206875pt;}
.ha_c01125{height:33.920000pt;}
.h7_c01125{height:38.441250pt;}
.h2_c01125{height:42.722500pt;}
.h3_c01125{height:44.648750pt;}
.hb_c01125{height:47.491563pt;}
.h9_c01125{height:56.679040pt;}
.h5_c01125{height:57.375000pt;}
.h4_c01125{height:78.097500pt;}
.h6_c01125{height:1122.546667pt;}
.h0_c01125{height:1122.560000pt;}
.h1_c01125{height:1122.666667pt;}
.w3_c01125{width:223.066667pt;}
.w2_c01125{width:793.740000pt;}
.w0_c01125{width:793.760000pt;}
.w1_c01125{width:794.000000pt;}
.x0_c01125{left:0.000000pt;}
.x1_c01125{left:113.472000pt;}
.x6_c01125{left:126.432000pt;}
.x5_c01125{left:305.506667pt;}
.x2_c01125{left:347.426667pt;}
.x3_c01125{left:417.646667pt;}
.x4_c01125{left:435.426667pt;}
}





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

.ir_c01126:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01126;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01126;src:url('chunks/assets/font_9d43df2573c3aab8b6483982.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01126;src:url('chunks/assets/font_b5aad1ca0c523f74f7c1885a.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01126;src:url('chunks/assets/font_624b38b76d1dd524acafc716.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01126{vertical-align:0.000000px;}
.ls0_c01126{letter-spacing:0.000000px;}
.ls1_c01126{letter-spacing:0.144000px;}
.ls2_c01126{letter-spacing:0.288000px;}
.sc__c01126{text-shadow:none;}
.sc0_c01126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01126{-webkit-text-stroke:0px transparent;}
.sc0_c01126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01126{word-spacing:-20.304000px;}
.ws1_c01126{word-spacing:0.000000px;}
._5_c01126{margin-left:-4.098182px;}
._1_c01126{margin-left:-2.906317px;}
._0_c01126{margin-left:-1.390841px;}
._2_c01126{width:1.095500px;}
._4_c01126{width:2.098889px;}
._3_c01126{width:3.888000px;}
._c_c01126{width:5.040000px;}
._b_c01126{width:6.120000px;}
._10_c01126{width:7.702865px;}
._d_c01126{width:8.784000px;}
._11_c01126{width:9.912024px;}
._12_c01126{width:11.183976px;}
._8_c01126{width:12.528000px;}
._9_c01126{width:14.365524px;}
._7_c01126{width:15.559341px;}
._6_c01126{width:16.704000px;}
._f_c01126{width:24.503976px;}
._e_c01126{width:25.896024px;}
._a_c01126{width:1044.300000px;}
.fc0_c01126{color:rgb(0,0,0);}
.fs2_c01126{font-size:59.760000px;}
.fs0_c01126{font-size:66.240000px;}
.fs1_c01126{font-size:72.000000px;}
.y0_c01126{bottom:0.000000px;}
.y23_c01126{bottom:3.435000px;}
.y21_c01126{bottom:20.535000px;}
.y4_c01126{bottom:57.636000px;}
.y3_c01126{bottom:77.796000px;}
.y1f_c01126{bottom:152.130000px;}
.y1e_c01126{bottom:174.450000px;}
.y1d_c01126{bottom:196.770000px;}
.y1c_c01126{bottom:219.090000px;}
.y1b_c01126{bottom:241.410000px;}
.y1a_c01126{bottom:263.910000px;}
.y19_c01126{bottom:286.275000px;}
.y18_c01126{bottom:308.595000px;}
.y17_c01126{bottom:330.915000px;}
.y16_c01126{bottom:353.235000px;}
.y15_c01126{bottom:375.555000px;}
.y14_c01126{bottom:397.875000px;}
.y13_c01126{bottom:420.195000px;}
.y20_c01126{bottom:446.640000px;}
.y12_c01126{bottom:454.755000px;}
.y22_c01126{bottom:462.840000px;}
.y11_c01126{bottom:485.175000px;}
.y10_c01126{bottom:894.390000px;}
.yf_c01126{bottom:916.530000px;}
.ye_c01126{bottom:938.850000px;}
.yd_c01126{bottom:961.170000px;}
.yc_c01126{bottom:983.490000px;}
.yb_c01126{bottom:1005.810000px;}
.ya_c01126{bottom:1028.130000px;}
.y9_c01126{bottom:1050.450000px;}
.y8_c01126{bottom:1072.770000px;}
.y7_c01126{bottom:1095.090000px;}
.y6_c01126{bottom:1117.410000px;}
.y5_c01126{bottom:1139.940000px;}
.y2_c01126{bottom:1174.320000px;}
.y1_c01126{bottom:1194.660000px;}
.h7_c01126{height:17.280000px;}
.h5_c01126{height:34.380000px;}
.h2_c01126{height:48.062812px;}
.h3_c01126{height:50.229844px;}
.h6_c01126{height:53.428008px;}
.h4_c01126{height:64.546875px;}
.h0_c01126{height:1262.880000px;}
.h1_c01126{height:1263.000000px;}
.w2_c01126{width:240.870000px;}
.w3_c01126{width:256.575000px;}
.w0_c01126{width:892.980000px;}
.w1_c01126{width:893.250000px;}
.x0_c01126{left:0.000000px;}
.x2_c01126{left:127.656000px;}
.x1_c01126{left:169.950000px;}
.x5_c01126{left:184.545000px;}
.x4_c01126{left:437.115000px;}
.x6_c01126{left:446.475000px;}
.x3_c01126{left:740.490000px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls0_c01126{letter-spacing:0.000000pt;}
.ls1_c01126{letter-spacing:0.128000pt;}
.ls2_c01126{letter-spacing:0.256000pt;}
.ws0_c01126{word-spacing:-18.048000pt;}
.ws1_c01126{word-spacing:0.000000pt;}
._5_c01126{margin-left:-3.642829pt;}
._1_c01126{margin-left:-2.583393pt;}
._0_c01126{margin-left:-1.236303pt;}
._2_c01126{width:0.973778pt;}
._4_c01126{width:1.865679pt;}
._3_c01126{width:3.456000pt;}
._c_c01126{width:4.480000pt;}
._b_c01126{width:5.440000pt;}
._10_c01126{width:6.846991pt;}
._d_c01126{width:7.808000pt;}
._11_c01126{width:8.810688pt;}
._12_c01126{width:9.941312pt;}
._8_c01126{width:11.136000pt;}
._9_c01126{width:12.769354pt;}
._7_c01126{width:13.830525pt;}
._6_c01126{width:14.848000pt;}
._f_c01126{width:21.781312pt;}
._e_c01126{width:23.018688pt;}
._a_c01126{width:928.266667pt;}
.fs2_c01126{font-size:53.120000pt;}
.fs0_c01126{font-size:58.880000pt;}
.fs1_c01126{font-size:64.000000pt;}
.y0_c01126{bottom:0.000000pt;}
.y23_c01126{bottom:3.053333pt;}
.y21_c01126{bottom:18.253333pt;}
.y4_c01126{bottom:51.232000pt;}
.y3_c01126{bottom:69.152000pt;}
.y1f_c01126{bottom:135.226667pt;}
.y1e_c01126{bottom:155.066667pt;}
.y1d_c01126{bottom:174.906667pt;}
.y1c_c01126{bottom:194.746667pt;}
.y1b_c01126{bottom:214.586667pt;}
.y1a_c01126{bottom:234.586667pt;}
.y19_c01126{bottom:254.466667pt;}
.y18_c01126{bottom:274.306667pt;}
.y17_c01126{bottom:294.146667pt;}
.y16_c01126{bottom:313.986667pt;}
.y15_c01126{bottom:333.826667pt;}
.y14_c01126{bottom:353.666667pt;}
.y13_c01126{bottom:373.506667pt;}
.y20_c01126{bottom:397.013333pt;}
.y12_c01126{bottom:404.226667pt;}
.y22_c01126{bottom:411.413333pt;}
.y11_c01126{bottom:431.266667pt;}
.y10_c01126{bottom:795.013333pt;}
.yf_c01126{bottom:814.693333pt;}
.ye_c01126{bottom:834.533333pt;}
.yd_c01126{bottom:854.373333pt;}
.yc_c01126{bottom:874.213333pt;}
.yb_c01126{bottom:894.053333pt;}
.ya_c01126{bottom:913.893333pt;}
.y9_c01126{bottom:933.733333pt;}
.y8_c01126{bottom:953.573333pt;}
.y7_c01126{bottom:973.413333pt;}
.y6_c01126{bottom:993.253333pt;}
.y5_c01126{bottom:1013.280000pt;}
.y2_c01126{bottom:1043.840000pt;}
.y1_c01126{bottom:1061.920000pt;}
.h7_c01126{height:15.360000pt;}
.h5_c01126{height:30.560000pt;}
.h2_c01126{height:42.722500pt;}
.h3_c01126{height:44.648750pt;}
.h6_c01126{height:47.491563pt;}
.h4_c01126{height:57.375000pt;}
.h0_c01126{height:1122.560000pt;}
.h1_c01126{height:1122.666667pt;}
.w2_c01126{width:214.106667pt;}
.w3_c01126{width:228.066667pt;}
.w0_c01126{width:793.760000pt;}
.w1_c01126{width:794.000000pt;}
.x0_c01126{left:0.000000pt;}
.x2_c01126{left:113.472000pt;}
.x1_c01126{left:151.066667pt;}
.x5_c01126{left:164.040000pt;}
.x4_c01126{left:388.546667pt;}
.x6_c01126{left:396.866667pt;}
.x3_c01126{left:658.213333pt;}
}





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

.ir_c01127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01127;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01127;src:url('chunks/assets/font_8aca8ee231d93f84059734cc.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01127;src:url('chunks/assets/font_da8ba399333239f14768aa3e.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01127;src:url('chunks/assets/font_98fad489598624050f75c52c.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01127;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01127{font-family:ff5_c01127;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01127{vertical-align:0.000000px;}
.ls1_c01127{letter-spacing:-0.576000px;}
.ls3_c01127{letter-spacing:-0.432000px;}
.ls0_c01127{letter-spacing:0.000000px;}
.ls2_c01127{letter-spacing:0.288000px;}
.sc__c01127{text-shadow:none;}
.sc0_c01127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01127{-webkit-text-stroke:0px transparent;}
.sc0_c01127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01127{word-spacing:-20.304000px;}
.ws1_c01127{word-spacing:0.000000px;}
._5_c01127{margin-left:-4.176000px;}
._4_c01127{margin-left:-3.096000px;}
._0_c01127{margin-left:-1.258891px;}
._3_c01127{width:1.020024px;}
._2_c01127{width:2.795976px;}
._10_c01127{width:4.032000px;}
._11_c01127{width:5.988024px;}
._6_c01127{width:7.992000px;}
._b_c01127{width:9.216000px;}
._c_c01127{width:10.330891px;}
._1_c01127{width:12.960000px;}
._f_c01127{width:14.199638px;}
._e_c01127{width:15.442819px;}
._d_c01127{width:16.608024px;}
._8_c01127{width:22.824000px;}
._7_c01127{width:24.264000px;}
._9_c01127{width:27.864000px;}
._a_c01127{width:29.013782px;}
.fc0_c01127{color:rgb(0,0,0);}
.fs2_c01127{font-size:59.760000px;}
.fs0_c01127{font-size:66.240000px;}
.fs1_c01127{font-size:72.000000px;}
.fs3_c01127{font-size:84.240000px;}
.y0_c01127{bottom:0.000000px;}
.y22_c01127{bottom:7.545000px;}
.y4_c01127{bottom:57.636000px;}
.y3_c01127{bottom:77.796000px;}
.y20_c01127{bottom:130.536000px;}
.y1f_c01127{bottom:168.510000px;}
.y1e_c01127{bottom:206.490000px;}
.y1d_c01127{bottom:242.670000px;}
.y21_c01127{bottom:245.205000px;}
.y1c_c01127{bottom:270.030000px;}
.y1b_c01127{bottom:636.585000px;}
.y1a_c01127{bottom:658.725000px;}
.y19_c01127{bottom:681.045000px;}
.y18_c01127{bottom:703.365000px;}
.y17_c01127{bottom:725.685000px;}
.y16_c01127{bottom:748.005000px;}
.y15_c01127{bottom:770.325000px;}
.y14_c01127{bottom:792.645000px;}
.y13_c01127{bottom:815.145000px;}
.y12_c01127{bottom:837.465000px;}
.y11_c01127{bottom:859.830000px;}
.y10_c01127{bottom:882.150000px;}
.yf_c01127{bottom:904.470000px;}
.ye_c01127{bottom:926.790000px;}
.yd_c01127{bottom:949.110000px;}
.yc_c01127{bottom:971.430000px;}
.yb_c01127{bottom:993.750000px;}
.ya_c01127{bottom:1016.070000px;}
.y9_c01127{bottom:1038.570000px;}
.y8_c01127{bottom:1060.890000px;}
.y7_c01127{bottom:1083.210000px;}
.y6_c01127{bottom:1117.590000px;}
.y5_c01127{bottom:1139.940000px;}
.y2_c01127{bottom:1174.320000px;}
.y1_c01127{bottom:1194.660000px;}
.h8_c01127{height:21.420000px;}
.h2_c01127{height:48.062812px;}
.h3_c01127{height:50.229844px;}
.h6_c01127{height:53.428008px;}
.h5_c01127{height:53.573906px;}
.h4_c01127{height:64.546875px;}
.h7_c01127{height:76.054570px;}
.h0_c01127{height:1262.880000px;}
.h1_c01127{height:1263.000000px;}
.w2_c01127{width:222.870000px;}
.w0_c01127{width:892.980000px;}
.w1_c01127{width:893.250000px;}
.x0_c01127{left:0.000000px;}
.x1_c01127{left:127.656000px;}
.x3_c01127{left:151.590000px;}
.x4_c01127{left:189.045000px;}
.x2_c01127{left:704.310000px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls1_c01127{letter-spacing:-0.512000pt;}
.ls3_c01127{letter-spacing:-0.384000pt;}
.ls0_c01127{letter-spacing:0.000000pt;}
.ls2_c01127{letter-spacing:0.256000pt;}
.ws0_c01127{word-spacing:-18.048000pt;}
.ws1_c01127{word-spacing:0.000000pt;}
._5_c01127{margin-left:-3.712000pt;}
._4_c01127{margin-left:-2.752000pt;}
._0_c01127{margin-left:-1.119014pt;}
._3_c01127{width:0.906688pt;}
._2_c01127{width:2.485312pt;}
._10_c01127{width:3.584000pt;}
._11_c01127{width:5.322688pt;}
._6_c01127{width:7.104000pt;}
._b_c01127{width:8.192000pt;}
._c_c01127{width:9.183014pt;}
._1_c01127{width:11.520000pt;}
._f_c01127{width:12.621901pt;}
._e_c01127{width:13.726950pt;}
._d_c01127{width:14.762688pt;}
._8_c01127{width:20.288000pt;}
._7_c01127{width:21.568000pt;}
._9_c01127{width:24.768000pt;}
._a_c01127{width:25.790029pt;}
.fs2_c01127{font-size:53.120000pt;}
.fs0_c01127{font-size:58.880000pt;}
.fs1_c01127{font-size:64.000000pt;}
.fs3_c01127{font-size:74.880000pt;}
.y0_c01127{bottom:0.000000pt;}
.y22_c01127{bottom:6.706667pt;}
.y4_c01127{bottom:51.232000pt;}
.y3_c01127{bottom:69.152000pt;}
.y20_c01127{bottom:116.032000pt;}
.y1f_c01127{bottom:149.786667pt;}
.y1e_c01127{bottom:183.546667pt;}
.y1d_c01127{bottom:215.706667pt;}
.y21_c01127{bottom:217.960000pt;}
.y1c_c01127{bottom:240.026667pt;}
.y1b_c01127{bottom:565.853333pt;}
.y1a_c01127{bottom:585.533333pt;}
.y19_c01127{bottom:605.373333pt;}
.y18_c01127{bottom:625.213333pt;}
.y17_c01127{bottom:645.053333pt;}
.y16_c01127{bottom:664.893333pt;}
.y15_c01127{bottom:684.733333pt;}
.y14_c01127{bottom:704.573333pt;}
.y13_c01127{bottom:724.573333pt;}
.y12_c01127{bottom:744.413333pt;}
.y11_c01127{bottom:764.293333pt;}
.y10_c01127{bottom:784.133333pt;}
.yf_c01127{bottom:803.973333pt;}
.ye_c01127{bottom:823.813333pt;}
.yd_c01127{bottom:843.653333pt;}
.yc_c01127{bottom:863.493333pt;}
.yb_c01127{bottom:883.333333pt;}
.ya_c01127{bottom:903.173333pt;}
.y9_c01127{bottom:923.173333pt;}
.y8_c01127{bottom:943.013333pt;}
.y7_c01127{bottom:962.853333pt;}
.y6_c01127{bottom:993.413333pt;}
.y5_c01127{bottom:1013.280000pt;}
.y2_c01127{bottom:1043.840000pt;}
.y1_c01127{bottom:1061.920000pt;}
.h8_c01127{height:19.040000pt;}
.h2_c01127{height:42.722500pt;}
.h3_c01127{height:44.648750pt;}
.h6_c01127{height:47.491563pt;}
.h5_c01127{height:47.621250pt;}
.h4_c01127{height:57.375000pt;}
.h7_c01127{height:67.604062pt;}
.h0_c01127{height:1122.560000pt;}
.h1_c01127{height:1122.666667pt;}
.w2_c01127{width:198.106667pt;}
.w0_c01127{width:793.760000pt;}
.w1_c01127{width:794.000000pt;}
.x0_c01127{left:0.000000pt;}
.x1_c01127{left:113.472000pt;}
.x3_c01127{left:134.746667pt;}
.x4_c01127{left:168.040000pt;}
.x2_c01127{left:626.053333pt;}
}





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

.ir_c01128:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01128;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01128;src:url('chunks/assets/font_941f5e2acd9f32e5f5d242ad.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01128;src:url('chunks/assets/font_15445d20592b51368a2b8607.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01128;src:url('chunks/assets/font_02705232c034f0d2d9e40f43.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:1.106934;font-style:normal;font-weight: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_c01128;src:url('chunks/assets/font_6d57dc0de577a79d5306dd4e.woff2')format("woff");}.ff5_c01128{font-family:ff5_c01128;line-height:0.991699;font-style:normal;font-weight: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_c01128;src:url('chunks/assets/font_5c92d01db848da8e6f943f74.woff2')format("woff");}.ff6_c01128{font-family:ff6_c01128;line-height:1.575000;font-style:normal;font-weight: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_c01128;src:url('chunks/assets/font_001bd46580571dcc4f31517a.woff2')format("woff");}.ff7_c01128{font-family:ff7_c01128;line-height:1.181152;font-style:normal;font-weight: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_c01128;src:url('chunks/assets/font_c1dacc5b65df0c4ac037558f.woff2')format("woff");}.ff8_c01128{font-family:ff8_c01128;line-height:1.104492;font-style:normal;font-weight: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_c01128;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff9_c01128{font-family:ff9_c01128;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01128{vertical-align:0.000000px;}
.v1_c01128{vertical-align:23.760000px;}
.ls5_c01128{letter-spacing:-0.272400px;}
.ls2_c01128{letter-spacing:-0.181200px;}
.ls1_c01128{letter-spacing:0.000000px;}
.ls3_c01128{letter-spacing:0.144000px;}
.ls4_c01128{letter-spacing:0.150000px;}
.ls0_c01128{letter-spacing:0.174240px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01128{word-spacing:-21.035520px;}
.ws1_c01128{word-spacing:-20.016000px;}
.ws2_c01128{word-spacing:-13.229520px;}
.ws3_c01128{word-spacing:0.000000px;}
._b_c01128{margin-left:-5.544000px;}
._a_c01128{margin-left:-4.464000px;}
._1_c01128{margin-left:-3.096000px;}
._0_c01128{margin-left:-1.390841px;}
._2_c01128{width:1.001048px;}
._c_c01128{width:2.170817px;}
._d_c01128{width:3.384000px;}
._7_c01128{width:4.406547px;}
._9_c01128{width:6.120000px;}
._8_c01128{width:7.200000px;}
._4_c01128{width:8.568000px;}
._3_c01128{width:9.576000px;}
._6_c01128{width:12.888000px;}
._5_c01128{width:13.968000px;}
._e_c01128{width:28.944000px;}
.fc1_c01128{color:transparent;}
.fc0_c01128{color:rgb(0,0,0);}
.fs5_c01128{font-size:38.880000px;}
.fs3_c01128{font-size:48.240000px;}
.fs6_c01128{font-size:59.760000px;}
.fs0_c01128{font-size:66.240000px;}
.fs2_c01128{font-size:72.000000px;}
.fs4_c01128{font-size:77.760000px;}
.fs1_c01128{font-size:84.240000px;}
.y3a_c01128{bottom:-1.800000px;}
.y0_c01128{bottom:0.000000px;}
.y2f_c01128{bottom:4.140000px;}
.y35_c01128{bottom:4.170000px;}
.y38_c01128{bottom:8.835000px;}
.y2e_c01128{bottom:24.825000px;}
.y2c_c01128{bottom:24.840000px;}
.y34_c01128{bottom:24.870000px;}
.y37_c01128{bottom:26.295000px;}
.y4_c01128{bottom:57.636000px;}
.y3_c01128{bottom:77.796000px;}
.y2a_c01128{bottom:109.296000px;}
.y29_c01128{bottom:127.476000px;}
.y28_c01128{bottom:146.556000px;}
.y27_c01128{bottom:151.770000px;}
.y26_c01128{bottom:164.910000px;}
.y25_c01128{bottom:183.990000px;}
.y24_c01128{bottom:189.210000px;}
.y23_c01128{bottom:203.790000px;}
.y22_c01128{bottom:242.130000px;}
.y21_c01128{bottom:264.270000px;}
.y20_c01128{bottom:286.635000px;}
.y1f_c01128{bottom:308.955000px;}
.y1e_c01128{bottom:331.275000px;}
.y1d_c01128{bottom:353.775000px;}
.y1c_c01128{bottom:376.095000px;}
.y1b_c01128{bottom:398.415000px;}
.y1a_c01128{bottom:420.735000px;}
.y19_c01128{bottom:443.055000px;}
.y18_c01128{bottom:477.615000px;}
.y36_c01128{bottom:478.320000px;}
.y17_c01128{bottom:511.815000px;}
.y16_c01128{bottom:546.195000px;}
.y33_c01128{bottom:562.755000px;}
.y32_c01128{bottom:604.185000px;}
.y31_c01128{bottom:645.585000px;}
.y39_c01128{bottom:652.245000px;}
.y30_c01128{bottom:686.985000px;}
.y2b_c01128{bottom:728.385000px;}
.y2d_c01128{bottom:728.400000px;}
.y15_c01128{bottom:773.745000px;}
.y14_c01128{bottom:796.065000px;}
.y13_c01128{bottom:834.225000px;}
.y12_c01128{bottom:870.450000px;}
.y11_c01128{bottom:892.590000px;}
.y10_c01128{bottom:914.910000px;}
.yf_c01128{bottom:937.230000px;}
.ye_c01128{bottom:959.550000px;}
.yc_c01128{bottom:981.870000px;}
.yd_c01128{bottom:987.810000px;}
.yb_c01128{bottom:1004.370000px;}
.ya_c01128{bottom:1026.690000px;}
.y9_c01128{bottom:1049.010000px;}
.y8_c01128{bottom:1071.330000px;}
.y7_c01128{bottom:1093.650000px;}
.y6_c01128{bottom:1115.070000px;}
.y5_c01128{bottom:1137.420000px;}
.y2_c01128{bottom:1174.320000px;}
.y1_c01128{bottom:1194.660000px;}
.h11_c01128{height:11.880000px;}
.h9_c01128{height:29.482734px;}
.hf_c01128{height:39.960000px;}
.hc_c01128{height:41.395500px;}
.hb_c01128{height:41.400000px;}
.hd_c01128{height:41.430000px;}
.h7_c01128{height:43.246406px;}
.h2_c01128{height:48.062812px;}
.h3_c01128{height:50.229844px;}
.h10_c01128{height:53.428008px;}
.h12_c01128{height:53.953242px;}
.h8_c01128{height:56.497500px;}
.ha_c01128{height:63.763920px;}
.h5_c01128{height:64.546875px;}
.he_c01128{height:67.006406px;}
.h4_c01128{height:87.859687px;}
.h6_c01128{height:1262.865000px;}
.h0_c01128{height:1262.880000px;}
.h1_c01128{height:1263.000000px;}
.w3_c01128{width:21.225000px;}
.w7_c01128{width:21.600000px;}
.w5_c01128{width:170.295000px;}
.w4_c01128{width:170.310000px;}
.w6_c01128{width:427.755000px;}
.w2_c01128{width:892.957500px;}
.w0_c01128{width:892.980000px;}
.w1_c01128{width:893.250000px;}
.x0_c01128{left:0.000000px;}
.xb_c01128{left:8.085000px;}
.xe_c01128{left:10.800000px;}
.x2_c01128{left:127.656000px;}
.xa_c01128{left:142.236000px;}
.x1_c01128{left:169.950000px;}
.x9_c01128{left:343.695000px;}
.xd_c01128{left:460.695000px;}
.x4_c01128{left:552.322500px;}
.x6_c01128{left:565.125000px;}
.x8_c01128{left:566.385000px;}
.x5_c01128{left:572.325000px;}
.xc_c01128{left:594.120000px;}
.x7_c01128{left:595.545000px;}
.x3_c01128{left:740.490000px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.v1_c01128{vertical-align:21.120000pt;}
.ls5_c01128{letter-spacing:-0.242133pt;}
.ls2_c01128{letter-spacing:-0.161067pt;}
.ls1_c01128{letter-spacing:0.000000pt;}
.ls3_c01128{letter-spacing:0.128000pt;}
.ls4_c01128{letter-spacing:0.133333pt;}
.ls0_c01128{letter-spacing:0.154880pt;}
.ws0_c01128{word-spacing:-18.698240pt;}
.ws1_c01128{word-spacing:-17.792000pt;}
.ws2_c01128{word-spacing:-11.759573pt;}
.ws3_c01128{word-spacing:0.000000pt;}
._b_c01128{margin-left:-4.928000pt;}
._a_c01128{margin-left:-3.968000pt;}
._1_c01128{margin-left:-2.752000pt;}
._0_c01128{margin-left:-1.236303pt;}
._2_c01128{width:0.889820pt;}
._c_c01128{width:1.929615pt;}
._d_c01128{width:3.008000pt;}
._7_c01128{width:3.916931pt;}
._9_c01128{width:5.440000pt;}
._8_c01128{width:6.400000pt;}
._4_c01128{width:7.616000pt;}
._3_c01128{width:8.512000pt;}
._6_c01128{width:11.456000pt;}
._5_c01128{width:12.416000pt;}
._e_c01128{width:25.728000pt;}
.fs5_c01128{font-size:34.560000pt;}
.fs3_c01128{font-size:42.880000pt;}
.fs6_c01128{font-size:53.120000pt;}
.fs0_c01128{font-size:58.880000pt;}
.fs2_c01128{font-size:64.000000pt;}
.fs4_c01128{font-size:69.120000pt;}
.fs1_c01128{font-size:74.880000pt;}
.y3a_c01128{bottom:-1.600000pt;}
.y0_c01128{bottom:0.000000pt;}
.y2f_c01128{bottom:3.680000pt;}
.y35_c01128{bottom:3.706667pt;}
.y38_c01128{bottom:7.853333pt;}
.y2e_c01128{bottom:22.066667pt;}
.y2c_c01128{bottom:22.080000pt;}
.y34_c01128{bottom:22.106667pt;}
.y37_c01128{bottom:23.373333pt;}
.y4_c01128{bottom:51.232000pt;}
.y3_c01128{bottom:69.152000pt;}
.y2a_c01128{bottom:97.152000pt;}
.y29_c01128{bottom:113.312000pt;}
.y28_c01128{bottom:130.272000pt;}
.y27_c01128{bottom:134.906667pt;}
.y26_c01128{bottom:146.586667pt;}
.y25_c01128{bottom:163.546667pt;}
.y24_c01128{bottom:168.186667pt;}
.y23_c01128{bottom:181.146667pt;}
.y22_c01128{bottom:215.226667pt;}
.y21_c01128{bottom:234.906667pt;}
.y20_c01128{bottom:254.786667pt;}
.y1f_c01128{bottom:274.626667pt;}
.y1e_c01128{bottom:294.466667pt;}
.y1d_c01128{bottom:314.466667pt;}
.y1c_c01128{bottom:334.306667pt;}
.y1b_c01128{bottom:354.146667pt;}
.y1a_c01128{bottom:373.986667pt;}
.y19_c01128{bottom:393.826667pt;}
.y18_c01128{bottom:424.546667pt;}
.y36_c01128{bottom:425.173333pt;}
.y17_c01128{bottom:454.946667pt;}
.y16_c01128{bottom:485.506667pt;}
.y33_c01128{bottom:500.226667pt;}
.y32_c01128{bottom:537.053333pt;}
.y31_c01128{bottom:573.853333pt;}
.y39_c01128{bottom:579.773333pt;}
.y30_c01128{bottom:610.653333pt;}
.y2b_c01128{bottom:647.453333pt;}
.y2d_c01128{bottom:647.466667pt;}
.y15_c01128{bottom:687.773333pt;}
.y14_c01128{bottom:707.613333pt;}
.y13_c01128{bottom:741.533333pt;}
.y12_c01128{bottom:773.733333pt;}
.y11_c01128{bottom:793.413333pt;}
.y10_c01128{bottom:813.253333pt;}
.yf_c01128{bottom:833.093333pt;}
.ye_c01128{bottom:852.933333pt;}
.yc_c01128{bottom:872.773333pt;}
.yd_c01128{bottom:878.053333pt;}
.yb_c01128{bottom:892.773333pt;}
.ya_c01128{bottom:912.613333pt;}
.y9_c01128{bottom:932.453333pt;}
.y8_c01128{bottom:952.293333pt;}
.y7_c01128{bottom:972.133333pt;}
.y6_c01128{bottom:991.173333pt;}
.y5_c01128{bottom:1011.040000pt;}
.y2_c01128{bottom:1043.840000pt;}
.y1_c01128{bottom:1061.920000pt;}
.h11_c01128{height:10.560000pt;}
.h9_c01128{height:26.206875pt;}
.hf_c01128{height:35.520000pt;}
.hc_c01128{height:36.796000pt;}
.hb_c01128{height:36.800000pt;}
.hd_c01128{height:36.826667pt;}
.h7_c01128{height:38.441250pt;}
.h2_c01128{height:42.722500pt;}
.h3_c01128{height:44.648750pt;}
.h10_c01128{height:47.491563pt;}
.h12_c01128{height:47.958438pt;}
.h8_c01128{height:50.220000pt;}
.ha_c01128{height:56.679040pt;}
.h5_c01128{height:57.375000pt;}
.he_c01128{height:59.561250pt;}
.h4_c01128{height:78.097500pt;}
.h6_c01128{height:1122.546667pt;}
.h0_c01128{height:1122.560000pt;}
.h1_c01128{height:1122.666667pt;}
.w3_c01128{width:18.866667pt;}
.w7_c01128{width:19.200000pt;}
.w5_c01128{width:151.373333pt;}
.w4_c01128{width:151.386667pt;}
.w6_c01128{width:380.226667pt;}
.w2_c01128{width:793.740000pt;}
.w0_c01128{width:793.760000pt;}
.w1_c01128{width:794.000000pt;}
.x0_c01128{left:0.000000pt;}
.xb_c01128{left:7.186667pt;}
.xe_c01128{left:9.600000pt;}
.x2_c01128{left:113.472000pt;}
.xa_c01128{left:126.432000pt;}
.x1_c01128{left:151.066667pt;}
.x9_c01128{left:305.506667pt;}
.xd_c01128{left:409.506667pt;}
.x4_c01128{left:490.953333pt;}
.x6_c01128{left:502.333333pt;}
.x8_c01128{left:503.453333pt;}
.x5_c01128{left:508.733333pt;}
.xc_c01128{left:528.106667pt;}
.x7_c01128{left:529.373333pt;}
.x3_c01128{left:658.213333pt;}
}





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

.ir_c01129:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01129;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01129;src:url('chunks/assets/font_d499db00dc30a524981d5812.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01129;src:url('chunks/assets/font_a5dcca26cebb1cbb46d050ff.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01129;src:url('chunks/assets/font_097bc051e8b2c70846aed19f.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01129{vertical-align:0.000000px;}
.ls2_c01129{letter-spacing:0.000000px;}
.ls1_c01129{letter-spacing:0.288000px;}
.ls0_c01129{letter-spacing:0.305280px;}
.sc__c01129{text-shadow:none;}
.sc0_c01129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01129{-webkit-text-stroke:0px transparent;}
.sc0_c01129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01129{word-spacing:-20.304000px;}
.ws1_c01129{word-spacing:-20.016000px;}
.ws2_c01129{word-spacing:0.000000px;}
._0_c01129{margin-left:-1.258891px;}
._4_c01129{width:1.152000px;}
._6_c01129{width:2.903976px;}
._5_c01129{width:4.800024px;}
._9_c01129{width:5.962867px;}
._8_c01129{width:6.984000px;}
._7_c01129{width:8.472024px;}
._2_c01129{width:9.648000px;}
._1_c01129{width:10.800000px;}
._3_c01129{width:11.964024px;}
._e_c01129{width:13.968000px;}
._10_c01129{width:21.384000px;}
._f_c01129{width:22.464000px;}
._d_c01129{width:32.746891px;}
._c_c01129{width:34.104000px;}
._a_c01129{width:36.072000px;}
._b_c01129{width:40.176000px;}
.fc0_c01129{color:rgb(0,0,0);}
.fs2_c01129{font-size:59.760000px;}
.fs0_c01129{font-size:66.240000px;}
.fs1_c01129{font-size:72.000000px;}
.y0_c01129{bottom:0.000000px;}
.y26_c01129{bottom:3.420000px;}
.y24_c01129{bottom:5.565000px;}
.y23_c01129{bottom:22.845000px;}
.y4_c01129{bottom:57.636000px;}
.y3_c01129{bottom:77.796000px;}
.y21_c01129{bottom:162.390000px;}
.y22_c01129{bottom:170.505000px;}
.y20_c01129{bottom:184.530000px;}
.y1f_c01129{bottom:206.850000px;}
.y1e_c01129{bottom:229.170000px;}
.y1d_c01129{bottom:251.490000px;}
.y1c_c01129{bottom:273.810000px;}
.y1b_c01129{bottom:296.355000px;}
.y1a_c01129{bottom:318.675000px;}
.y19_c01129{bottom:340.995000px;}
.y18_c01129{bottom:363.315000px;}
.y17_c01129{bottom:397.875000px;}
.y16_c01129{bottom:420.015000px;}
.y15_c01129{bottom:442.335000px;}
.y14_c01129{bottom:464.835000px;}
.y13_c01129{bottom:486.975000px;}
.y12_c01129{bottom:509.295000px;}
.y11_c01129{bottom:531.615000px;}
.y10_c01129{bottom:553.935000px;}
.yf_c01129{bottom:576.285000px;}
.ye_c01129{bottom:598.605000px;}
.yd_c01129{bottom:621.105000px;}
.yc_c01129{bottom:656.205000px;}
.y25_c01129{bottom:663.585000px;}
.yb_c01129{bottom:683.745000px;}
.ya_c01129{bottom:1028.310000px;}
.y9_c01129{bottom:1050.450000px;}
.y8_c01129{bottom:1072.770000px;}
.y7_c01129{bottom:1095.270000px;}
.y6_c01129{bottom:1117.410000px;}
.y5_c01129{bottom:1139.940000px;}
.y2_c01129{bottom:1174.320000px;}
.y1_c01129{bottom:1194.660000px;}
.h7_c01129{height:17.280000px;}
.h6_c01129{height:36.540000px;}
.h2_c01129{height:48.062812px;}
.h3_c01129{height:50.229844px;}
.h5_c01129{height:53.428008px;}
.h4_c01129{height:64.546875px;}
.h0_c01129{height:1262.880000px;}
.h1_c01129{height:1263.000000px;}
.w2_c01129{width:208.470000px;}
.w3_c01129{width:256.530000px;}
.w0_c01129{width:892.980000px;}
.w1_c01129{width:893.250000px;}
.x0_c01129{left:0.000000px;}
.x1_c01129{left:127.656000px;}
.x4_c01129{left:202.725000px;}
.x3_c01129{left:554.160000px;}
.x2_c01129{left:690.630000px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls2_c01129{letter-spacing:0.000000pt;}
.ls1_c01129{letter-spacing:0.256000pt;}
.ls0_c01129{letter-spacing:0.271360pt;}
.ws0_c01129{word-spacing:-18.048000pt;}
.ws1_c01129{word-spacing:-17.792000pt;}
.ws2_c01129{word-spacing:0.000000pt;}
._0_c01129{margin-left:-1.119014pt;}
._4_c01129{width:1.024000pt;}
._6_c01129{width:2.581312pt;}
._5_c01129{width:4.266688pt;}
._9_c01129{width:5.300326pt;}
._8_c01129{width:6.208000pt;}
._7_c01129{width:7.530688pt;}
._2_c01129{width:8.576000pt;}
._1_c01129{width:9.600000pt;}
._3_c01129{width:10.634688pt;}
._e_c01129{width:12.416000pt;}
._10_c01129{width:19.008000pt;}
._f_c01129{width:19.968000pt;}
._d_c01129{width:29.108348pt;}
._c_c01129{width:30.314667pt;}
._a_c01129{width:32.064000pt;}
._b_c01129{width:35.712000pt;}
.fs2_c01129{font-size:53.120000pt;}
.fs0_c01129{font-size:58.880000pt;}
.fs1_c01129{font-size:64.000000pt;}
.y0_c01129{bottom:0.000000pt;}
.y26_c01129{bottom:3.040000pt;}
.y24_c01129{bottom:4.946667pt;}
.y23_c01129{bottom:20.306667pt;}
.y4_c01129{bottom:51.232000pt;}
.y3_c01129{bottom:69.152000pt;}
.y21_c01129{bottom:144.346667pt;}
.y22_c01129{bottom:151.560000pt;}
.y20_c01129{bottom:164.026667pt;}
.y1f_c01129{bottom:183.866667pt;}
.y1e_c01129{bottom:203.706667pt;}
.y1d_c01129{bottom:223.546667pt;}
.y1c_c01129{bottom:243.386667pt;}
.y1b_c01129{bottom:263.426667pt;}
.y1a_c01129{bottom:283.266667pt;}
.y19_c01129{bottom:303.106667pt;}
.y18_c01129{bottom:322.946667pt;}
.y17_c01129{bottom:353.666667pt;}
.y16_c01129{bottom:373.346667pt;}
.y15_c01129{bottom:393.186667pt;}
.y14_c01129{bottom:413.186667pt;}
.y13_c01129{bottom:432.866667pt;}
.y12_c01129{bottom:452.706667pt;}
.y11_c01129{bottom:472.546667pt;}
.y10_c01129{bottom:492.386667pt;}
.yf_c01129{bottom:512.253333pt;}
.ye_c01129{bottom:532.093333pt;}
.yd_c01129{bottom:552.093333pt;}
.yc_c01129{bottom:583.293333pt;}
.y25_c01129{bottom:589.853333pt;}
.yb_c01129{bottom:607.773333pt;}
.ya_c01129{bottom:914.053333pt;}
.y9_c01129{bottom:933.733333pt;}
.y8_c01129{bottom:953.573333pt;}
.y7_c01129{bottom:973.573333pt;}
.y6_c01129{bottom:993.253333pt;}
.y5_c01129{bottom:1013.280000pt;}
.y2_c01129{bottom:1043.840000pt;}
.y1_c01129{bottom:1061.920000pt;}
.h7_c01129{height:15.360000pt;}
.h6_c01129{height:32.480000pt;}
.h2_c01129{height:42.722500pt;}
.h3_c01129{height:44.648750pt;}
.h5_c01129{height:47.491563pt;}
.h4_c01129{height:57.375000pt;}
.h0_c01129{height:1122.560000pt;}
.h1_c01129{height:1122.666667pt;}
.w2_c01129{width:185.306667pt;}
.w3_c01129{width:228.026667pt;}
.w0_c01129{width:793.760000pt;}
.w1_c01129{width:794.000000pt;}
.x0_c01129{left:0.000000pt;}
.x1_c01129{left:113.472000pt;}
.x4_c01129{left:180.200000pt;}
.x3_c01129{left:492.586667pt;}
.x2_c01129{left:613.893333pt;}
}





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

.ir_c01130:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01130;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01130;src:url('chunks/assets/font_d499db00dc30a524981d5812.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01130;src:url('chunks/assets/font_c2fcb9dc30ac611f31d100bb.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01130;src:url('chunks/assets/font_7bebab0e28563f693d467c73.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:1.104492;font-style:normal;font-weight: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_c01130;src:url('chunks/assets/font_824d011f8a3b3ab5ed068b1c.woff2')format("woff");}.ff5_c01130{font-family:ff5_c01130;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01130{vertical-align:0.000000px;}
.ls3_c01130{letter-spacing:-0.720000px;}
.ls1_c01130{letter-spacing:-0.576000px;}
.ls2_c01130{letter-spacing:-0.432000px;}
.ls0_c01130{letter-spacing:0.000000px;}
.sc__c01130{text-shadow:none;}
.sc0_c01130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01130{-webkit-text-stroke:0px transparent;}
.sc0_c01130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01130{word-spacing:0.000000px;}
._8_c01130{margin-left:-4.153159px;}
._9_c01130{margin-left:-2.690317px;}
._0_c01130{margin-left:-1.390841px;}
._3_c01130{width:1.789183px;}
._4_c01130{width:2.893332px;}
._c_c01130{width:3.960000px;}
._b_c01130{width:5.758865px;}
._a_c01130{width:6.984000px;}
._7_c01130{width:8.064000px;}
._5_c01130{width:9.216000px;}
._6_c01130{width:10.848000px;}
._e_c01130{width:12.960000px;}
._d_c01130{width:14.376024px;}
._2_c01130{width:15.862841px;}
._1_c01130{width:17.208000px;}
.fc0_c01130{color:rgb(0,0,0);}
.fs2_c01130{font-size:59.760000px;}
.fs0_c01130{font-size:66.240000px;}
.fs1_c01130{font-size:72.000000px;}
.y0_c01130{bottom:0.000000px;}
.y1c_c01130{bottom:14.775000px;}
.y4_c01130{bottom:57.636000px;}
.y3_c01130{bottom:77.796000px;}
.y1b_c01130{bottom:285.540000px;}
.y1a_c01130{bottom:288.615000px;}
.y19_c01130{bottom:318.855000px;}
.y18_c01130{bottom:679.605000px;}
.y17_c01130{bottom:701.745000px;}
.y16_c01130{bottom:724.065000px;}
.y15_c01130{bottom:746.385000px;}
.y14_c01130{bottom:768.705000px;}
.y13_c01130{bottom:791.025000px;}
.y12_c01130{bottom:825.585000px;}
.y11_c01130{bottom:860.010000px;}
.y10_c01130{bottom:894.390000px;}
.yf_c01130{bottom:916.530000px;}
.ye_c01130{bottom:938.850000px;}
.yd_c01130{bottom:961.350000px;}
.yc_c01130{bottom:983.490000px;}
.yb_c01130{bottom:1005.810000px;}
.ya_c01130{bottom:1028.130000px;}
.y9_c01130{bottom:1050.630000px;}
.y8_c01130{bottom:1072.770000px;}
.y7_c01130{bottom:1095.270000px;}
.y6_c01130{bottom:1117.590000px;}
.y5_c01130{bottom:1139.940000px;}
.y2_c01130{bottom:1174.320000px;}
.y1_c01130{bottom:1194.660000px;}
.h6_c01130{height:28.620000px;}
.h2_c01130{height:48.062812px;}
.h3_c01130{height:50.229844px;}
.h7_c01130{height:53.428008px;}
.h4_c01130{height:64.546875px;}
.h5_c01130{height:65.003906px;}
.h0_c01130{height:1262.880000px;}
.h1_c01130{height:1263.000000px;}
.w2_c01130{width:364.575000px;}
.w0_c01130{width:892.980000px;}
.w1_c01130{width:893.250000px;}
.x0_c01130{left:0.000000px;}
.x2_c01130{left:127.656000px;}
.x1_c01130{left:169.950000px;}
.x5_c01130{left:188.865000px;}
.x4_c01130{left:703.050000px;}
.x3_c01130{left:740.490000px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls3_c01130{letter-spacing:-0.640000pt;}
.ls1_c01130{letter-spacing:-0.512000pt;}
.ls2_c01130{letter-spacing:-0.384000pt;}
.ls0_c01130{letter-spacing:0.000000pt;}
.ws0_c01130{word-spacing:0.000000pt;}
._8_c01130{margin-left:-3.691697pt;}
._9_c01130{margin-left:-2.391393pt;}
._0_c01130{margin-left:-1.236303pt;}
._3_c01130{width:1.590385pt;}
._4_c01130{width:2.571850pt;}
._c_c01130{width:3.520000pt;}
._b_c01130{width:5.118991pt;}
._a_c01130{width:6.208000pt;}
._7_c01130{width:7.168000pt;}
._5_c01130{width:8.192000pt;}
._6_c01130{width:9.642667pt;}
._e_c01130{width:11.520000pt;}
._d_c01130{width:12.778688pt;}
._2_c01130{width:14.100303pt;}
._1_c01130{width:15.296000pt;}
.fs2_c01130{font-size:53.120000pt;}
.fs0_c01130{font-size:58.880000pt;}
.fs1_c01130{font-size:64.000000pt;}
.y0_c01130{bottom:0.000000pt;}
.y1c_c01130{bottom:13.133333pt;}
.y4_c01130{bottom:51.232000pt;}
.y3_c01130{bottom:69.152000pt;}
.y1b_c01130{bottom:253.813333pt;}
.y1a_c01130{bottom:256.546667pt;}
.y19_c01130{bottom:283.426667pt;}
.y18_c01130{bottom:604.093333pt;}
.y17_c01130{bottom:623.773333pt;}
.y16_c01130{bottom:643.613333pt;}
.y15_c01130{bottom:663.453333pt;}
.y14_c01130{bottom:683.293333pt;}
.y13_c01130{bottom:703.133333pt;}
.y12_c01130{bottom:733.853333pt;}
.y11_c01130{bottom:764.453333pt;}
.y10_c01130{bottom:795.013333pt;}
.yf_c01130{bottom:814.693333pt;}
.ye_c01130{bottom:834.533333pt;}
.yd_c01130{bottom:854.533333pt;}
.yc_c01130{bottom:874.213333pt;}
.yb_c01130{bottom:894.053333pt;}
.ya_c01130{bottom:913.893333pt;}
.y9_c01130{bottom:933.893333pt;}
.y8_c01130{bottom:953.573333pt;}
.y7_c01130{bottom:973.573333pt;}
.y6_c01130{bottom:993.413333pt;}
.y5_c01130{bottom:1013.280000pt;}
.y2_c01130{bottom:1043.840000pt;}
.y1_c01130{bottom:1061.920000pt;}
.h6_c01130{height:25.440000pt;}
.h2_c01130{height:42.722500pt;}
.h3_c01130{height:44.648750pt;}
.h7_c01130{height:47.491563pt;}
.h4_c01130{height:57.375000pt;}
.h5_c01130{height:57.781250pt;}
.h0_c01130{height:1122.560000pt;}
.h1_c01130{height:1122.666667pt;}
.w2_c01130{width:324.066667pt;}
.w0_c01130{width:793.760000pt;}
.w1_c01130{width:794.000000pt;}
.x0_c01130{left:0.000000pt;}
.x2_c01130{left:113.472000pt;}
.x1_c01130{left:151.066667pt;}
.x5_c01130{left:167.880000pt;}
.x4_c01130{left:624.933333pt;}
.x3_c01130{left:658.213333pt;}
}





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

.ir_c01131:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01131;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01131;src:url('chunks/assets/font_81d7577501a42b9ea3531a13.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01131;src:url('chunks/assets/font_05b4182bdd3a4dfc26dfbee6.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01131;src:url('chunks/assets/font_c229dded48cdc0a0837ee11b.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01131{vertical-align:0.000000px;}
.ls2_c01131{letter-spacing:-1.440000px;}
.ls3_c01131{letter-spacing:-0.576000px;}
.ls1_c01131{letter-spacing:0.000000px;}
.ls0_c01131{letter-spacing:0.288000px;}
.sc__c01131{text-shadow:none;}
.sc0_c01131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01131{-webkit-text-stroke:0px transparent;}
.sc0_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01131{word-spacing:-20.304000px;}
.ws1_c01131{word-spacing:0.000000px;}
._9_c01131{margin-left:-4.392000px;}
._8_c01131{margin-left:-3.312000px;}
._0_c01131{margin-left:-1.258891px;}
._2_c01131{width:1.365782px;}
._1_c01131{width:2.592000px;}
._5_c01131{width:3.997109px;}
._3_c01131{width:5.256000px;}
._4_c01131{width:6.705806px;}
._a_c01131{width:7.982194px;}
._e_c01131{width:9.432000px;}
._d_c01131{width:10.656000px;}
._c_c01131{width:11.664000px;}
._b_c01131{width:12.672000px;}
._7_c01131{width:17.815565px;}
._6_c01131{width:19.008000px;}
.fc0_c01131{color:rgb(0,0,0);}
.fs2_c01131{font-size:59.760000px;}
.fs0_c01131{font-size:66.240000px;}
.fs1_c01131{font-size:72.000000px;}
.y0_c01131{bottom:0.000000px;}
.y22_c01131{bottom:2.535000px;}
.y24_c01131{bottom:11.175000px;}
.y21_c01131{bottom:19.995000px;}
.y4_c01131{bottom:57.636000px;}
.y3_c01131{bottom:77.796000px;}
.y1f_c01131{bottom:147.636000px;}
.y1e_c01131{bottom:169.950000px;}
.y1d_c01131{bottom:204.510000px;}
.y1c_c01131{bottom:226.650000px;}
.y1b_c01131{bottom:249.150000px;}
.y1a_c01131{bottom:271.290000px;}
.y19_c01131{bottom:293.655000px;}
.y18_c01131{bottom:328.215000px;}
.y23_c01131{bottom:332.520000px;}
.y17_c01131{bottom:358.635000px;}
.y16_c01131{bottom:700.305000px;}
.y15_c01131{bottom:722.445000px;}
.y14_c01131{bottom:744.765000px;}
.y13_c01131{bottom:767.085000px;}
.y12_c01131{bottom:789.405000px;}
.y11_c01131{bottom:811.725000px;}
.y10_c01131{bottom:846.285000px;}
.y20_c01131{bottom:878.895000px;}
.yf_c01131{bottom:880.710000px;}
.ye_c01131{bottom:914.910000px;}
.yd_c01131{bottom:949.290000px;}
.yc_c01131{bottom:983.670000px;}
.yb_c01131{bottom:1005.810000px;}
.ya_c01131{bottom:1028.130000px;}
.y9_c01131{bottom:1050.450000px;}
.y8_c01131{bottom:1072.770000px;}
.y7_c01131{bottom:1095.090000px;}
.y6_c01131{bottom:1117.410000px;}
.y5_c01131{bottom:1139.940000px;}
.y2_c01131{bottom:1174.320000px;}
.y1_c01131{bottom:1194.660000px;}
.h7_c01131{height:25.020000px;}
.h5_c01131{height:33.660000px;}
.h2_c01131{height:48.062812px;}
.h3_c01131{height:50.229844px;}
.h6_c01131{height:53.428008px;}
.h4_c01131{height:64.546875px;}
.h0_c01131{height:1262.880000px;}
.h1_c01131{height:1263.000000px;}
.w2_c01131{width:135.000000px;}
.w3_c01131{width:364.575000px;}
.w0_c01131{width:892.980000px;}
.w1_c01131{width:893.250000px;}
.x0_c01131{left:0.000000px;}
.x1_c01131{left:127.656000px;}
.x5_c01131{left:192.825000px;}
.x2_c01131{left:271.470000px;}
.x3_c01131{left:273.810000px;}
.x4_c01131{left:692.970000px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls2_c01131{letter-spacing:-1.280000pt;}
.ls3_c01131{letter-spacing:-0.512000pt;}
.ls1_c01131{letter-spacing:0.000000pt;}
.ls0_c01131{letter-spacing:0.256000pt;}
.ws0_c01131{word-spacing:-18.048000pt;}
.ws1_c01131{word-spacing:0.000000pt;}
._9_c01131{margin-left:-3.904000pt;}
._8_c01131{margin-left:-2.944000pt;}
._0_c01131{margin-left:-1.119014pt;}
._2_c01131{width:1.214029pt;}
._1_c01131{width:2.304000pt;}
._5_c01131{width:3.552986pt;}
._3_c01131{width:4.672000pt;}
._4_c01131{width:5.960717pt;}
._a_c01131{width:7.095283pt;}
._e_c01131{width:8.384000pt;}
._d_c01131{width:9.472000pt;}
._c_c01131{width:10.368000pt;}
._b_c01131{width:11.264000pt;}
._7_c01131{width:15.836058pt;}
._6_c01131{width:16.896000pt;}
.fs2_c01131{font-size:53.120000pt;}
.fs0_c01131{font-size:58.880000pt;}
.fs1_c01131{font-size:64.000000pt;}
.y0_c01131{bottom:0.000000pt;}
.y22_c01131{bottom:2.253333pt;}
.y24_c01131{bottom:9.933333pt;}
.y21_c01131{bottom:17.773333pt;}
.y4_c01131{bottom:51.232000pt;}
.y3_c01131{bottom:69.152000pt;}
.y1f_c01131{bottom:131.232000pt;}
.y1e_c01131{bottom:151.066667pt;}
.y1d_c01131{bottom:181.786667pt;}
.y1c_c01131{bottom:201.466667pt;}
.y1b_c01131{bottom:221.466667pt;}
.y1a_c01131{bottom:241.146667pt;}
.y19_c01131{bottom:261.026667pt;}
.y18_c01131{bottom:291.746667pt;}
.y23_c01131{bottom:295.573333pt;}
.y17_c01131{bottom:318.786667pt;}
.y16_c01131{bottom:622.493333pt;}
.y15_c01131{bottom:642.173333pt;}
.y14_c01131{bottom:662.013333pt;}
.y13_c01131{bottom:681.853333pt;}
.y12_c01131{bottom:701.693333pt;}
.y11_c01131{bottom:721.533333pt;}
.y10_c01131{bottom:752.253333pt;}
.y20_c01131{bottom:781.240000pt;}
.yf_c01131{bottom:782.853333pt;}
.ye_c01131{bottom:813.253333pt;}
.yd_c01131{bottom:843.813333pt;}
.yc_c01131{bottom:874.373333pt;}
.yb_c01131{bottom:894.053333pt;}
.ya_c01131{bottom:913.893333pt;}
.y9_c01131{bottom:933.733333pt;}
.y8_c01131{bottom:953.573333pt;}
.y7_c01131{bottom:973.413333pt;}
.y6_c01131{bottom:993.253333pt;}
.y5_c01131{bottom:1013.280000pt;}
.y2_c01131{bottom:1043.840000pt;}
.y1_c01131{bottom:1061.920000pt;}
.h7_c01131{height:22.240000pt;}
.h5_c01131{height:29.920000pt;}
.h2_c01131{height:42.722500pt;}
.h3_c01131{height:44.648750pt;}
.h6_c01131{height:47.491563pt;}
.h4_c01131{height:57.375000pt;}
.h0_c01131{height:1122.560000pt;}
.h1_c01131{height:1122.666667pt;}
.w2_c01131{width:120.000000pt;}
.w3_c01131{width:324.066667pt;}
.w0_c01131{width:793.760000pt;}
.w1_c01131{width:794.000000pt;}
.x0_c01131{left:0.000000pt;}
.x1_c01131{left:113.472000pt;}
.x5_c01131{left:171.400000pt;}
.x2_c01131{left:241.306667pt;}
.x3_c01131{left:243.386667pt;}
.x4_c01131{left:615.973333pt;}
}





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

.ir_c01132:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01132;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01132;src:url('chunks/assets/font_44c62c8fdcfcac525d9d64f3.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01132;src:url('chunks/assets/font_a82ade94ccf145a0f86c60e6.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01132;src:url('chunks/assets/font_9d26c4862a77f6d9ad6247d5.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01132{vertical-align:0.000000px;}
.ls7_c01132{letter-spacing:-0.720000px;}
.ls6_c01132{letter-spacing:-0.576000px;}
.ls5_c01132{letter-spacing:-0.504000px;}
.ls3_c01132{letter-spacing:-0.432000px;}
.ls4_c01132{letter-spacing:-0.216000px;}
.ls2_c01132{letter-spacing:0.000000px;}
.ls8_c01132{letter-spacing:0.144000px;}
.ls1_c01132{letter-spacing:0.216000px;}
.ls0_c01132{letter-spacing:0.288000px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01132{word-spacing:-20.304000px;}
.ws3_c01132{word-spacing:-20.016000px;}
.ws1_c01132{word-spacing:-19.800000px;}
.ws2_c01132{word-spacing:-19.512000px;}
.ws4_c01132{word-spacing:0.000000px;}
._10_c01132{margin-left:-4.897135px;}
._5_c01132{margin-left:-3.312000px;}
._0_c01132{margin-left:-1.390841px;}
._1_c01132{width:1.200024px;}
._a_c01132{width:2.266721px;}
._2_c01132{width:3.312000px;}
._4_c01132{width:4.342841px;}
._3_c01132{width:5.544000px;}
._6_c01132{width:6.564024px;}
._8_c01132{width:8.136000px;}
._7_c01132{width:9.336024px;}
._13_c01132{width:13.526533px;}
._12_c01132{width:15.057467px;}
._11_c01132{width:16.392024px;}
._f_c01132{width:17.784000px;}
._15_c01132{width:18.828000px;}
._9_c01132{width:23.039976px;}
._14_c01132{width:28.656000px;}
._c_c01132{width:33.264000px;}
._b_c01132{width:34.344000px;}
._e_c01132{width:59.904000px;}
._d_c01132{width:61.200000px;}
.fc0_c01132{color:rgb(0,0,0);}
.fs2_c01132{font-size:59.760000px;}
.fs0_c01132{font-size:66.240000px;}
.fs1_c01132{font-size:72.000000px;}
.y0_c01132{bottom:0.000000px;}
.y2d_c01132{bottom:2.865000px;}
.y31_c01132{bottom:6.840000px;}
.y30_c01132{bottom:24.300000px;}
.y2f_c01132{bottom:41.580000px;}
.y4_c01132{bottom:57.636000px;}
.y3_c01132{bottom:77.796000px;}
.y2b_c01132{bottom:207.030000px;}
.y2c_c01132{bottom:239.265000px;}
.y2a_c01132{bottom:241.410000px;}
.y29_c01132{bottom:275.790000px;}
.y28_c01132{bottom:310.215000px;}
.y27_c01132{bottom:344.415000px;}
.y26_c01132{bottom:366.555000px;}
.y25_c01132{bottom:389.055000px;}
.y24_c01132{bottom:411.375000px;}
.y23_c01132{bottom:433.695000px;}
.y22_c01132{bottom:456.015000px;}
.y21_c01132{bottom:478.335000px;}
.y20_c01132{bottom:500.655000px;}
.y1f_c01132{bottom:535.215000px;}
.y1e_c01132{bottom:557.355000px;}
.y1d_c01132{bottom:579.705000px;}
.y1c_c01132{bottom:602.025000px;}
.y1b_c01132{bottom:624.345000px;}
.y1a_c01132{bottom:646.665000px;}
.y19_c01132{bottom:668.985000px;}
.y18_c01132{bottom:691.305000px;}
.y17_c01132{bottom:713.805000px;}
.y2e_c01132{bottom:746.565000px;}
.y16_c01132{bottom:748.185000px;}
.y15_c01132{bottom:770.325000px;}
.y14_c01132{bottom:792.825000px;}
.y13_c01132{bottom:815.325000px;}
.y12_c01132{bottom:837.465000px;}
.y11_c01132{bottom:859.830000px;}
.y10_c01132{bottom:882.150000px;}
.yf_c01132{bottom:904.470000px;}
.ye_c01132{bottom:926.790000px;}
.yd_c01132{bottom:949.110000px;}
.yc_c01132{bottom:971.430000px;}
.yb_c01132{bottom:993.750000px;}
.ya_c01132{bottom:1016.070000px;}
.y9_c01132{bottom:1038.570000px;}
.y8_c01132{bottom:1060.890000px;}
.y7_c01132{bottom:1083.210000px;}
.y6_c01132{bottom:1117.590000px;}
.y5_c01132{bottom:1139.940000px;}
.y2_c01132{bottom:1174.320000px;}
.y1_c01132{bottom:1194.660000px;}
.h5_c01132{height:16.740000px;}
.h2_c01132{height:48.062812px;}
.h3_c01132{height:50.229844px;}
.h6_c01132{height:53.428008px;}
.h7_c01132{height:55.260000px;}
.h4_c01132{height:64.546875px;}
.h0_c01132{height:1262.880000px;}
.h1_c01132{height:1263.000000px;}
.w3_c01132{width:164.895000px;}
.w2_c01132{width:169.950000px;}
.w0_c01132{width:892.980000px;}
.w1_c01132{width:893.250000px;}
.x0_c01132{left:0.000000px;}
.x2_c01132{left:127.656000px;}
.x1_c01132{left:169.950000px;}
.x4_c01132{left:291.810000px;}
.x5_c01132{left:309.855000px;}
.x6_c01132{left:600.600000px;}
.x3_c01132{left:740.490000px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls7_c01132{letter-spacing:-0.640000pt;}
.ls6_c01132{letter-spacing:-0.512000pt;}
.ls5_c01132{letter-spacing:-0.448000pt;}
.ls3_c01132{letter-spacing:-0.384000pt;}
.ls4_c01132{letter-spacing:-0.192000pt;}
.ls2_c01132{letter-spacing:0.000000pt;}
.ls8_c01132{letter-spacing:0.128000pt;}
.ls1_c01132{letter-spacing:0.192000pt;}
.ls0_c01132{letter-spacing:0.256000pt;}
.ws0_c01132{word-spacing:-18.048000pt;}
.ws3_c01132{word-spacing:-17.792000pt;}
.ws1_c01132{word-spacing:-17.600000pt;}
.ws2_c01132{word-spacing:-17.344000pt;}
.ws4_c01132{word-spacing:0.000000pt;}
._10_c01132{margin-left:-4.353009pt;}
._5_c01132{margin-left:-2.944000pt;}
._0_c01132{margin-left:-1.236303pt;}
._1_c01132{width:1.066688pt;}
._a_c01132{width:2.014863pt;}
._2_c01132{width:2.944000pt;}
._4_c01132{width:3.860303pt;}
._3_c01132{width:4.928000pt;}
._6_c01132{width:5.834688pt;}
._8_c01132{width:7.232000pt;}
._7_c01132{width:8.298688pt;}
._13_c01132{width:12.023585pt;}
._12_c01132{width:13.384415pt;}
._11_c01132{width:14.570688pt;}
._f_c01132{width:15.808000pt;}
._15_c01132{width:16.736000pt;}
._9_c01132{width:20.479979pt;}
._14_c01132{width:25.472000pt;}
._c_c01132{width:29.568000pt;}
._b_c01132{width:30.528000pt;}
._e_c01132{width:53.248000pt;}
._d_c01132{width:54.400000pt;}
.fs2_c01132{font-size:53.120000pt;}
.fs0_c01132{font-size:58.880000pt;}
.fs1_c01132{font-size:64.000000pt;}
.y0_c01132{bottom:0.000000pt;}
.y2d_c01132{bottom:2.546667pt;}
.y31_c01132{bottom:6.080000pt;}
.y30_c01132{bottom:21.600000pt;}
.y2f_c01132{bottom:36.960000pt;}
.y4_c01132{bottom:51.232000pt;}
.y3_c01132{bottom:69.152000pt;}
.y2b_c01132{bottom:184.026667pt;}
.y2c_c01132{bottom:212.680000pt;}
.y2a_c01132{bottom:214.586667pt;}
.y29_c01132{bottom:245.146667pt;}
.y28_c01132{bottom:275.746667pt;}
.y27_c01132{bottom:306.146667pt;}
.y26_c01132{bottom:325.826667pt;}
.y25_c01132{bottom:345.826667pt;}
.y24_c01132{bottom:365.666667pt;}
.y23_c01132{bottom:385.506667pt;}
.y22_c01132{bottom:405.346667pt;}
.y21_c01132{bottom:425.186667pt;}
.y20_c01132{bottom:445.026667pt;}
.y1f_c01132{bottom:475.746667pt;}
.y1e_c01132{bottom:495.426667pt;}
.y1d_c01132{bottom:515.293333pt;}
.y1c_c01132{bottom:535.133333pt;}
.y1b_c01132{bottom:554.973333pt;}
.y1a_c01132{bottom:574.813333pt;}
.y19_c01132{bottom:594.653333pt;}
.y18_c01132{bottom:614.493333pt;}
.y17_c01132{bottom:634.493333pt;}
.y2e_c01132{bottom:663.613333pt;}
.y16_c01132{bottom:665.053333pt;}
.y15_c01132{bottom:684.733333pt;}
.y14_c01132{bottom:704.733333pt;}
.y13_c01132{bottom:724.733333pt;}
.y12_c01132{bottom:744.413333pt;}
.y11_c01132{bottom:764.293333pt;}
.y10_c01132{bottom:784.133333pt;}
.yf_c01132{bottom:803.973333pt;}
.ye_c01132{bottom:823.813333pt;}
.yd_c01132{bottom:843.653333pt;}
.yc_c01132{bottom:863.493333pt;}
.yb_c01132{bottom:883.333333pt;}
.ya_c01132{bottom:903.173333pt;}
.y9_c01132{bottom:923.173333pt;}
.y8_c01132{bottom:943.013333pt;}
.y7_c01132{bottom:962.853333pt;}
.y6_c01132{bottom:993.413333pt;}
.y5_c01132{bottom:1013.280000pt;}
.y2_c01132{bottom:1043.840000pt;}
.y1_c01132{bottom:1061.920000pt;}
.h5_c01132{height:14.880000pt;}
.h2_c01132{height:42.722500pt;}
.h3_c01132{height:44.648750pt;}
.h6_c01132{height:47.491563pt;}
.h7_c01132{height:49.120000pt;}
.h4_c01132{height:57.375000pt;}
.h0_c01132{height:1122.560000pt;}
.h1_c01132{height:1122.666667pt;}
.w3_c01132{width:146.573333pt;}
.w2_c01132{width:151.066667pt;}
.w0_c01132{width:793.760000pt;}
.w1_c01132{width:794.000000pt;}
.x0_c01132{left:0.000000pt;}
.x2_c01132{left:113.472000pt;}
.x1_c01132{left:151.066667pt;}
.x4_c01132{left:259.386667pt;}
.x5_c01132{left:275.426667pt;}
.x6_c01132{left:533.866667pt;}
.x3_c01132{left:658.213333pt;}
}





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

.ir_c01133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01133;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01133;src:url('chunks/assets/font_0ce049baa46dccce84646656.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01133;src:url('chunks/assets/font_bfb3df7bd856378426097b8f.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01133;src:url('chunks/assets/font_ed5987492a42f28546f2b033.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01133;src:url('chunks/assets/font_955b4b49b9af5d23122b1236.woff2')format("woff");}.ff5_c01133{font-family:ff5_c01133;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01133;src:url('chunks/assets/font_8b173d659cd993e023fcd492.woff2')format("woff");}.ff6_c01133{font-family:ff6_c01133;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01133;src:url('chunks/assets/font_6a1d128e778053f5e8da0c92.woff2')format("woff");}.ff7_c01133{font-family:ff7_c01133;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.ls4_c01133{letter-spacing:-0.720000px;}
.ls5_c01133{letter-spacing:-0.432000px;}
.ls8_c01133{letter-spacing:-0.247800px;}
.ls6_c01133{letter-spacing:-0.181200px;}
.ls3_c01133{letter-spacing:0.000000px;}
.ls7_c01133{letter-spacing:0.150000px;}
.ls1_c01133{letter-spacing:0.288000px;}
.ls2_c01133{letter-spacing:19.584000px;}
.ls0_c01133{letter-spacing:31.824000px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01133{word-spacing:-20.304000px;}
.ws0_c01133{word-spacing:-20.016000px;}
.ws1_c01133{word-spacing:-19.584000px;}
.ws3_c01133{word-spacing:0.000000px;}
._2_c01133{margin-left:-5.221109px;}
._1_c01133{margin-left:-3.816000px;}
._11_c01133{margin-left:-2.475302px;}
._0_c01133{margin-left:-1.258891px;}
._5_c01133{width:1.056024px;}
._12_c01133{width:2.268120px;}
._a_c01133{width:3.490891px;}
._3_c01133{width:5.040000px;}
._6_c01133{width:6.323976px;}
._19_c01133{width:7.344000px;}
._c_c01133{width:9.000000px;}
._b_c01133{width:10.440000px;}
._13_c01133{width:12.205109px;}
._f_c01133{width:13.642891px;}
._7_c01133{width:15.624000px;}
._18_c01133{width:16.895952px;}
._4_c01133{width:18.144000px;}
._10_c01133{width:21.144024px;}
._16_c01133{width:30.003278px;}
._15_c01133{width:31.268722px;}
._14_c01133{width:32.379278px;}
._9_c01133{width:37.188000px;}
._8_c01133{width:38.376000px;}
._17_c01133{width:46.224000px;}
._e_c01133{width:48.096000px;}
._d_c01133{width:49.440024px;}
.fc0_c01133{color:rgb(0,0,0);}
.fs3_c01133{font-size:38.880000px;}
.fs2_c01133{font-size:48.240000px;}
.fs4_c01133{font-size:59.760000px;}
.fs0_c01133{font-size:66.240000px;}
.fs1_c01133{font-size:72.000000px;}
.y0_c01133{bottom:0.000000px;}
.y39_c01133{bottom:14.595000px;}
.y38_c01133{bottom:32.055000px;}
.y35_c01133{bottom:32.265000px;}
.y37_c01133{bottom:49.335000px;}
.y34_c01133{bottom:49.545000px;}
.y4_c01133{bottom:57.636000px;}
.y3_c01133{bottom:77.796000px;}
.y32_c01133{bottom:109.296000px;}
.y31_c01133{bottom:127.476000px;}
.y30_c01133{bottom:132.696000px;}
.y2f_c01133{bottom:147.276000px;}
.y2e_c01133{bottom:186.150000px;}
.y2d_c01133{bottom:208.650000px;}
.y2c_c01133{bottom:230.970000px;}
.y2b_c01133{bottom:253.290000px;}
.y2a_c01133{bottom:287.895000px;}
.y29_c01133{bottom:322.095000px;}
.y27_c01133{bottom:356.655000px;}
.y36_c01133{bottom:359.520000px;}
.y28_c01133{bottom:361.875000px;}
.y26_c01133{bottom:378.795000px;}
.y25_c01133{bottom:401.115000px;}
.y24_c01133{bottom:423.435000px;}
.y23_c01133{bottom:445.755000px;}
.y22_c01133{bottom:468.075000px;}
.y21_c01133{bottom:490.395000px;}
.y20_c01133{bottom:512.715000px;}
.y1f_c01133{bottom:535.035000px;}
.y1e_c01133{bottom:557.535000px;}
.y1d_c01133{bottom:579.885000px;}
.y1c_c01133{bottom:602.205000px;}
.y1b_c01133{bottom:624.345000px;}
.y1a_c01133{bottom:646.845000px;}
.y19_c01133{bottom:669.165000px;}
.y18_c01133{bottom:691.305000px;}
.y17_c01133{bottom:725.865000px;}
.y16_c01133{bottom:748.005000px;}
.y15_c01133{bottom:770.325000px;}
.y14_c01133{bottom:792.645000px;}
.y13_c01133{bottom:827.205000px;}
.y33_c01133{bottom:829.545000px;}
.y12_c01133{bottom:849.390000px;}
.y11_c01133{bottom:871.710000px;}
.y10_c01133{bottom:894.210000px;}
.yf_c01133{bottom:916.530000px;}
.ye_c01133{bottom:938.850000px;}
.yd_c01133{bottom:961.170000px;}
.yc_c01133{bottom:983.490000px;}
.yb_c01133{bottom:1005.810000px;}
.ya_c01133{bottom:1028.130000px;}
.y9_c01133{bottom:1050.450000px;}
.y8_c01133{bottom:1072.770000px;}
.y7_c01133{bottom:1095.090000px;}
.y6_c01133{bottom:1117.410000px;}
.y5_c01133{bottom:1139.940000px;}
.y2_c01133{bottom:1174.320000px;}
.y1_c01133{bottom:1194.660000px;}
.h9_c01133{height:41.484960px;}
.h7_c01133{height:43.128633px;}
.h2_c01133{height:48.062812px;}
.h3_c01133{height:50.229844px;}
.hc_c01133{height:53.428008px;}
.hd_c01133{height:63.000000px;}
.hb_c01133{height:63.202500px;}
.ha_c01133{height:63.763920px;}
.h5_c01133{height:64.371094px;}
.h4_c01133{height:64.546875px;}
.h8_c01133{height:65.003906px;}
.h6_c01133{height:1262.865000px;}
.h0_c01133{height:1262.880000px;}
.h1_c01133{height:1263.000000px;}
.w4_c01133{width:238.530000px;}
.w3_c01133{width:241.755000px;}
.w2_c01133{width:892.957500px;}
.w0_c01133{width:892.980000px;}
.w1_c01133{width:893.250000px;}
.x0_c01133{left:0.000000px;}
.x8_c01133{left:125.685000px;}
.x1_c01133{left:127.656000px;}
.x6_c01133{left:146.016000px;}
.x5_c01133{left:343.695000px;}
.x2_c01133{left:377.355000px;}
.x3_c01133{left:409.732500px;}
.x4_c01133{left:429.735000px;}
.x7_c01133{left:522.660000px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls4_c01133{letter-spacing:-0.640000pt;}
.ls5_c01133{letter-spacing:-0.384000pt;}
.ls8_c01133{letter-spacing:-0.220267pt;}
.ls6_c01133{letter-spacing:-0.161067pt;}
.ls3_c01133{letter-spacing:0.000000pt;}
.ls7_c01133{letter-spacing:0.133333pt;}
.ls1_c01133{letter-spacing:0.256000pt;}
.ls2_c01133{letter-spacing:17.408000pt;}
.ls0_c01133{letter-spacing:28.288000pt;}
.ws2_c01133{word-spacing:-18.048000pt;}
.ws0_c01133{word-spacing:-17.792000pt;}
.ws1_c01133{word-spacing:-17.408000pt;}
.ws3_c01133{word-spacing:0.000000pt;}
._2_c01133{margin-left:-4.640986pt;}
._1_c01133{margin-left:-3.392000pt;}
._11_c01133{margin-left:-2.200269pt;}
._0_c01133{margin-left:-1.119014pt;}
._5_c01133{width:0.938688pt;}
._12_c01133{width:2.016107pt;}
._a_c01133{width:3.103014pt;}
._3_c01133{width:4.480000pt;}
._6_c01133{width:5.621312pt;}
._19_c01133{width:6.528000pt;}
._c_c01133{width:8.000000pt;}
._b_c01133{width:9.280000pt;}
._13_c01133{width:10.848986pt;}
._f_c01133{width:12.127014pt;}
._7_c01133{width:13.888000pt;}
._18_c01133{width:15.018624pt;}
._4_c01133{width:16.128000pt;}
._10_c01133{width:18.794688pt;}
._16_c01133{width:26.669581pt;}
._15_c01133{width:27.794419pt;}
._14_c01133{width:28.781581pt;}
._9_c01133{width:33.056000pt;}
._8_c01133{width:34.112000pt;}
._17_c01133{width:41.088000pt;}
._e_c01133{width:42.752000pt;}
._d_c01133{width:43.946688pt;}
.fs3_c01133{font-size:34.560000pt;}
.fs2_c01133{font-size:42.880000pt;}
.fs4_c01133{font-size:53.120000pt;}
.fs0_c01133{font-size:58.880000pt;}
.fs1_c01133{font-size:64.000000pt;}
.y0_c01133{bottom:0.000000pt;}
.y39_c01133{bottom:12.973333pt;}
.y38_c01133{bottom:28.493333pt;}
.y35_c01133{bottom:28.680000pt;}
.y37_c01133{bottom:43.853333pt;}
.y34_c01133{bottom:44.040000pt;}
.y4_c01133{bottom:51.232000pt;}
.y3_c01133{bottom:69.152000pt;}
.y32_c01133{bottom:97.152000pt;}
.y31_c01133{bottom:113.312000pt;}
.y30_c01133{bottom:117.952000pt;}
.y2f_c01133{bottom:130.912000pt;}
.y2e_c01133{bottom:165.466667pt;}
.y2d_c01133{bottom:185.466667pt;}
.y2c_c01133{bottom:205.306667pt;}
.y2b_c01133{bottom:225.146667pt;}
.y2a_c01133{bottom:255.906667pt;}
.y29_c01133{bottom:286.306667pt;}
.y27_c01133{bottom:317.026667pt;}
.y36_c01133{bottom:319.573333pt;}
.y28_c01133{bottom:321.666667pt;}
.y26_c01133{bottom:336.706667pt;}
.y25_c01133{bottom:356.546667pt;}
.y24_c01133{bottom:376.386667pt;}
.y23_c01133{bottom:396.226667pt;}
.y22_c01133{bottom:416.066667pt;}
.y21_c01133{bottom:435.906667pt;}
.y20_c01133{bottom:455.746667pt;}
.y1f_c01133{bottom:475.586667pt;}
.y1e_c01133{bottom:495.586667pt;}
.y1d_c01133{bottom:515.453333pt;}
.y1c_c01133{bottom:535.293333pt;}
.y1b_c01133{bottom:554.973333pt;}
.y1a_c01133{bottom:574.973333pt;}
.y19_c01133{bottom:594.813333pt;}
.y18_c01133{bottom:614.493333pt;}
.y17_c01133{bottom:645.213333pt;}
.y16_c01133{bottom:664.893333pt;}
.y15_c01133{bottom:684.733333pt;}
.y14_c01133{bottom:704.573333pt;}
.y13_c01133{bottom:735.293333pt;}
.y33_c01133{bottom:737.373333pt;}
.y12_c01133{bottom:755.013333pt;}
.y11_c01133{bottom:774.853333pt;}
.y10_c01133{bottom:794.853333pt;}
.yf_c01133{bottom:814.693333pt;}
.ye_c01133{bottom:834.533333pt;}
.yd_c01133{bottom:854.373333pt;}
.yc_c01133{bottom:874.213333pt;}
.yb_c01133{bottom:894.053333pt;}
.ya_c01133{bottom:913.893333pt;}
.y9_c01133{bottom:933.733333pt;}
.y8_c01133{bottom:953.573333pt;}
.y7_c01133{bottom:973.413333pt;}
.y6_c01133{bottom:993.253333pt;}
.y5_c01133{bottom:1013.280000pt;}
.y2_c01133{bottom:1043.840000pt;}
.y1_c01133{bottom:1061.920000pt;}
.h9_c01133{height:36.875520pt;}
.h7_c01133{height:38.336562pt;}
.h2_c01133{height:42.722500pt;}
.h3_c01133{height:44.648750pt;}
.hc_c01133{height:47.491563pt;}
.hd_c01133{height:56.000000pt;}
.hb_c01133{height:56.180000pt;}
.ha_c01133{height:56.679040pt;}
.h5_c01133{height:57.218750pt;}
.h4_c01133{height:57.375000pt;}
.h8_c01133{height:57.781250pt;}
.h6_c01133{height:1122.546667pt;}
.h0_c01133{height:1122.560000pt;}
.h1_c01133{height:1122.666667pt;}
.w4_c01133{width:212.026667pt;}
.w3_c01133{width:214.893333pt;}
.w2_c01133{width:793.740000pt;}
.w0_c01133{width:793.760000pt;}
.w1_c01133{width:794.000000pt;}
.x0_c01133{left:0.000000pt;}
.x8_c01133{left:111.720000pt;}
.x1_c01133{left:113.472000pt;}
.x6_c01133{left:129.792000pt;}
.x5_c01133{left:305.506667pt;}
.x2_c01133{left:335.426667pt;}
.x3_c01133{left:364.206667pt;}
.x4_c01133{left:381.986667pt;}
.x7_c01133{left:464.586667pt;}
}





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

.ir_c01134:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01134;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01134;src:url('chunks/assets/font_6055f4123e4a1fe7cbeb4ce8.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01134;src:url('chunks/assets/font_0c7031dad50191893754f438.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01134;src:url('chunks/assets/font_ca1f0244a43e0612eddcb029.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01134;src:url('chunks/assets/font_c276444be569511b851be06c.woff2')format("woff");}.ff5_c01134{font-family:ff5_c01134;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01134{vertical-align:0.000000px;}
.ls6_c01134{letter-spacing:-1.440000px;}
.ls5_c01134{letter-spacing:-0.576000px;}
.ls4_c01134{letter-spacing:-0.432000px;}
.ls1_c01134{letter-spacing:0.000000px;}
.ls2_c01134{letter-spacing:0.144000px;}
.ls3_c01134{letter-spacing:0.288000px;}
.ls0_c01134{letter-spacing:4.464000px;}
.sc__c01134{text-shadow:none;}
.sc0_c01134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01134{-webkit-text-stroke:0px transparent;}
.sc0_c01134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01134{word-spacing:-20.016000px;}
.ws1_c01134{word-spacing:-19.584000px;}
.ws2_c01134{word-spacing:0.000000px;}
._a_c01134{margin-left:-5.221159px;}
._9_c01134{margin-left:-4.032000px;}
._7_c01134{margin-left:-2.929159px;}
._0_c01134{margin-left:-1.390841px;}
._2_c01134{width:1.239889px;}
._e_c01134{width:2.291976px;}
._4_c01134{width:3.744000px;}
._6_c01134{width:5.108111px;}
._c_c01134{width:6.672024px;}
._f_c01134{width:7.710880px;}
._8_c01134{width:8.928000px;}
._3_c01134{width:10.296000px;}
._1_c01134{width:11.520000px;}
._d_c01134{width:12.672000px;}
._5_c01134{width:13.824000px;}
._10_c01134{width:16.824024px;}
._11_c01134{width:17.914769px;}
._b_c01134{width:1116.300000px;}
.fc0_c01134{color:rgb(0,0,0);}
.fs2_c01134{font-size:59.760000px;}
.fs0_c01134{font-size:66.240000px;}
.fs1_c01134{font-size:72.000000px;}
.y0_c01134{bottom:0.000000px;}
.y21_c01134{bottom:1.980000px;}
.y23_c01134{bottom:5.220000px;}
.y4_c01134{bottom:57.636000px;}
.y3_c01134{bottom:77.796000px;}
.y1f_c01134{bottom:215.490000px;}
.y1e_c01134{bottom:237.630000px;}
.y1d_c01134{bottom:259.950000px;}
.y1c_c01134{bottom:294.375000px;}
.y1b_c01134{bottom:316.695000px;}
.y1a_c01134{bottom:339.015000px;}
.y19_c01134{bottom:361.335000px;}
.y18_c01134{bottom:383.655000px;}
.y17_c01134{bottom:405.975000px;}
.y16_c01134{bottom:428.295000px;}
.y15_c01134{bottom:450.615000px;}
.y14_c01134{bottom:472.935000px;}
.y13_c01134{bottom:495.255000px;}
.y12_c01134{bottom:529.815000px;}
.y11_c01134{bottom:564.195000px;}
.y22_c01134{bottom:572.325000px;}
.y20_c01134{bottom:574.125000px;}
.y10_c01134{bottom:594.465000px;}
.yf_c01134{bottom:916.890000px;}
.ye_c01134{bottom:939.030000px;}
.yd_c01134{bottom:961.350000px;}
.yc_c01134{bottom:983.490000px;}
.yb_c01134{bottom:1005.990000px;}
.ya_c01134{bottom:1028.310000px;}
.y9_c01134{bottom:1050.450000px;}
.y8_c01134{bottom:1072.950000px;}
.y7_c01134{bottom:1095.270000px;}
.y6_c01134{bottom:1117.410000px;}
.y5_c01134{bottom:1139.940000px;}
.y2_c01134{bottom:1174.320000px;}
.y1_c01134{bottom:1194.660000px;}
.h6_c01134{height:15.840000px;}
.h8_c01134{height:19.080000px;}
.h2_c01134{height:48.062812px;}
.h3_c01134{height:50.229844px;}
.h7_c01134{height:53.428008px;}
.h4_c01134{height:64.546875px;}
.h5_c01134{height:65.003906px;}
.h0_c01134{height:1262.880000px;}
.h1_c01134{height:1263.000000px;}
.w2_c01134{width:197.655000px;}
.w3_c01134{width:197.685000px;}
.w0_c01134{width:892.980000px;}
.w1_c01134{width:893.250000px;}
.x0_c01134{left:0.000000px;}
.x2_c01134{left:127.656000px;}
.x6_c01134{left:154.845000px;}
.x1_c01134{left:169.950000px;}
.x5_c01134{left:405.435000px;}
.x4_c01134{left:448.275000px;}
.x7_c01134{left:457.995000px;}
.x3_c01134{left:740.490000px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.ls6_c01134{letter-spacing:-1.280000pt;}
.ls5_c01134{letter-spacing:-0.512000pt;}
.ls4_c01134{letter-spacing:-0.384000pt;}
.ls1_c01134{letter-spacing:0.000000pt;}
.ls2_c01134{letter-spacing:0.128000pt;}
.ls3_c01134{letter-spacing:0.256000pt;}
.ls0_c01134{letter-spacing:3.968000pt;}
.ws0_c01134{word-spacing:-17.792000pt;}
.ws1_c01134{word-spacing:-17.408000pt;}
.ws2_c01134{word-spacing:0.000000pt;}
._a_c01134{margin-left:-4.641030pt;}
._9_c01134{margin-left:-3.584000pt;}
._7_c01134{margin-left:-2.603697pt;}
._0_c01134{margin-left:-1.236303pt;}
._2_c01134{width:1.102124pt;}
._e_c01134{width:2.037312pt;}
._4_c01134{width:3.328000pt;}
._6_c01134{width:4.540543pt;}
._c_c01134{width:5.930688pt;}
._f_c01134{width:6.854116pt;}
._8_c01134{width:7.936000pt;}
._3_c01134{width:9.152000pt;}
._1_c01134{width:10.240000pt;}
._d_c01134{width:11.264000pt;}
._5_c01134{width:12.288000pt;}
._10_c01134{width:14.954688pt;}
._11_c01134{width:15.924239pt;}
._b_c01134{width:992.266667pt;}
.fs2_c01134{font-size:53.120000pt;}
.fs0_c01134{font-size:58.880000pt;}
.fs1_c01134{font-size:64.000000pt;}
.y0_c01134{bottom:0.000000pt;}
.y21_c01134{bottom:1.760000pt;}
.y23_c01134{bottom:4.640000pt;}
.y4_c01134{bottom:51.232000pt;}
.y3_c01134{bottom:69.152000pt;}
.y1f_c01134{bottom:191.546667pt;}
.y1e_c01134{bottom:211.226667pt;}
.y1d_c01134{bottom:231.066667pt;}
.y1c_c01134{bottom:261.666667pt;}
.y1b_c01134{bottom:281.506667pt;}
.y1a_c01134{bottom:301.346667pt;}
.y19_c01134{bottom:321.186667pt;}
.y18_c01134{bottom:341.026667pt;}
.y17_c01134{bottom:360.866667pt;}
.y16_c01134{bottom:380.706667pt;}
.y15_c01134{bottom:400.546667pt;}
.y14_c01134{bottom:420.386667pt;}
.y13_c01134{bottom:440.226667pt;}
.y12_c01134{bottom:470.946667pt;}
.y11_c01134{bottom:501.506667pt;}
.y22_c01134{bottom:508.733333pt;}
.y20_c01134{bottom:510.333333pt;}
.y10_c01134{bottom:528.413333pt;}
.yf_c01134{bottom:815.013333pt;}
.ye_c01134{bottom:834.693333pt;}
.yd_c01134{bottom:854.533333pt;}
.yc_c01134{bottom:874.213333pt;}
.yb_c01134{bottom:894.213333pt;}
.ya_c01134{bottom:914.053333pt;}
.y9_c01134{bottom:933.733333pt;}
.y8_c01134{bottom:953.733333pt;}
.y7_c01134{bottom:973.573333pt;}
.y6_c01134{bottom:993.253333pt;}
.y5_c01134{bottom:1013.280000pt;}
.y2_c01134{bottom:1043.840000pt;}
.y1_c01134{bottom:1061.920000pt;}
.h6_c01134{height:14.080000pt;}
.h8_c01134{height:16.960000pt;}
.h2_c01134{height:42.722500pt;}
.h3_c01134{height:44.648750pt;}
.h7_c01134{height:47.491563pt;}
.h4_c01134{height:57.375000pt;}
.h5_c01134{height:57.781250pt;}
.h0_c01134{height:1122.560000pt;}
.h1_c01134{height:1122.666667pt;}
.w2_c01134{width:175.693333pt;}
.w3_c01134{width:175.720000pt;}
.w0_c01134{width:793.760000pt;}
.w1_c01134{width:794.000000pt;}
.x0_c01134{left:0.000000pt;}
.x2_c01134{left:113.472000pt;}
.x6_c01134{left:137.640000pt;}
.x1_c01134{left:151.066667pt;}
.x5_c01134{left:360.386667pt;}
.x4_c01134{left:398.466667pt;}
.x7_c01134{left:407.106667pt;}
.x3_c01134{left:658.213333pt;}
}





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

.ir_c01135:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01135;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01135;src:url('chunks/assets/font_9d43df2573c3aab8b6483982.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01135;src:url('chunks/assets/font_e7fdea8af19cb292e24ae74d.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01135;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;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:ff5_c01135;src:url('chunks/assets/font_c4360f5c3d874c044c22ef08.woff2')format("woff");}.ff5_c01135{font-family:ff5_c01135;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.ls2_c01135{letter-spacing:-0.720000px;}
.ls1_c01135{letter-spacing:0.000000px;}
.ls0_c01135{letter-spacing:0.288000px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01135{word-spacing:-20.304000px;}
.ws1_c01135{word-spacing:0.000000px;}
._7_c01135{margin-left:-4.752000px;}
._6_c01135{margin-left:-3.744000px;}
._f_c01135{margin-left:-2.439302px;}
._0_c01135{margin-left:-1.258891px;}
._2_c01135{width:1.200024px;}
._9_c01135{width:3.202819px;}
._a_c01135{width:4.683542px;}
._c_c01135{width:6.188458px;}
._8_c01135{width:8.424000px;}
._1_c01135{width:10.152000px;}
._3_c01135{width:11.448000px;}
._4_c01135{width:12.875976px;}
._b_c01135{width:14.700024px;}
._5_c01135{width:17.856000px;}
._e_c01135{width:21.849782px;}
._d_c01135{width:22.896000px;}
.fc0_c01135{color:rgb(0,0,0);}
.fs3_c01135{font-size:59.760000px;}
.fs0_c01135{font-size:66.240000px;}
.fs1_c01135{font-size:72.000000px;}
.fs2_c01135{font-size:84.240000px;}
.y0_c01135{bottom:0.000000px;}
.y24_c01135{bottom:8.640000px;}
.y27_c01135{bottom:8.835000px;}
.y26_c01135{bottom:26.295000px;}
.y4_c01135{bottom:57.636000px;}
.y3_c01135{bottom:77.796000px;}
.y22_c01135{bottom:118.836000px;}
.y21_c01135{bottom:141.156000px;}
.y20_c01135{bottom:163.470000px;}
.y1f_c01135{bottom:185.790000px;}
.y1e_c01135{bottom:208.290000px;}
.y1d_c01135{bottom:230.610000px;}
.y1c_c01135{bottom:252.930000px;}
.y1b_c01135{bottom:275.250000px;}
.y25_c01135{bottom:294.360000px;}
.y1a_c01135{bottom:309.855000px;}
.y19_c01135{bottom:344.055000px;}
.y18_c01135{bottom:378.435000px;}
.y17_c01135{bottom:412.815000px;}
.y16_c01135{bottom:434.955000px;}
.y15_c01135{bottom:457.275000px;}
.y14_c01135{bottom:479.595000px;}
.y13_c01135{bottom:514.155000px;}
.y12_c01135{bottom:536.295000px;}
.y11_c01135{bottom:558.615000px;}
.y10_c01135{bottom:580.965000px;}
.yf_c01135{bottom:603.285000px;}
.ye_c01135{bottom:625.605000px;}
.yd_c01135{bottom:647.925000px;}
.yc_c01135{bottom:670.425000px;}
.yb_c01135{bottom:692.745000px;}
.ya_c01135{bottom:715.065000px;}
.y9_c01135{bottom:737.385000px;}
.y8_c01135{bottom:758.805000px;}
.y7_c01135{bottom:781.125000px;}
.y6_c01135{bottom:818.025000px;}
.y23_c01135{bottom:822.165000px;}
.y5_c01135{bottom:848.490000px;}
.y2_c01135{bottom:1174.320000px;}
.y1_c01135{bottom:1194.660000px;}
.h6_c01135{height:22.500000px;}
.h8_c01135{height:39.960000px;}
.h2_c01135{height:48.062812px;}
.h3_c01135{height:50.229844px;}
.h7_c01135{height:53.428008px;}
.h4_c01135{height:64.546875px;}
.h5_c01135{height:87.859687px;}
.h0_c01135{height:1262.880000px;}
.h1_c01135{height:1263.000000px;}
.w3_c01135{width:188.670000px;}
.w2_c01135{width:197.850000px;}
.w0_c01135{width:892.980000px;}
.w1_c01135{width:893.250000px;}
.x0_c01135{left:0.000000px;}
.x1_c01135{left:127.656000px;}
.x4_c01135{left:190.125000px;}
.x3_c01135{left:328.575000px;}
.x2_c01135{left:703.050000px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls2_c01135{letter-spacing:-0.640000pt;}
.ls1_c01135{letter-spacing:0.000000pt;}
.ls0_c01135{letter-spacing:0.256000pt;}
.ws0_c01135{word-spacing:-18.048000pt;}
.ws1_c01135{word-spacing:0.000000pt;}
._7_c01135{margin-left:-4.224000pt;}
._6_c01135{margin-left:-3.328000pt;}
._f_c01135{margin-left:-2.168269pt;}
._0_c01135{margin-left:-1.119014pt;}
._2_c01135{width:1.066688pt;}
._9_c01135{width:2.846950pt;}
._a_c01135{width:4.163149pt;}
._c_c01135{width:5.500851pt;}
._8_c01135{width:7.488000pt;}
._1_c01135{width:9.024000pt;}
._3_c01135{width:10.176000pt;}
._4_c01135{width:11.445312pt;}
._b_c01135{width:13.066688pt;}
._5_c01135{width:15.872000pt;}
._e_c01135{width:19.422029pt;}
._d_c01135{width:20.352000pt;}
.fs3_c01135{font-size:53.120000pt;}
.fs0_c01135{font-size:58.880000pt;}
.fs1_c01135{font-size:64.000000pt;}
.fs2_c01135{font-size:74.880000pt;}
.y0_c01135{bottom:0.000000pt;}
.y24_c01135{bottom:7.680000pt;}
.y27_c01135{bottom:7.853333pt;}
.y26_c01135{bottom:23.373333pt;}
.y4_c01135{bottom:51.232000pt;}
.y3_c01135{bottom:69.152000pt;}
.y22_c01135{bottom:105.632000pt;}
.y21_c01135{bottom:125.472000pt;}
.y20_c01135{bottom:145.306667pt;}
.y1f_c01135{bottom:165.146667pt;}
.y1e_c01135{bottom:185.146667pt;}
.y1d_c01135{bottom:204.986667pt;}
.y1c_c01135{bottom:224.826667pt;}
.y1b_c01135{bottom:244.666667pt;}
.y25_c01135{bottom:261.653333pt;}
.y1a_c01135{bottom:275.426667pt;}
.y19_c01135{bottom:305.826667pt;}
.y18_c01135{bottom:336.386667pt;}
.y17_c01135{bottom:366.946667pt;}
.y16_c01135{bottom:386.626667pt;}
.y15_c01135{bottom:406.466667pt;}
.y14_c01135{bottom:426.306667pt;}
.y13_c01135{bottom:457.026667pt;}
.y12_c01135{bottom:476.706667pt;}
.y11_c01135{bottom:496.546667pt;}
.y10_c01135{bottom:516.413333pt;}
.yf_c01135{bottom:536.253333pt;}
.ye_c01135{bottom:556.093333pt;}
.yd_c01135{bottom:575.933333pt;}
.yc_c01135{bottom:595.933333pt;}
.yb_c01135{bottom:615.773333pt;}
.ya_c01135{bottom:635.613333pt;}
.y9_c01135{bottom:655.453333pt;}
.y8_c01135{bottom:674.493333pt;}
.y7_c01135{bottom:694.333333pt;}
.y6_c01135{bottom:727.133333pt;}
.y23_c01135{bottom:730.813333pt;}
.y5_c01135{bottom:754.213333pt;}
.y2_c01135{bottom:1043.840000pt;}
.y1_c01135{bottom:1061.920000pt;}
.h6_c01135{height:20.000000pt;}
.h8_c01135{height:35.520000pt;}
.h2_c01135{height:42.722500pt;}
.h3_c01135{height:44.648750pt;}
.h7_c01135{height:47.491563pt;}
.h4_c01135{height:57.375000pt;}
.h5_c01135{height:78.097500pt;}
.h0_c01135{height:1122.560000pt;}
.h1_c01135{height:1122.666667pt;}
.w3_c01135{width:167.706667pt;}
.w2_c01135{width:175.866667pt;}
.w0_c01135{width:793.760000pt;}
.w1_c01135{width:794.000000pt;}
.x0_c01135{left:0.000000pt;}
.x1_c01135{left:113.472000pt;}
.x4_c01135{left:169.000000pt;}
.x3_c01135{left:292.066667pt;}
.x2_c01135{left:624.933333pt;}
}





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

.ir_c01136:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01136;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01136;src:url('chunks/assets/font_74978d33f678aef2bad7be39.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01136;src:url('chunks/assets/font_589e560a07b39811037bf64a.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01136;src:url('chunks/assets/font_8fb4c061b43d9b52b696c485.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01136;src:url('chunks/assets/font_e19d7821659f59677766258d.woff2')format("woff");}.ff5_c01136{font-family:ff5_c01136;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01136{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_c01136{vertical-align:0.000000px;}
.ls5_c01136{letter-spacing:-0.272400px;}
.ls3_c01136{letter-spacing:-0.181200px;}
.ls2_c01136{letter-spacing:0.000000px;}
.ls0_c01136{letter-spacing:0.144000px;}
.ls4_c01136{letter-spacing:0.150000px;}
.ls1_c01136{letter-spacing:0.174240px;}
.sc__c01136{text-shadow:none;}
.sc0_c01136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01136{-webkit-text-stroke:0px transparent;}
.sc0_c01136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01136{word-spacing:-21.035520px;}
.ws1_c01136{word-spacing:0.000000px;}
._8_c01136{margin-left:-5.040000px;}
._6_c01136{margin-left:-3.816000px;}
._7_c01136{margin-left:-2.691452px;}
._0_c01136{margin-left:-1.390841px;}
._4_c01136{width:1.164024px;}
._1_c01136{width:2.304000px;}
._b_c01136{width:3.816000px;}
._11_c01136{width:5.004000px;}
._9_c01136{width:8.712000px;}
._a_c01136{width:10.427976px;}
._f_c01136{width:14.566841px;}
._e_c01136{width:15.624000px;}
._3_c01136{width:16.920000px;}
._2_c01136{width:18.288000px;}
._d_c01136{width:25.294841px;}
._c_c01136{width:26.424000px;}
._5_c01136{width:34.776000px;}
._10_c01136{width:52.200000px;}
._12_c01136{width:1110.684000px;}
.fc1_c01136{color:transparent;}
.fc0_c01136{color:rgb(0,0,0);}
.fs3_c01136{font-size:38.880000px;}
.fs2_c01136{font-size:48.240000px;}
.fs4_c01136{font-size:59.760000px;}
.fs0_c01136{font-size:66.240000px;}
.fs1_c01136{font-size:72.000000px;}
.y0_c01136{bottom:0.000000px;}
.y2c_c01136{bottom:9.525000px;}
.y29_c01136{bottom:9.885000px;}
.y2e_c01136{bottom:9.915000px;}
.y2b_c01136{bottom:26.805000px;}
.y4_c01136{bottom:57.636000px;}
.y3_c01136{bottom:77.796000px;}
.y27_c01136{bottom:110.196000px;}
.y26_c01136{bottom:115.416000px;}
.y25_c01136{bottom:129.996000px;}
.y2a_c01136{bottom:205.245000px;}
.y28_c01136{bottom:220.005000px;}
.y24_c01136{bottom:222.690000px;}
.y23_c01136{bottom:253.110000px;}
.y22_c01136{bottom:466.455000px;}
.y21_c01136{bottom:500.835000px;}
.y2d_c01136{bottom:522.960000px;}
.y20_c01136{bottom:522.975000px;}
.y1f_c01136{bottom:545.295000px;}
.y1e_c01136{bottom:579.885000px;}
.y1d_c01136{bottom:602.025000px;}
.y1c_c01136{bottom:624.345000px;}
.y1b_c01136{bottom:646.665000px;}
.y1a_c01136{bottom:668.985000px;}
.y19_c01136{bottom:691.305000px;}
.y18_c01136{bottom:713.805000px;}
.y17_c01136{bottom:736.125000px;}
.y16_c01136{bottom:758.445000px;}
.y15_c01136{bottom:780.765000px;}
.y14_c01136{bottom:803.085000px;}
.y13_c01136{bottom:825.405000px;}
.y12_c01136{bottom:847.770000px;}
.y11_c01136{bottom:870.090000px;}
.y10_c01136{bottom:892.410000px;}
.ye_c01136{bottom:914.730000px;}
.yf_c01136{bottom:920.670000px;}
.yd_c01136{bottom:949.290000px;}
.yc_c01136{bottom:971.430000px;}
.yb_c01136{bottom:993.750000px;}
.ya_c01136{bottom:1016.070000px;}
.y9_c01136{bottom:1038.570000px;}
.y8_c01136{bottom:1072.950000px;}
.y7_c01136{bottom:1095.090000px;}
.y6_c01136{bottom:1117.410000px;}
.y5_c01136{bottom:1139.940000px;}
.y2_c01136{bottom:1174.320000px;}
.y1_c01136{bottom:1194.660000px;}
.h9_c01136{height:23.760000px;}
.h7_c01136{height:29.482734px;}
.hb_c01136{height:40.500000px;}
.h6_c01136{height:43.246406px;}
.h2_c01136{height:48.062812px;}
.h3_c01136{height:50.229844px;}
.ha_c01136{height:53.428008px;}
.h8_c01136{height:63.763920px;}
.h4_c01136{height:64.546875px;}
.h5_c01136{height:1262.865000px;}
.h0_c01136{height:1262.880000px;}
.h1_c01136{height:1263.000000px;}
.w3_c01136{width:226.110000px;}
.w4_c01136{width:226.155000px;}
.w2_c01136{width:892.957500px;}
.w0_c01136{width:892.980000px;}
.w1_c01136{width:893.250000px;}
.x0_c01136{left:0.000000px;}
.x2_c01136{left:127.656000px;}
.x9_c01136{left:140.085000px;}
.x8_c01136{left:142.236000px;}
.x1_c01136{left:169.950000px;}
.x7_c01136{left:343.695000px;}
.x6_c01136{left:378.615000px;}
.x5_c01136{left:470.595000px;}
.xa_c01136{left:475.995000px;}
.xb_c01136{left:533.640000px;}
.x3_c01136{left:740.490000px;}
.x4_c01136{left:760.470000px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls5_c01136{letter-spacing:-0.242133pt;}
.ls3_c01136{letter-spacing:-0.161067pt;}
.ls2_c01136{letter-spacing:0.000000pt;}
.ls0_c01136{letter-spacing:0.128000pt;}
.ls4_c01136{letter-spacing:0.133333pt;}
.ls1_c01136{letter-spacing:0.154880pt;}
.ws0_c01136{word-spacing:-18.698240pt;}
.ws1_c01136{word-spacing:0.000000pt;}
._8_c01136{margin-left:-4.480000pt;}
._6_c01136{margin-left:-3.392000pt;}
._7_c01136{margin-left:-2.392402pt;}
._0_c01136{margin-left:-1.236303pt;}
._4_c01136{width:1.034688pt;}
._1_c01136{width:2.048000pt;}
._b_c01136{width:3.392000pt;}
._11_c01136{width:4.448000pt;}
._9_c01136{width:7.744000pt;}
._a_c01136{width:9.269312pt;}
._f_c01136{width:12.948303pt;}
._e_c01136{width:13.888000pt;}
._3_c01136{width:15.040000pt;}
._2_c01136{width:16.256000pt;}
._d_c01136{width:22.484303pt;}
._c_c01136{width:23.488000pt;}
._5_c01136{width:30.912000pt;}
._10_c01136{width:46.400000pt;}
._12_c01136{width:987.274667pt;}
.fs3_c01136{font-size:34.560000pt;}
.fs2_c01136{font-size:42.880000pt;}
.fs4_c01136{font-size:53.120000pt;}
.fs0_c01136{font-size:58.880000pt;}
.fs1_c01136{font-size:64.000000pt;}
.y0_c01136{bottom:0.000000pt;}
.y2c_c01136{bottom:8.466667pt;}
.y29_c01136{bottom:8.786667pt;}
.y2e_c01136{bottom:8.813333pt;}
.y2b_c01136{bottom:23.826667pt;}
.y4_c01136{bottom:51.232000pt;}
.y3_c01136{bottom:69.152000pt;}
.y27_c01136{bottom:97.952000pt;}
.y26_c01136{bottom:102.592000pt;}
.y25_c01136{bottom:115.552000pt;}
.y2a_c01136{bottom:182.440000pt;}
.y28_c01136{bottom:195.560000pt;}
.y24_c01136{bottom:197.946667pt;}
.y23_c01136{bottom:224.986667pt;}
.y22_c01136{bottom:414.626667pt;}
.y21_c01136{bottom:445.186667pt;}
.y2d_c01136{bottom:464.853333pt;}
.y20_c01136{bottom:464.866667pt;}
.y1f_c01136{bottom:484.706667pt;}
.y1e_c01136{bottom:515.453333pt;}
.y1d_c01136{bottom:535.133333pt;}
.y1c_c01136{bottom:554.973333pt;}
.y1b_c01136{bottom:574.813333pt;}
.y1a_c01136{bottom:594.653333pt;}
.y19_c01136{bottom:614.493333pt;}
.y18_c01136{bottom:634.493333pt;}
.y17_c01136{bottom:654.333333pt;}
.y16_c01136{bottom:674.173333pt;}
.y15_c01136{bottom:694.013333pt;}
.y14_c01136{bottom:713.853333pt;}
.y13_c01136{bottom:733.693333pt;}
.y12_c01136{bottom:753.573333pt;}
.y11_c01136{bottom:773.413333pt;}
.y10_c01136{bottom:793.253333pt;}
.ye_c01136{bottom:813.093333pt;}
.yf_c01136{bottom:818.373333pt;}
.yd_c01136{bottom:843.813333pt;}
.yc_c01136{bottom:863.493333pt;}
.yb_c01136{bottom:883.333333pt;}
.ya_c01136{bottom:903.173333pt;}
.y9_c01136{bottom:923.173333pt;}
.y8_c01136{bottom:953.733333pt;}
.y7_c01136{bottom:973.413333pt;}
.y6_c01136{bottom:993.253333pt;}
.y5_c01136{bottom:1013.280000pt;}
.y2_c01136{bottom:1043.840000pt;}
.y1_c01136{bottom:1061.920000pt;}
.h9_c01136{height:21.120000pt;}
.h7_c01136{height:26.206875pt;}
.hb_c01136{height:36.000000pt;}
.h6_c01136{height:38.441250pt;}
.h2_c01136{height:42.722500pt;}
.h3_c01136{height:44.648750pt;}
.ha_c01136{height:47.491563pt;}
.h8_c01136{height:56.679040pt;}
.h4_c01136{height:57.375000pt;}
.h5_c01136{height:1122.546667pt;}
.h0_c01136{height:1122.560000pt;}
.h1_c01136{height:1122.666667pt;}
.w3_c01136{width:200.986667pt;}
.w4_c01136{width:201.026667pt;}
.w2_c01136{width:793.740000pt;}
.w0_c01136{width:793.760000pt;}
.w1_c01136{width:794.000000pt;}
.x0_c01136{left:0.000000pt;}
.x2_c01136{left:113.472000pt;}
.x9_c01136{left:124.520000pt;}
.x8_c01136{left:126.432000pt;}
.x1_c01136{left:151.066667pt;}
.x7_c01136{left:305.506667pt;}
.x6_c01136{left:336.546667pt;}
.x5_c01136{left:418.306667pt;}
.xa_c01136{left:423.106667pt;}
.xb_c01136{left:474.346667pt;}
.x3_c01136{left:658.213333pt;}
.x4_c01136{left:675.973333pt;}
}





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

.ir_c01137:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01137;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01137;src:url('chunks/assets/font_803ac8c536eee51b831e52d8.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01137;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01137;src:url('chunks/assets/font_6d57dc0de577a79d5306dd4e.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01137;src:url('chunks/assets/font_6a5403e9cfcea85eec765cff.woff2')format("woff");}.ff5_c01137{font-family:ff5_c01137;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01137{vertical-align:0.000000px;}
.ls0_c01137{letter-spacing:0.000000px;}
.ls1_c01137{letter-spacing:0.144000px;}
.sc__c01137{text-shadow:none;}
.sc0_c01137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01137{-webkit-text-stroke:0px transparent;}
.sc0_c01137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01137{word-spacing:0.000000px;}
._0_c01137{margin-left:-1.258891px;}
._3_c01137{width:1.241999px;}
._2_c01137{width:840.180000px;}
._1_c01137{width:1214.940000px;}
.fc0_c01137{color:rgb(0,0,0);}
.fs3_c01137{font-size:59.760000px;}
.fs0_c01137{font-size:66.240000px;}
.fs1_c01137{font-size:72.000000px;}
.fs2_c01137{font-size:95.760000px;}
.y0_c01137{bottom:0.000000px;}
.yd_c01137{bottom:7.215000px;}
.yf_c01137{bottom:9.735000px;}
.yc_c01137{bottom:24.495000px;}
.y11_c01137{bottom:24.675000px;}
.y4_c01137{bottom:57.636000px;}
.y3_c01137{bottom:77.796000px;}
.y10_c01137{bottom:500.280000px;}
.ya_c01137{bottom:504.075000px;}
.y9_c01137{bottom:540.255000px;}
.y8_c01137{bottom:867.210000px;}
.y7_c01137{bottom:900.330000px;}
.yb_c01137{bottom:920.475000px;}
.ye_c01137{bottom:934.335000px;}
.y6_c01137{bottom:934.710000px;}
.y5_c01137{bottom:965.130000px;}
.y2_c01137{bottom:1174.320000px;}
.y1_c01137{bottom:1194.660000px;}
.h8_c01137{height:23.580000px;}
.h6_c01137{height:38.160000px;}
.h9_c01137{height:38.340000px;}
.h2_c01137{height:48.062812px;}
.h3_c01137{height:50.229844px;}
.h7_c01137{height:53.428008px;}
.h4_c01137{height:64.546875px;}
.h5_c01137{height:69.575625px;}
.h0_c01137{height:1262.880000px;}
.h1_c01137{height:1263.000000px;}
.w2_c01137{width:226.110000px;}
.w3_c01137{width:226.125000px;}
.w0_c01137{width:892.980000px;}
.w1_c01137{width:893.250000px;}
.x0_c01137{left:0.000000px;}
.x1_c01137{left:127.656000px;}
.x9_c01137{left:134.865000px;}
.x7_c01137{left:148.545000px;}
.x6_c01137{left:373.395000px;}
.x3_c01137{left:408.675000px;}
.x2_c01137{left:430.815000px;}
.x8_c01137{left:443.775000px;}
.x4_c01137{left:446.475000px;}
.x5_c01137{left:760.470000px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.ls0_c01137{letter-spacing:0.000000pt;}
.ls1_c01137{letter-spacing:0.128000pt;}
.ws0_c01137{word-spacing:0.000000pt;}
._0_c01137{margin-left:-1.119014pt;}
._3_c01137{width:1.103999pt;}
._2_c01137{width:746.826667pt;}
._1_c01137{width:1079.946667pt;}
.fs3_c01137{font-size:53.120000pt;}
.fs0_c01137{font-size:58.880000pt;}
.fs1_c01137{font-size:64.000000pt;}
.fs2_c01137{font-size:85.120000pt;}
.y0_c01137{bottom:0.000000pt;}
.yd_c01137{bottom:6.413333pt;}
.yf_c01137{bottom:8.653333pt;}
.yc_c01137{bottom:21.773333pt;}
.y11_c01137{bottom:21.933333pt;}
.y4_c01137{bottom:51.232000pt;}
.y3_c01137{bottom:69.152000pt;}
.y10_c01137{bottom:444.693333pt;}
.ya_c01137{bottom:448.066667pt;}
.y9_c01137{bottom:480.226667pt;}
.y8_c01137{bottom:770.853333pt;}
.y7_c01137{bottom:800.293333pt;}
.yb_c01137{bottom:818.200000pt;}
.ye_c01137{bottom:830.520000pt;}
.y6_c01137{bottom:830.853333pt;}
.y5_c01137{bottom:857.893333pt;}
.y2_c01137{bottom:1043.840000pt;}
.y1_c01137{bottom:1061.920000pt;}
.h8_c01137{height:20.960000pt;}
.h6_c01137{height:33.920000pt;}
.h9_c01137{height:34.080000pt;}
.h2_c01137{height:42.722500pt;}
.h3_c01137{height:44.648750pt;}
.h7_c01137{height:47.491563pt;}
.h4_c01137{height:57.375000pt;}
.h5_c01137{height:61.845000pt;}
.h0_c01137{height:1122.560000pt;}
.h1_c01137{height:1122.666667pt;}
.w2_c01137{width:200.986667pt;}
.w3_c01137{width:201.000000pt;}
.w0_c01137{width:793.760000pt;}
.w1_c01137{width:794.000000pt;}
.x0_c01137{left:0.000000pt;}
.x1_c01137{left:113.472000pt;}
.x9_c01137{left:119.880000pt;}
.x7_c01137{left:132.040000pt;}
.x6_c01137{left:331.906667pt;}
.x3_c01137{left:363.266667pt;}
.x2_c01137{left:382.946667pt;}
.x8_c01137{left:394.466667pt;}
.x4_c01137{left:396.866667pt;}
.x5_c01137{left:675.973333pt;}
}





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

.ir_c01138:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01138;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01138;src:url('chunks/assets/font_1a1abd54ea1ed2d7c2a95275.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01138;src:url('chunks/assets/font_6d57dc0de577a79d5306dd4e.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01138;src:url('chunks/assets/font_1ef2bb94876ab77890b0e400.woff2')format("woff");}.ff4_c01138{font-family:ff4_c01138;line-height:1.104492;font-style:normal;font-weight: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_c01138;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01138{font-family:ff5_c01138;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;}
.m0_c01138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01138{vertical-align:0.000000px;}
.ls0_c01138{letter-spacing:0.000000px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01138{word-spacing:0.000000px;}
._0_c01138{margin-left:-1.390841px;}
._1_c01138{width:1.314600px;}
._2_c01138{width:840.216000px;}
.fc0_c01138{color:rgb(0,0,0);}
.fs2_c01138{font-size:59.760000px;}
.fs0_c01138{font-size:66.240000px;}
.fs1_c01138{font-size:95.760000px;}
.y0_c01138{bottom:0.000000px;}
.y4_c01138{bottom:57.636000px;}
.y3_c01138{bottom:77.796000px;}
.y8_c01138{bottom:163.110000px;}
.y7_c01138{bottom:203.970000px;}
.y6_c01138{bottom:232.410000px;}
.y5_c01138{bottom:699.045000px;}
.y2_c01138{bottom:1174.320000px;}
.y1_c01138{bottom:1194.660000px;}
.h2_c01138{height:48.062812px;}
.h3_c01138{height:50.229844px;}
.h5_c01138{height:62.327813px;}
.h4_c01138{height:69.575625px;}
.h0_c01138{height:1262.880000px;}
.h1_c01138{height:1263.000000px;}
.w0_c01138{width:892.980000px;}
.w1_c01138{width:893.250000px;}
.x0_c01138{left:0.000000px;}
.x2_c01138{left:127.656000px;}
.x1_c01138{left:169.950000px;}
.x3_c01138{left:740.490000px;}
.x4_c01138{left:765.510000px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls0_c01138{letter-spacing:0.000000pt;}
.ws0_c01138{word-spacing:0.000000pt;}
._0_c01138{margin-left:-1.236303pt;}
._1_c01138{width:1.168534pt;}
._2_c01138{width:746.858667pt;}
.fs2_c01138{font-size:53.120000pt;}
.fs0_c01138{font-size:58.880000pt;}
.fs1_c01138{font-size:85.120000pt;}
.y0_c01138{bottom:0.000000pt;}
.y4_c01138{bottom:51.232000pt;}
.y3_c01138{bottom:69.152000pt;}
.y8_c01138{bottom:144.986667pt;}
.y7_c01138{bottom:181.306667pt;}
.y6_c01138{bottom:206.586667pt;}
.y5_c01138{bottom:621.373333pt;}
.y2_c01138{bottom:1043.840000pt;}
.y1_c01138{bottom:1061.920000pt;}
.h2_c01138{height:42.722500pt;}
.h3_c01138{height:44.648750pt;}
.h5_c01138{height:55.402500pt;}
.h4_c01138{height:61.845000pt;}
.h0_c01138{height:1122.560000pt;}
.h1_c01138{height:1122.666667pt;}
.w0_c01138{width:793.760000pt;}
.w1_c01138{width:794.000000pt;}
.x0_c01138{left:0.000000pt;}
.x2_c01138{left:113.472000pt;}
.x1_c01138{left:151.066667pt;}
.x3_c01138{left:658.213333pt;}
.x4_c01138{left:680.453333pt;}
}





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

.ir_c01139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01139;src:url('chunks/assets/font_cbe423bc4ff9385ecced807a.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01139{vertical-align:0.000000px;}
.ls0_c01139{letter-spacing:0.000000px;}
.sc__c01139{text-shadow:none;}
.sc0_c01139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01139{-webkit-text-stroke:0px transparent;}
.sc0_c01139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01139{word-spacing:-0.072000px;}
.fc0_c01139{color:rgb(0,0,0);}
.fs0_c01139{font-size:66.240000px;}
.y0_c01139{bottom:0.000000px;}
.y1_c01139{bottom:1194.660000px;}
.h2_c01139{height:48.062812px;}
.h0_c01139{height:1262.880000px;}
.h1_c01139{height:1263.000000px;}
.w0_c01139{width:892.980000px;}
.w1_c01139{width:893.250000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:127.656000px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls0_c01139{letter-spacing:0.000000pt;}
.ws0_c01139{word-spacing:-0.064000pt;}
.fs0_c01139{font-size:58.880000pt;}
.y0_c01139{bottom:0.000000pt;}
.y1_c01139{bottom:1061.920000pt;}
.h2_c01139{height:42.722500pt;}
.h0_c01139{height:1122.560000pt;}
.h1_c01139{height:1122.666667pt;}
.w0_c01139{width:793.760000pt;}
.w1_c01139{width:794.000000pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:113.472000pt;}
}





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

.ir_c01140:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01140;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01140;src:url('chunks/assets/font_c52f601a45404cbd444b024c.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01140;src:url('chunks/assets/font_18efa373292ecdcadcea5188.woff2')format("woff");}.ff3_c01140{font-family:ff3_c01140;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01140;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01140{font-family:ff4_c01140;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:ff5_c01140;src:url('chunks/assets/font_9ad54a0050cb5ae2d6e5d38c.woff2')format("woff");}.ff5_c01140{font-family:ff5_c01140;line-height:0.915039;font-style:normal;font-weight: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_c01140;src:url('chunks/assets/font_7f1baaaef65177bb4d00deb3.woff2')format("woff");}.ff6_c01140{font-family:ff6_c01140;line-height:1.009766;font-style:normal;font-weight: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_c01140;src:url('chunks/assets/font_f1e0945e0c723dd9892b84c6.woff2')format("woff");}.ff7_c01140{font-family:ff7_c01140;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:ff8_c01140;src:url('chunks/assets/font_f36941d7563fe9e7af857a37.woff2')format("woff");}.ff8_c01140{font-family:ff8_c01140;line-height:1.106934;font-style:normal;font-weight: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_c01140;src:url('chunks/assets/font_f04ff31eb290db89ce951bae.woff2')format("woff");}.ff9_c01140{font-family:ff9_c01140;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.ls6_c01140{letter-spacing:-0.576000px;}
.ls3_c01140{letter-spacing:-0.540600px;}
.ls4_c01140{letter-spacing:-0.432000px;}
.ls2_c01140{letter-spacing:0.000000px;}
.ls5_c01140{letter-spacing:0.288000px;}
.ls7_c01140{letter-spacing:0.864000px;}
.ls0_c01140{letter-spacing:20.784000px;}
.ls1_c01140{letter-spacing:20.808000px;}
.sc__c01140{text-shadow:none;}
.sc1_c01140{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01140{-webkit-text-stroke:0px transparent;}
.sc1_c01140{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01140{word-spacing:-20.880000px;}
.ws1_c01140{word-spacing:-20.554560px;}
.ws0_c01140{word-spacing:-18.000000px;}
.ws3_c01140{word-spacing:0.000000px;}
._9_c01140{margin-left:-4.824000px;}
._8_c01140{margin-left:-3.744000px;}
._2_c01140{margin-left:-2.695848px;}
._0_c01140{margin-left:-1.390841px;}
._1_c01140{width:1.186083px;}
._3_c01140{width:2.633750px;}
._7_c01140{width:5.976000px;}
._6_c01140{width:7.488000px;}
._5_c01140{width:8.496000px;}
._c_c01140{width:9.841941px;}
._4_c01140{width:13.608000px;}
._10_c01140{width:15.480000px;}
._d_c01140{width:18.360000px;}
._b_c01140{width:24.070841px;}
._a_c01140{width:25.128000px;}
._f_c01140{width:30.096000px;}
._e_c01140{width:32.040000px;}
.fc1_c01140{color:rgb(238,119,0);}
.fc0_c01140{color:rgb(0,0,0);}
.fs4_c01140{font-size:59.760000px;}
.fs0_c01140{font-size:66.240000px;}
.fs2_c01140{font-size:72.000000px;}
.fs3_c01140{font-size:84.240000px;}
.fs1_c01140{font-size:95.760000px;}
.y0_c01140{bottom:0.000000px;}
.y6_c01140{bottom:5.040000px;}
.y9_c01140{bottom:5.055000px;}
.y2b_c01140{bottom:8.451000px;}
.yc_c01140{bottom:8.820000px;}
.y2a_c01140{bottom:25.911000px;}
.y5_c01140{bottom:31.140000px;}
.yb_c01140{bottom:41.040000px;}
.y2_c01140{bottom:77.796000px;}
.y29_c01140{bottom:107.685000px;}
.y28_c01140{bottom:170.670000px;}
.y27_c01140{bottom:192.810000px;}
.y26_c01140{bottom:215.130000px;}
.y25_c01140{bottom:237.450000px;}
.y24_c01140{bottom:259.770000px;}
.y23_c01140{bottom:282.135000px;}
.y22_c01140{bottom:304.455000px;}
.y21_c01140{bottom:326.775000px;}
.y20_c01140{bottom:349.095000px;}
.y1f_c01140{bottom:371.415000px;}
.y1e_c01140{bottom:393.915000px;}
.y1d_c01140{bottom:416.235000px;}
.y1c_c01140{bottom:438.555000px;}
.y1b_c01140{bottom:460.875000px;}
.y1a_c01140{bottom:504.615000px;}
.y19_c01140{bottom:575.925000px;}
.y18_c01140{bottom:598.065000px;}
.y17_c01140{bottom:620.385000px;}
.y16_c01140{bottom:642.705000px;}
.y15_c01140{bottom:665.025000px;}
.y14_c01140{bottom:687.525000px;}
.y13_c01140{bottom:709.845000px;}
.y12_c01140{bottom:732.165000px;}
.y11_c01140{bottom:754.485000px;}
.y10_c01140{bottom:776.805000px;}
.yf_c01140{bottom:820.545000px;}
.ye_c01140{bottom:877.815000px;}
.yd_c01140{bottom:877.830000px;}
.ya_c01140{bottom:932.190000px;}
.y8_c01140{bottom:996.435000px;}
.y7_c01140{bottom:996.450000px;}
.y4_c01140{bottom:1050.810000px;}
.y3_c01140{bottom:1134.180000px;}
.y1_c01140{bottom:1194.660000px;}
.hd_c01140{height:39.600000px;}
.h2_c01140{height:48.062812px;}
.h3_c01140{height:50.229844px;}
.h7_c01140{height:52.382812px;}
.he_c01140{height:53.428008px;}
.h5_c01140{height:54.345000px;}
.h8_c01140{height:54.351000px;}
.h9_c01140{height:54.360000px;}
.h6_c01140{height:63.550195px;}
.ha_c01140{height:64.245000px;}
.hc_c01140{height:64.546875px;}
.h4_c01140{height:69.575625px;}
.hb_c01140{height:87.859687px;}
.h0_c01140{height:1262.880000px;}
.h1_c01140{height:1263.000000px;}
.w5_c01140{width:220.710000px;}
.w3_c01140{width:230.415000px;}
.w4_c01140{width:230.430000px;}
.w2_c01140{width:403.626000px;}
.w0_c01140{width:892.980000px;}
.w1_c01140{width:893.250000px;}
.x0_c01140{left:0.000000px;}
.x4_c01140{left:10.251000px;}
.x5_c01140{left:31.485000px;}
.x3_c01140{left:127.656000px;}
.x1_c01140{left:169.950000px;}
.x6_c01140{left:531.300000px;}
.x7_c01140{left:545.340000px;}
.x2_c01140{left:740.490000px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls6_c01140{letter-spacing:-0.512000pt;}
.ls3_c01140{letter-spacing:-0.480533pt;}
.ls4_c01140{letter-spacing:-0.384000pt;}
.ls2_c01140{letter-spacing:0.000000pt;}
.ls5_c01140{letter-spacing:0.256000pt;}
.ls7_c01140{letter-spacing:0.768000pt;}
.ls0_c01140{letter-spacing:18.474667pt;}
.ls1_c01140{letter-spacing:18.496000pt;}
.ws2_c01140{word-spacing:-18.560000pt;}
.ws1_c01140{word-spacing:-18.270720pt;}
.ws0_c01140{word-spacing:-16.000000pt;}
.ws3_c01140{word-spacing:0.000000pt;}
._9_c01140{margin-left:-4.288000pt;}
._8_c01140{margin-left:-3.328000pt;}
._2_c01140{margin-left:-2.396310pt;}
._0_c01140{margin-left:-1.236303pt;}
._1_c01140{width:1.054296pt;}
._3_c01140{width:2.341111pt;}
._7_c01140{width:5.312000pt;}
._6_c01140{width:6.656000pt;}
._5_c01140{width:7.552000pt;}
._c_c01140{width:8.748392pt;}
._4_c01140{width:12.096000pt;}
._10_c01140{width:13.760000pt;}
._d_c01140{width:16.320000pt;}
._b_c01140{width:21.396303pt;}
._a_c01140{width:22.336000pt;}
._f_c01140{width:26.752000pt;}
._e_c01140{width:28.480000pt;}
.fs4_c01140{font-size:53.120000pt;}
.fs0_c01140{font-size:58.880000pt;}
.fs2_c01140{font-size:64.000000pt;}
.fs3_c01140{font-size:74.880000pt;}
.fs1_c01140{font-size:85.120000pt;}
.y0_c01140{bottom:0.000000pt;}
.y6_c01140{bottom:4.480000pt;}
.y9_c01140{bottom:4.493333pt;}
.y2b_c01140{bottom:7.512000pt;}
.yc_c01140{bottom:7.840000pt;}
.y2a_c01140{bottom:23.032000pt;}
.y5_c01140{bottom:27.680000pt;}
.yb_c01140{bottom:36.480000pt;}
.y2_c01140{bottom:69.152000pt;}
.y29_c01140{bottom:95.720000pt;}
.y28_c01140{bottom:151.706667pt;}
.y27_c01140{bottom:171.386667pt;}
.y26_c01140{bottom:191.226667pt;}
.y25_c01140{bottom:211.066667pt;}
.y24_c01140{bottom:230.906667pt;}
.y23_c01140{bottom:250.786667pt;}
.y22_c01140{bottom:270.626667pt;}
.y21_c01140{bottom:290.466667pt;}
.y20_c01140{bottom:310.306667pt;}
.y1f_c01140{bottom:330.146667pt;}
.y1e_c01140{bottom:350.146667pt;}
.y1d_c01140{bottom:369.986667pt;}
.y1c_c01140{bottom:389.826667pt;}
.y1b_c01140{bottom:409.666667pt;}
.y1a_c01140{bottom:448.546667pt;}
.y19_c01140{bottom:511.933333pt;}
.y18_c01140{bottom:531.613333pt;}
.y17_c01140{bottom:551.453333pt;}
.y16_c01140{bottom:571.293333pt;}
.y15_c01140{bottom:591.133333pt;}
.y14_c01140{bottom:611.133333pt;}
.y13_c01140{bottom:630.973333pt;}
.y12_c01140{bottom:650.813333pt;}
.y11_c01140{bottom:670.653333pt;}
.y10_c01140{bottom:690.493333pt;}
.yf_c01140{bottom:729.373333pt;}
.ye_c01140{bottom:780.280000pt;}
.yd_c01140{bottom:780.293333pt;}
.ya_c01140{bottom:828.613333pt;}
.y8_c01140{bottom:885.720000pt;}
.y7_c01140{bottom:885.733333pt;}
.y4_c01140{bottom:934.053333pt;}
.y3_c01140{bottom:1008.160000pt;}
.y1_c01140{bottom:1061.920000pt;}
.hd_c01140{height:35.200000pt;}
.h2_c01140{height:42.722500pt;}
.h3_c01140{height:44.648750pt;}
.h7_c01140{height:46.562500pt;}
.he_c01140{height:47.491563pt;}
.h5_c01140{height:48.306667pt;}
.h8_c01140{height:48.312000pt;}
.h9_c01140{height:48.320000pt;}
.h6_c01140{height:56.489062pt;}
.ha_c01140{height:57.106667pt;}
.hc_c01140{height:57.375000pt;}
.h4_c01140{height:61.845000pt;}
.hb_c01140{height:78.097500pt;}
.h0_c01140{height:1122.560000pt;}
.h1_c01140{height:1122.666667pt;}
.w5_c01140{width:196.186667pt;}
.w3_c01140{width:204.813333pt;}
.w4_c01140{width:204.826667pt;}
.w2_c01140{width:358.778667pt;}
.w0_c01140{width:793.760000pt;}
.w1_c01140{width:794.000000pt;}
.x0_c01140{left:0.000000pt;}
.x4_c01140{left:9.112000pt;}
.x5_c01140{left:27.986667pt;}
.x3_c01140{left:113.472000pt;}
.x1_c01140{left:151.066667pt;}
.x6_c01140{left:472.266667pt;}
.x7_c01140{left:484.746667pt;}
.x2_c01140{left:658.213333pt;}
}





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

.ir_c01141:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01141;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01141;src:url('chunks/assets/font_81742ec25d656e87e14d5476.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01141;src:url('chunks/assets/font_4c2a652923fa51173e2c47c9.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01141;src:url('chunks/assets/font_d5c661eb2af89bed5b262815.woff2')format("woff");}.ff4_c01141{font-family:ff4_c01141;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01141{vertical-align:0.000000px;}
.ls1_c01141{letter-spacing:-0.576000px;}
.ls0_c01141{letter-spacing:0.000000px;}
.sc__c01141{text-shadow:none;}
.sc0_c01141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01141{-webkit-text-stroke:0px transparent;}
.sc0_c01141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01141{word-spacing:0.000000px;}
._2_c01141{margin-left:-4.271976px;}
._1_c01141{margin-left:-3.096000px;}
._0_c01141{margin-left:-1.258891px;}
._3_c01141{width:1.008000px;}
._8_c01141{width:2.232000px;}
._9_c01141{width:3.384000px;}
._7_c01141{width:4.608000px;}
._a_c01141{width:9.648000px;}
._b_c01141{width:14.773133px;}
._5_c01141{width:15.802891px;}
._4_c01141{width:17.568000px;}
._6_c01141{width:54.792000px;}
.fc0_c01141{color:rgb(0,0,0);}
.fs2_c01141{font-size:59.760000px;}
.fs0_c01141{font-size:66.240000px;}
.fs1_c01141{font-size:72.000000px;}
.y0_c01141{bottom:0.000000px;}
.y21_c01141{bottom:14.925000px;}
.y1d_c01141{bottom:15.495000px;}
.y1f_c01141{bottom:18.705000px;}
.y4_c01141{bottom:57.636000px;}
.y3_c01141{bottom:77.796000px;}
.y1b_c01141{bottom:142.236000px;}
.y1a_c01141{bottom:176.610000px;}
.y19_c01141{bottom:198.750000px;}
.y18_c01141{bottom:221.070000px;}
.y1e_c01141{bottom:238.005000px;}
.y20_c01141{bottom:239.985000px;}
.y17_c01141{bottom:272.190000px;}
.y16_c01141{bottom:724.245000px;}
.y15_c01141{bottom:746.385000px;}
.y14_c01141{bottom:768.705000px;}
.y13_c01141{bottom:791.025000px;}
.y12_c01141{bottom:813.345000px;}
.y11_c01141{bottom:835.665000px;}
.y10_c01141{bottom:858.210000px;}
.yf_c01141{bottom:880.530000px;}
.ye_c01141{bottom:902.850000px;}
.yd_c01141{bottom:937.230000px;}
.y1c_c01141{bottom:939.735000px;}
.yc_c01141{bottom:971.610000px;}
.yb_c01141{bottom:1005.990000px;}
.ya_c01141{bottom:1028.130000px;}
.y9_c01141{bottom:1050.450000px;}
.y8_c01141{bottom:1072.770000px;}
.y7_c01141{bottom:1095.090000px;}
.y6_c01141{bottom:1117.410000px;}
.y5_c01141{bottom:1139.940000px;}
.y2_c01141{bottom:1174.320000px;}
.y1_c01141{bottom:1194.660000px;}
.h8_c01141{height:28.800000px;}
.h5_c01141{height:29.340000px;}
.h7_c01141{height:32.400000px;}
.h2_c01141{height:48.062812px;}
.h3_c01141{height:50.229844px;}
.h6_c01141{height:53.428008px;}
.h4_c01141{height:64.546875px;}
.h0_c01141{height:1262.880000px;}
.h1_c01141{height:1263.000000px;}
.w2_c01141{width:256.530000px;}
.w3_c01141{width:283.530000px;}
.w4_c01141{width:287.895000px;}
.w0_c01141{width:892.980000px;}
.w1_c01141{width:893.250000px;}
.x0_c01141{left:0.000000px;}
.x1_c01141{left:127.656000px;}
.x5_c01141{left:142.965000px;}
.x3_c01141{left:395.355000px;}
.x2_c01141{left:411.195000px;}
.x6_c01141{left:451.335000px;}
.x4_c01141{left:741.570000px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls1_c01141{letter-spacing:-0.512000pt;}
.ls0_c01141{letter-spacing:0.000000pt;}
.ws0_c01141{word-spacing:0.000000pt;}
._2_c01141{margin-left:-3.797312pt;}
._1_c01141{margin-left:-2.752000pt;}
._0_c01141{margin-left:-1.119014pt;}
._3_c01141{width:0.896000pt;}
._8_c01141{width:1.984000pt;}
._9_c01141{width:3.008000pt;}
._7_c01141{width:4.096000pt;}
._a_c01141{width:8.576000pt;}
._b_c01141{width:13.131674pt;}
._5_c01141{width:14.047014pt;}
._4_c01141{width:15.616000pt;}
._6_c01141{width:48.704000pt;}
.fs2_c01141{font-size:53.120000pt;}
.fs0_c01141{font-size:58.880000pt;}
.fs1_c01141{font-size:64.000000pt;}
.y0_c01141{bottom:0.000000pt;}
.y21_c01141{bottom:13.266667pt;}
.y1d_c01141{bottom:13.773333pt;}
.y1f_c01141{bottom:16.626667pt;}
.y4_c01141{bottom:51.232000pt;}
.y3_c01141{bottom:69.152000pt;}
.y1b_c01141{bottom:126.432000pt;}
.y1a_c01141{bottom:156.986667pt;}
.y19_c01141{bottom:176.666667pt;}
.y18_c01141{bottom:196.506667pt;}
.y1e_c01141{bottom:211.560000pt;}
.y20_c01141{bottom:213.320000pt;}
.y17_c01141{bottom:241.946667pt;}
.y16_c01141{bottom:643.773333pt;}
.y15_c01141{bottom:663.453333pt;}
.y14_c01141{bottom:683.293333pt;}
.y13_c01141{bottom:703.133333pt;}
.y12_c01141{bottom:722.973333pt;}
.y11_c01141{bottom:742.813333pt;}
.y10_c01141{bottom:762.853333pt;}
.yf_c01141{bottom:782.693333pt;}
.ye_c01141{bottom:802.533333pt;}
.yd_c01141{bottom:833.093333pt;}
.y1c_c01141{bottom:835.320000pt;}
.yc_c01141{bottom:863.653333pt;}
.yb_c01141{bottom:894.213333pt;}
.ya_c01141{bottom:913.893333pt;}
.y9_c01141{bottom:933.733333pt;}
.y8_c01141{bottom:953.573333pt;}
.y7_c01141{bottom:973.413333pt;}
.y6_c01141{bottom:993.253333pt;}
.y5_c01141{bottom:1013.280000pt;}
.y2_c01141{bottom:1043.840000pt;}
.y1_c01141{bottom:1061.920000pt;}
.h8_c01141{height:25.600000pt;}
.h5_c01141{height:26.080000pt;}
.h7_c01141{height:28.800000pt;}
.h2_c01141{height:42.722500pt;}
.h3_c01141{height:44.648750pt;}
.h6_c01141{height:47.491563pt;}
.h4_c01141{height:57.375000pt;}
.h0_c01141{height:1122.560000pt;}
.h1_c01141{height:1122.666667pt;}
.w2_c01141{width:228.026667pt;}
.w3_c01141{width:252.026667pt;}
.w4_c01141{width:255.906667pt;}
.w0_c01141{width:793.760000pt;}
.w1_c01141{width:794.000000pt;}
.x0_c01141{left:0.000000pt;}
.x1_c01141{left:113.472000pt;}
.x5_c01141{left:127.080000pt;}
.x3_c01141{left:351.426667pt;}
.x2_c01141{left:365.506667pt;}
.x6_c01141{left:401.186667pt;}
.x4_c01141{left:659.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_c01142 {
    display:none;
  }
  .loading-indicator_c01142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01142 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01142 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01142" -> "#page-container .classname_c01142")
 */
.pf_c01142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01142 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01142 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01142 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01142 {overflow:visible;}
  }
}
.c_c01142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01142 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01142:after { /* webkit #35443 */
  content: '';
}
.t_c01142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01142 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01142 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01142 { /* info for Javascript */
  display:none;
}
.l_c01142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01142:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01142;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01142;src:url('chunks/assets/font_5a35e488f87b631d295559c8.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01142;src:url('chunks/assets/font_15445d20592b51368a2b8607.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01142;src:url('chunks/assets/font_b381b6ffb251f62fcaf8e8c3.woff2')format("woff");}.ff4_c01142{font-family:ff4_c01142;line-height:1.106934;font-style:normal;font-weight: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_c01142;src:url('chunks/assets/font_736f703e138cbdd25fef9365.woff2')format("woff");}.ff5_c01142{font-family:ff5_c01142;line-height:1.104492;font-style:normal;font-weight: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_c01142;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff6_c01142{font-family:ff6_c01142;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01142{vertical-align:0.000000px;}
.ls4_c01142{letter-spacing:-0.720000px;}
.ls3_c01142{letter-spacing:-0.144000px;}
.ls2_c01142{letter-spacing:0.000000px;}
.ls0_c01142{letter-spacing:0.144000px;}
.ls1_c01142{letter-spacing:3.024000px;}
.sc__c01142{text-shadow:none;}
.sc0_c01142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01142{-webkit-text-stroke:0px transparent;}
.sc0_c01142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01142{word-spacing:-20.016000px;}
.ws1_c01142{word-spacing:-19.872000px;}
.ws2_c01142{word-spacing:0.000000px;}
._b_c01142{margin-left:-3.744000px;}
._0_c01142{margin-left:-1.390841px;}
._2_c01142{width:1.008000px;}
._7_c01142{width:2.244024px;}
._10_c01142{width:4.224000px;}
._14_c01142{width:5.688000px;}
._c_c01142{width:8.424000px;}
._11_c01142{width:9.576000px;}
._3_c01142{width:10.656000px;}
._1_c01142{width:11.808000px;}
._4_c01142{width:12.816000px;}
._8_c01142{width:14.124000px;}
._6_c01142{width:16.632000px;}
._5_c01142{width:17.640000px;}
._12_c01142{width:21.096000px;}
._13_c01142{width:22.342841px;}
._9_c01142{width:23.616000px;}
._a_c01142{width:24.672000px;}
._e_c01142{width:41.328000px;}
._f_c01142{width:42.370841px;}
._d_c01142{width:43.416000px;}
.fc1_c01142{color:transparent;}
.fc0_c01142{color:rgb(0,0,0);}
.fs3_c01142{font-size:59.760000px;}
.fs0_c01142{font-size:66.240000px;}
.fs2_c01142{font-size:72.000000px;}
.fs1_c01142{font-size:84.240000px;}
.y32_c01142{bottom:-1.800000px;}
.y0_c01142{bottom:0.000000px;}
.y2e_c01142{bottom:4.140000px;}
.y30_c01142{bottom:42.825000px;}
.y4_c01142{bottom:57.636000px;}
.y3_c01142{bottom:77.796000px;}
.y2c_c01142{bottom:125.676000px;}
.y2b_c01142{bottom:159.870000px;}
.y2a_c01142{bottom:182.010000px;}
.y2f_c01142{bottom:194.625000px;}
.y29_c01142{bottom:204.150000px;}
.y28_c01142{bottom:226.650000px;}
.y27_c01142{bottom:248.970000px;}
.y26_c01142{bottom:271.470000px;}
.y25_c01142{bottom:293.655000px;}
.y24_c01142{bottom:315.975000px;}
.y23_c01142{bottom:338.295000px;}
.y22_c01142{bottom:360.615000px;}
.y21_c01142{bottom:382.935000px;}
.y20_c01142{bottom:405.255000px;}
.y1f_c01142{bottom:427.575000px;}
.y1e_c01142{bottom:450.255000px;}
.y1d_c01142{bottom:472.575000px;}
.y1c_c01142{bottom:494.715000px;}
.y1b_c01142{bottom:517.035000px;}
.y1a_c01142{bottom:539.535000px;}
.y19_c01142{bottom:561.855000px;}
.y18_c01142{bottom:584.205000px;}
.y17_c01142{bottom:606.345000px;}
.y16_c01142{bottom:628.665000px;}
.y15_c01142{bottom:650.985000px;}
.y14_c01142{bottom:685.545000px;}
.y2d_c01142{bottom:704.445000px;}
.y13_c01142{bottom:721.005000px;}
.y12_c01142{bottom:758.985000px;}
.y11_c01142{bottom:796.965000px;}
.y10_c01142{bottom:834.045000px;}
.y31_c01142{bottom:840.345000px;}
.yf_c01142{bottom:868.650000px;}
.ye_c01142{bottom:890.610000px;}
.yd_c01142{bottom:925.170000px;}
.yc_c01142{bottom:959.550000px;}
.yb_c01142{bottom:980.790000px;}
.ya_c01142{bottom:1002.930000px;}
.y9_c01142{bottom:1040.550000px;}
.y8_c01142{bottom:1062.690000px;}
.y7_c01142{bottom:1090.770000px;}
.y6_c01142{bottom:1115.070000px;}
.y5_c01142{bottom:1137.420000px;}
.y2_c01142{bottom:1174.320000px;}
.y1_c01142{bottom:1194.660000px;}
.hb_c01142{height:11.902500px;}
.h8_c01142{height:18.000000px;}
.h2_c01142{height:48.062812px;}
.h3_c01142{height:50.229844px;}
.h9_c01142{height:53.428008px;}
.hc_c01142{height:53.953242px;}
.ha_c01142{height:56.700000px;}
.h7_c01142{height:64.371094px;}
.h5_c01142{height:64.546875px;}
.h6_c01142{height:76.054570px;}
.h4_c01142{height:87.859687px;}
.h0_c01142{height:1262.880000px;}
.h1_c01142{height:1263.000000px;}
.w4_c01142{width:21.600000px;}
.w3_c01142{width:280.275000px;}
.w2_c01142{width:298.470000px;}
.w0_c01142{width:892.980000px;}
.w1_c01142{width:893.250000px;}
.x0_c01142{left:0.000000px;}
.x8_c01142{left:10.785000px;}
.x2_c01142{left:127.656000px;}
.x1_c01142{left:169.950000px;}
.x7_c01142{left:243.225000px;}
.x6_c01142{left:501.960000px;}
.x4_c01142{left:530.385000px;}
.x5_c01142{left:563.685000px;}
.x3_c01142{left:740.490000px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls4_c01142{letter-spacing:-0.640000pt;}
.ls3_c01142{letter-spacing:-0.128000pt;}
.ls2_c01142{letter-spacing:0.000000pt;}
.ls0_c01142{letter-spacing:0.128000pt;}
.ls1_c01142{letter-spacing:2.688000pt;}
.ws0_c01142{word-spacing:-17.792000pt;}
.ws1_c01142{word-spacing:-17.664000pt;}
.ws2_c01142{word-spacing:0.000000pt;}
._b_c01142{margin-left:-3.328000pt;}
._0_c01142{margin-left:-1.236303pt;}
._2_c01142{width:0.896000pt;}
._7_c01142{width:1.994688pt;}
._10_c01142{width:3.754667pt;}
._14_c01142{width:5.056000pt;}
._c_c01142{width:7.488000pt;}
._11_c01142{width:8.512000pt;}
._3_c01142{width:9.472000pt;}
._1_c01142{width:10.496000pt;}
._4_c01142{width:11.392000pt;}
._8_c01142{width:12.554667pt;}
._6_c01142{width:14.784000pt;}
._5_c01142{width:15.680000pt;}
._12_c01142{width:18.752000pt;}
._13_c01142{width:19.860303pt;}
._9_c01142{width:20.992000pt;}
._a_c01142{width:21.930667pt;}
._e_c01142{width:36.736000pt;}
._f_c01142{width:37.662970pt;}
._d_c01142{width:38.592000pt;}
.fs3_c01142{font-size:53.120000pt;}
.fs0_c01142{font-size:58.880000pt;}
.fs2_c01142{font-size:64.000000pt;}
.fs1_c01142{font-size:74.880000pt;}
.y32_c01142{bottom:-1.600000pt;}
.y0_c01142{bottom:0.000000pt;}
.y2e_c01142{bottom:3.680000pt;}
.y30_c01142{bottom:38.066667pt;}
.y4_c01142{bottom:51.232000pt;}
.y3_c01142{bottom:69.152000pt;}
.y2c_c01142{bottom:111.712000pt;}
.y2b_c01142{bottom:142.106667pt;}
.y2a_c01142{bottom:161.786667pt;}
.y2f_c01142{bottom:173.000000pt;}
.y29_c01142{bottom:181.466667pt;}
.y28_c01142{bottom:201.466667pt;}
.y27_c01142{bottom:221.306667pt;}
.y26_c01142{bottom:241.306667pt;}
.y25_c01142{bottom:261.026667pt;}
.y24_c01142{bottom:280.866667pt;}
.y23_c01142{bottom:300.706667pt;}
.y22_c01142{bottom:320.546667pt;}
.y21_c01142{bottom:340.386667pt;}
.y20_c01142{bottom:360.226667pt;}
.y1f_c01142{bottom:380.066667pt;}
.y1e_c01142{bottom:400.226667pt;}
.y1d_c01142{bottom:420.066667pt;}
.y1c_c01142{bottom:439.746667pt;}
.y1b_c01142{bottom:459.586667pt;}
.y1a_c01142{bottom:479.586667pt;}
.y19_c01142{bottom:499.426667pt;}
.y18_c01142{bottom:519.293333pt;}
.y17_c01142{bottom:538.973333pt;}
.y16_c01142{bottom:558.813333pt;}
.y15_c01142{bottom:578.653333pt;}
.y14_c01142{bottom:609.373333pt;}
.y2d_c01142{bottom:626.173333pt;}
.y13_c01142{bottom:640.893333pt;}
.y12_c01142{bottom:674.653333pt;}
.y11_c01142{bottom:708.413333pt;}
.y10_c01142{bottom:741.373333pt;}
.y31_c01142{bottom:746.973333pt;}
.yf_c01142{bottom:772.133333pt;}
.ye_c01142{bottom:791.653333pt;}
.yd_c01142{bottom:822.373333pt;}
.yc_c01142{bottom:852.933333pt;}
.yb_c01142{bottom:871.813333pt;}
.ya_c01142{bottom:891.493333pt;}
.y9_c01142{bottom:924.933333pt;}
.y8_c01142{bottom:944.613333pt;}
.y7_c01142{bottom:969.573333pt;}
.y6_c01142{bottom:991.173333pt;}
.y5_c01142{bottom:1011.040000pt;}
.y2_c01142{bottom:1043.840000pt;}
.y1_c01142{bottom:1061.920000pt;}
.hb_c01142{height:10.580000pt;}
.h8_c01142{height:16.000000pt;}
.h2_c01142{height:42.722500pt;}
.h3_c01142{height:44.648750pt;}
.h9_c01142{height:47.491563pt;}
.hc_c01142{height:47.958438pt;}
.ha_c01142{height:50.400000pt;}
.h7_c01142{height:57.218750pt;}
.h5_c01142{height:57.375000pt;}
.h6_c01142{height:67.604062pt;}
.h4_c01142{height:78.097500pt;}
.h0_c01142{height:1122.560000pt;}
.h1_c01142{height:1122.666667pt;}
.w4_c01142{width:19.200000pt;}
.w3_c01142{width:249.133333pt;}
.w2_c01142{width:265.306667pt;}
.w0_c01142{width:793.760000pt;}
.w1_c01142{width:794.000000pt;}
.x0_c01142{left:0.000000pt;}
.x8_c01142{left:9.586667pt;}
.x2_c01142{left:113.472000pt;}
.x1_c01142{left:151.066667pt;}
.x7_c01142{left:216.200000pt;}
.x6_c01142{left:446.186667pt;}
.x4_c01142{left:471.453333pt;}
.x5_c01142{left:501.053333pt;}
.x3_c01142{left:658.213333pt;}
}





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

.ir_c01143:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01143;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01143;src:url('chunks/assets/font_0293630c588770b889dfe000.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01143;src:url('chunks/assets/font_59b90da6afb7c5475da3d9b2.woff2')format("woff");}.ff3_c01143{font-family:ff3_c01143;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01143;src:url('chunks/assets/font_f58679b5baa09b2046a15bbf.woff2')format("woff");}.ff4_c01143{font-family:ff4_c01143;line-height:1.106934;font-style:normal;font-weight: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_c01143;src:url('chunks/assets/font_35cb59fb11f47154cc429424.woff2')format("woff");}.ff5_c01143{font-family:ff5_c01143;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01143{vertical-align:0.000000px;}
.ls1_c01143{letter-spacing:-0.720000px;}
.ls2_c01143{letter-spacing:-0.432000px;}
.ls0_c01143{letter-spacing:0.000000px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01143{word-spacing:0.000000px;}
._c_c01143{margin-left:-4.347302px;}
._b_c01143{margin-left:-3.312000px;}
._0_c01143{margin-left:-1.258891px;}
._4_c01143{width:1.008000px;}
._6_c01143{width:2.448000px;}
._2_c01143{width:4.546915px;}
._1_c01143{width:5.976000px;}
._f_c01143{width:7.272000px;}
._d_c01143{width:9.936000px;}
._7_c01143{width:10.944000px;}
._3_c01143{width:12.672000px;}
._5_c01143{width:13.968000px;}
._e_c01143{width:17.568000px;}
._a_c01143{width:29.194891px;}
._8_c01143{width:30.240000px;}
._9_c01143{width:31.248000px;}
.fc0_c01143{color:rgb(0,0,0);}
.fs2_c01143{font-size:59.760000px;}
.fs0_c01143{font-size:66.240000px;}
.fs1_c01143{font-size:72.000000px;}
.y0_c01143{bottom:0.000000px;}
.y22_c01143{bottom:9.360000px;}
.y24_c01143{bottom:16.395000px;}
.y21_c01143{bottom:26.820000px;}
.y4_c01143{bottom:57.636000px;}
.y3_c01143{bottom:77.796000px;}
.y1f_c01143{bottom:139.536000px;}
.y1e_c01143{bottom:161.670000px;}
.y1d_c01143{bottom:183.990000px;}
.y1c_c01143{bottom:206.490000px;}
.y1b_c01143{bottom:228.810000px;}
.y1a_c01143{bottom:251.130000px;}
.y19_c01143{bottom:273.450000px;}
.y18_c01143{bottom:295.815000px;}
.y17_c01143{bottom:318.135000px;}
.y16_c01143{bottom:340.455000px;}
.y23_c01143{bottom:370.320000px;}
.y15_c01143{bottom:375.015000px;}
.y14_c01143{bottom:405.255000px;}
.y20_c01143{bottom:755.385000px;}
.y13_c01143{bottom:767.265000px;}
.y12_c01143{bottom:801.645000px;}
.y11_c01143{bottom:835.845000px;}
.y10_c01143{bottom:870.270000px;}
.yf_c01143{bottom:904.650000px;}
.ye_c01143{bottom:926.790000px;}
.yd_c01143{bottom:949.110000px;}
.yc_c01143{bottom:971.430000px;}
.yb_c01143{bottom:993.750000px;}
.ya_c01143{bottom:1016.070000px;}
.y9_c01143{bottom:1038.570000px;}
.y8_c01143{bottom:1060.890000px;}
.y7_c01143{bottom:1083.210000px;}
.y6_c01143{bottom:1105.530000px;}
.y5_c01143{bottom:1140.120000px;}
.y2_c01143{bottom:1174.320000px;}
.y1_c01143{bottom:1194.660000px;}
.h8_c01143{height:30.240000px;}
.h6_c01143{height:40.500000px;}
.h2_c01143{height:48.062812px;}
.h3_c01143{height:50.229844px;}
.h7_c01143{height:53.428008px;}
.h5_c01143{height:64.546875px;}
.h4_c01143{height:65.003906px;}
.h0_c01143{height:1262.880000px;}
.h1_c01143{height:1263.000000px;}
.w2_c01143{width:213.150000px;}
.w3_c01143{width:294.690000px;}
.w0_c01143{width:892.980000px;}
.w1_c01143{width:893.250000px;}
.x0_c01143{left:0.000000px;}
.x1_c01143{left:127.656000px;}
.x5_c01143{left:186.525000px;}
.x2_c01143{left:348.195000px;}
.x3_c01143{left:352.515000px;}
.x4_c01143{left:703.410000px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls1_c01143{letter-spacing:-0.640000pt;}
.ls2_c01143{letter-spacing:-0.384000pt;}
.ls0_c01143{letter-spacing:0.000000pt;}
.ws0_c01143{word-spacing:0.000000pt;}
._c_c01143{margin-left:-3.864269pt;}
._b_c01143{margin-left:-2.944000pt;}
._0_c01143{margin-left:-1.119014pt;}
._4_c01143{width:0.896000pt;}
._6_c01143{width:2.176000pt;}
._2_c01143{width:4.041702pt;}
._1_c01143{width:5.312000pt;}
._f_c01143{width:6.464000pt;}
._d_c01143{width:8.832000pt;}
._7_c01143{width:9.728000pt;}
._3_c01143{width:11.264000pt;}
._5_c01143{width:12.416000pt;}
._e_c01143{width:15.616000pt;}
._a_c01143{width:25.951014pt;}
._8_c01143{width:26.880000pt;}
._9_c01143{width:27.776000pt;}
.fs2_c01143{font-size:53.120000pt;}
.fs0_c01143{font-size:58.880000pt;}
.fs1_c01143{font-size:64.000000pt;}
.y0_c01143{bottom:0.000000pt;}
.y22_c01143{bottom:8.320000pt;}
.y24_c01143{bottom:14.573333pt;}
.y21_c01143{bottom:23.840000pt;}
.y4_c01143{bottom:51.232000pt;}
.y3_c01143{bottom:69.152000pt;}
.y1f_c01143{bottom:124.032000pt;}
.y1e_c01143{bottom:143.706667pt;}
.y1d_c01143{bottom:163.546667pt;}
.y1c_c01143{bottom:183.546667pt;}
.y1b_c01143{bottom:203.386667pt;}
.y1a_c01143{bottom:223.226667pt;}
.y19_c01143{bottom:243.066667pt;}
.y18_c01143{bottom:262.946667pt;}
.y17_c01143{bottom:282.786667pt;}
.y16_c01143{bottom:302.626667pt;}
.y23_c01143{bottom:329.173333pt;}
.y15_c01143{bottom:333.346667pt;}
.y14_c01143{bottom:360.226667pt;}
.y20_c01143{bottom:671.453333pt;}
.y13_c01143{bottom:682.013333pt;}
.y12_c01143{bottom:712.573333pt;}
.y11_c01143{bottom:742.973333pt;}
.y10_c01143{bottom:773.573333pt;}
.yf_c01143{bottom:804.133333pt;}
.ye_c01143{bottom:823.813333pt;}
.yd_c01143{bottom:843.653333pt;}
.yc_c01143{bottom:863.493333pt;}
.yb_c01143{bottom:883.333333pt;}
.ya_c01143{bottom:903.173333pt;}
.y9_c01143{bottom:923.173333pt;}
.y8_c01143{bottom:943.013333pt;}
.y7_c01143{bottom:962.853333pt;}
.y6_c01143{bottom:982.693333pt;}
.y5_c01143{bottom:1013.440000pt;}
.y2_c01143{bottom:1043.840000pt;}
.y1_c01143{bottom:1061.920000pt;}
.h8_c01143{height:26.880000pt;}
.h6_c01143{height:36.000000pt;}
.h2_c01143{height:42.722500pt;}
.h3_c01143{height:44.648750pt;}
.h7_c01143{height:47.491563pt;}
.h5_c01143{height:57.375000pt;}
.h4_c01143{height:57.781250pt;}
.h0_c01143{height:1122.560000pt;}
.h1_c01143{height:1122.666667pt;}
.w2_c01143{width:189.466667pt;}
.w3_c01143{width:261.946667pt;}
.w0_c01143{width:793.760000pt;}
.w1_c01143{width:794.000000pt;}
.x0_c01143{left:0.000000pt;}
.x1_c01143{left:113.472000pt;}
.x5_c01143{left:165.800000pt;}
.x2_c01143{left:309.506667pt;}
.x3_c01143{left:313.346667pt;}
.x4_c01143{left:625.253333pt;}
}





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

.ir_c01144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01144;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01144;src:url('chunks/assets/font_aa7f86aeec7bc50ebcda927a.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01144;src:url('chunks/assets/font_f9c89bfeea78b059245f5cb6.woff2')format("woff");}.ff3_c01144{font-family:ff3_c01144;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01144;src:url('chunks/assets/font_086aef8ac7ed61d1ee265b13.woff2')format("woff");}.ff4_c01144{font-family:ff4_c01144;line-height:1.113281;font-style:normal;font-weight: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_c01144;src:url('chunks/assets/font_53b2ec8e2182e15cbe94998a.woff2')format("woff");}.ff5_c01144{font-family:ff5_c01144;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01144{vertical-align:0.000000px;}
.ls3_c01144{letter-spacing:-0.432000px;}
.ls2_c01144{letter-spacing:-0.053400px;}
.ls0_c01144{letter-spacing:0.000000px;}
.ls1_c01144{letter-spacing:0.288000px;}
.sc__c01144{text-shadow:none;}
.sc0_c01144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01144{-webkit-text-stroke:0px transparent;}
.sc0_c01144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01144{word-spacing:-16.613280px;}
.ws1_c01144{word-spacing:-16.559880px;}
.ws2_c01144{word-spacing:0.000000px;}
._d_c01144{margin-left:-3.789683px;}
._6_c01144{margin-left:-2.713159px;}
._0_c01144{margin-left:-1.390841px;}
._1_c01144{width:1.224000px;}
._4_c01144{width:2.592000px;}
._5_c01144{width:3.720024px;}
._e_c01144{width:4.824000px;}
._3_c01144{width:6.598817px;}
._2_c01144{width:8.040024px;}
._9_c01144{width:9.720000px;}
._8_c01144{width:13.620024px;}
._7_c01144{width:14.904000px;}
._c_c01144{width:17.352000px;}
._b_c01144{width:18.504000px;}
._a_c01144{width:21.096000px;}
.fc0_c01144{color:rgb(0,0,0);}
.fs2_c01144{font-size:59.760000px;}
.fs0_c01144{font-size:66.240000px;}
.fs1_c01144{font-size:72.000000px;}
.fs3_c01144{font-size:84.240000px;}
.y0_c01144{bottom:0.000000px;}
.y2_c01144{bottom:77.796000px;}
.y1a_c01144{bottom:129.636000px;}
.y19_c01144{bottom:151.950000px;}
.y18_c01144{bottom:174.270000px;}
.y17_c01144{bottom:196.590000px;}
.y16_c01144{bottom:218.910000px;}
.y15_c01144{bottom:241.230000px;}
.y14_c01144{bottom:263.730000px;}
.y13_c01144{bottom:286.095000px;}
.y12_c01144{bottom:308.415000px;}
.y11_c01144{bottom:330.735000px;}
.y10_c01144{bottom:374.295000px;}
.yf_c01144{bottom:446.295000px;}
.ye_c01144{bottom:835.845000px;}
.yd_c01144{bottom:858.210000px;}
.yc_c01144{bottom:880.530000px;}
.yb_c01144{bottom:902.850000px;}
.ya_c01144{bottom:925.170000px;}
.y9_c01144{bottom:947.490000px;}
.y8_c01144{bottom:969.810000px;}
.y7_c01144{bottom:992.130000px;}
.y6_c01144{bottom:1014.450000px;}
.y5_c01144{bottom:1049.010000px;}
.y4_c01144{bottom:1117.590000px;}
.y3_c01144{bottom:1139.940000px;}
.y1_c01144{bottom:1194.660000px;}
.h2_c01144{height:48.062812px;}
.h3_c01144{height:50.229844px;}
.h6_c01144{height:53.428008px;}
.h4_c01144{height:64.546875px;}
.h5_c01144{height:65.003906px;}
.h7_c01144{height:76.054570px;}
.h0_c01144{height:1262.880000px;}
.h1_c01144{height:1263.000000px;}
.w0_c01144{width:892.980000px;}
.w1_c01144{width:893.250000px;}
.x0_c01144{left:0.000000px;}
.x3_c01144{left:127.656000px;}
.x4_c01144{left:165.081000px;}
.x1_c01144{left:169.950000px;}
.x2_c01144{left:740.490000px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls3_c01144{letter-spacing:-0.384000pt;}
.ls2_c01144{letter-spacing:-0.047467pt;}
.ls0_c01144{letter-spacing:0.000000pt;}
.ls1_c01144{letter-spacing:0.256000pt;}
.ws0_c01144{word-spacing:-14.767360pt;}
.ws1_c01144{word-spacing:-14.719893pt;}
.ws2_c01144{word-spacing:0.000000pt;}
._d_c01144{margin-left:-3.368607pt;}
._6_c01144{margin-left:-2.411697pt;}
._0_c01144{margin-left:-1.236303pt;}
._1_c01144{width:1.088000pt;}
._4_c01144{width:2.304000pt;}
._5_c01144{width:3.306688pt;}
._e_c01144{width:4.288000pt;}
._3_c01144{width:5.865615pt;}
._2_c01144{width:7.146688pt;}
._9_c01144{width:8.640000pt;}
._8_c01144{width:12.106688pt;}
._7_c01144{width:13.248000pt;}
._c_c01144{width:15.424000pt;}
._b_c01144{width:16.448000pt;}
._a_c01144{width:18.752000pt;}
.fs2_c01144{font-size:53.120000pt;}
.fs0_c01144{font-size:58.880000pt;}
.fs1_c01144{font-size:64.000000pt;}
.fs3_c01144{font-size:74.880000pt;}
.y0_c01144{bottom:0.000000pt;}
.y2_c01144{bottom:69.152000pt;}
.y1a_c01144{bottom:115.232000pt;}
.y19_c01144{bottom:135.066667pt;}
.y18_c01144{bottom:154.906667pt;}
.y17_c01144{bottom:174.746667pt;}
.y16_c01144{bottom:194.586667pt;}
.y15_c01144{bottom:214.426667pt;}
.y14_c01144{bottom:234.426667pt;}
.y13_c01144{bottom:254.306667pt;}
.y12_c01144{bottom:274.146667pt;}
.y11_c01144{bottom:293.986667pt;}
.y10_c01144{bottom:332.706667pt;}
.yf_c01144{bottom:396.706667pt;}
.ye_c01144{bottom:742.973333pt;}
.yd_c01144{bottom:762.853333pt;}
.yc_c01144{bottom:782.693333pt;}
.yb_c01144{bottom:802.533333pt;}
.ya_c01144{bottom:822.373333pt;}
.y9_c01144{bottom:842.213333pt;}
.y8_c01144{bottom:862.053333pt;}
.y7_c01144{bottom:881.893333pt;}
.y6_c01144{bottom:901.733333pt;}
.y5_c01144{bottom:932.453333pt;}
.y4_c01144{bottom:993.413333pt;}
.y3_c01144{bottom:1013.280000pt;}
.y1_c01144{bottom:1061.920000pt;}
.h2_c01144{height:42.722500pt;}
.h3_c01144{height:44.648750pt;}
.h6_c01144{height:47.491563pt;}
.h4_c01144{height:57.375000pt;}
.h5_c01144{height:57.781250pt;}
.h7_c01144{height:67.604062pt;}
.h0_c01144{height:1122.560000pt;}
.h1_c01144{height:1122.666667pt;}
.w0_c01144{width:793.760000pt;}
.w1_c01144{width:794.000000pt;}
.x0_c01144{left:0.000000pt;}
.x3_c01144{left:113.472000pt;}
.x4_c01144{left:146.738667pt;}
.x1_c01144{left:151.066667pt;}
.x2_c01144{left:658.213333pt;}
}





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

.ir_c01145:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01145;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01145;src:url('chunks/assets/font_8aca8ee231d93f84059734cc.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01145;src:url('chunks/assets/font_0ffc01e784a4c264875380bc.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01145;src:url('chunks/assets/font_6d57dc0de577a79d5306dd4e.woff2')format("woff");}.ff4_c01145{font-family:ff4_c01145;line-height:0.991699;font-style:normal;font-weight: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_c01145;src:url('chunks/assets/font_808346628234e2f897c6b860.woff2')format("woff");}.ff5_c01145{font-family:ff5_c01145;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01145{vertical-align:0.000000px;}
.ls1_c01145{letter-spacing:-0.576000px;}
.ls0_c01145{letter-spacing:0.000000px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01145{word-spacing:0.000000px;}
._1_c01145{margin-left:-3.672000px;}
._5_c01145{margin-left:-2.450218px;}
._0_c01145{margin-left:-1.258891px;}
._3_c01145{width:1.147565px;}
._4_c01145{width:2.506867px;}
._8_c01145{width:5.256000px;}
._7_c01145{width:6.696000px;}
._6_c01145{width:7.704000px;}
._9_c01145{width:11.016000px;}
._2_c01145{width:18.144000px;}
.fc0_c01145{color:rgb(0,0,0);}
.fs3_c01145{font-size:59.760000px;}
.fs0_c01145{font-size:66.240000px;}
.fs1_c01145{font-size:72.000000px;}
.fs2_c01145{font-size:95.760000px;}
.y0_c01145{bottom:0.000000px;}
.y1b_c01145{bottom:10.980000px;}
.y4_c01145{bottom:57.636000px;}
.y3_c01145{bottom:77.796000px;}
.y19_c01145{bottom:473.295000px;}
.y18_c01145{bottom:516.495000px;}
.y17_c01145{bottom:559.695000px;}
.y16_c01145{bottom:603.105000px;}
.y1a_c01145{bottom:634.425000px;}
.y15_c01145{bottom:643.785000px;}
.y1c_c01145{bottom:646.665000px;}
.y14_c01145{bottom:673.125000px;}
.y13_c01145{bottom:815.325000px;}
.y12_c01145{bottom:837.465000px;}
.y11_c01145{bottom:859.830000px;}
.y10_c01145{bottom:882.150000px;}
.yf_c01145{bottom:904.470000px;}
.ye_c01145{bottom:926.790000px;}
.yd_c01145{bottom:949.110000px;}
.yc_c01145{bottom:971.430000px;}
.yb_c01145{bottom:993.750000px;}
.ya_c01145{bottom:1016.070000px;}
.y9_c01145{bottom:1050.630000px;}
.y8_c01145{bottom:1072.770000px;}
.y7_c01145{bottom:1095.090000px;}
.y6_c01145{bottom:1117.410000px;}
.y5_c01145{bottom:1139.940000px;}
.y2_c01145{bottom:1174.320000px;}
.y1_c01145{bottom:1194.660000px;}
.h6_c01145{height:24.840000px;}
.h2_c01145{height:48.062812px;}
.h3_c01145{height:50.229844px;}
.h7_c01145{height:53.428008px;}
.h4_c01145{height:64.546875px;}
.h5_c01145{height:69.575625px;}
.h0_c01145{height:1262.880000px;}
.h1_c01145{height:1263.000000px;}
.w2_c01145{width:234.030000px;}
.w3_c01145{width:241.935000px;}
.w0_c01145{width:892.980000px;}
.w1_c01145{width:893.250000px;}
.x0_c01145{left:0.000000px;}
.x1_c01145{left:127.656000px;}
.x2_c01145{left:355.755000px;}
.x3_c01145{left:372.315000px;}
.x4_c01145{left:526.620000px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls1_c01145{letter-spacing:-0.512000pt;}
.ls0_c01145{letter-spacing:0.000000pt;}
.ws0_c01145{word-spacing:0.000000pt;}
._1_c01145{margin-left:-3.264000pt;}
._5_c01145{margin-left:-2.177971pt;}
._0_c01145{margin-left:-1.119014pt;}
._3_c01145{width:1.020058pt;}
._4_c01145{width:2.228326pt;}
._8_c01145{width:4.672000pt;}
._7_c01145{width:5.952000pt;}
._6_c01145{width:6.848000pt;}
._9_c01145{width:9.792000pt;}
._2_c01145{width:16.128000pt;}
.fs3_c01145{font-size:53.120000pt;}
.fs0_c01145{font-size:58.880000pt;}
.fs1_c01145{font-size:64.000000pt;}
.fs2_c01145{font-size:85.120000pt;}
.y0_c01145{bottom:0.000000pt;}
.y1b_c01145{bottom:9.760000pt;}
.y4_c01145{bottom:51.232000pt;}
.y3_c01145{bottom:69.152000pt;}
.y19_c01145{bottom:420.706667pt;}
.y18_c01145{bottom:459.106667pt;}
.y17_c01145{bottom:497.506667pt;}
.y16_c01145{bottom:536.093333pt;}
.y1a_c01145{bottom:563.933333pt;}
.y15_c01145{bottom:572.253333pt;}
.y1c_c01145{bottom:574.813333pt;}
.y14_c01145{bottom:598.333333pt;}
.y13_c01145{bottom:724.733333pt;}
.y12_c01145{bottom:744.413333pt;}
.y11_c01145{bottom:764.293333pt;}
.y10_c01145{bottom:784.133333pt;}
.yf_c01145{bottom:803.973333pt;}
.ye_c01145{bottom:823.813333pt;}
.yd_c01145{bottom:843.653333pt;}
.yc_c01145{bottom:863.493333pt;}
.yb_c01145{bottom:883.333333pt;}
.ya_c01145{bottom:903.173333pt;}
.y9_c01145{bottom:933.893333pt;}
.y8_c01145{bottom:953.573333pt;}
.y7_c01145{bottom:973.413333pt;}
.y6_c01145{bottom:993.253333pt;}
.y5_c01145{bottom:1013.280000pt;}
.y2_c01145{bottom:1043.840000pt;}
.y1_c01145{bottom:1061.920000pt;}
.h6_c01145{height:22.080000pt;}
.h2_c01145{height:42.722500pt;}
.h3_c01145{height:44.648750pt;}
.h7_c01145{height:47.491563pt;}
.h4_c01145{height:57.375000pt;}
.h5_c01145{height:61.845000pt;}
.h0_c01145{height:1122.560000pt;}
.h1_c01145{height:1122.666667pt;}
.w2_c01145{width:208.026667pt;}
.w3_c01145{width:215.053333pt;}
.w0_c01145{width:793.760000pt;}
.w1_c01145{width:794.000000pt;}
.x0_c01145{left:0.000000pt;}
.x1_c01145{left:113.472000pt;}
.x2_c01145{left:316.226667pt;}
.x3_c01145{left:330.946667pt;}
.x4_c01145{left:468.106667pt;}
}





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

.ir_c01146:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01146;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01146;src:url('chunks/assets/font_803ac8c536eee51b831e52d8.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01146;src:url('chunks/assets/font_b97fb54fb532b5fb204130bc.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01146;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01146{font-family:ff4_c01146;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:ff5_c01146;src:url('chunks/assets/font_d69b94c89d19ae42c77d06fe.woff2')format("woff");}.ff5_c01146{font-family:ff5_c01146;line-height:0.915039;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_f3332e5402953e363b1933df.woff2')format("woff");}.ff6_c01146{font-family:ff6_c01146;line-height:1.009766;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff7_c01146{font-family:ff7_c01146;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:ff8_c01146;src:url('chunks/assets/font_af71121b84ae9f1bd2112f4a.woff2')format("woff");}.ff8_c01146{font-family:ff8_c01146;line-height:1.106934;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_c33459b9388cf61c6169bc39.woff2')format("woff");}.ff9_c01146{font-family:ff9_c01146;line-height:1.104492;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_766ce47f2f526609697f210e.woff2')format("woff");}.ffa_c01146{font-family:ffa_c01146;line-height:1.575000;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_0a537575babe281ac7532cc3.woff2')format("woff");}.ffb_c01146{font-family:ffb_c01146;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01146{vertical-align:0.000000px;}
.ls4_c01146{letter-spacing:-1.680000px;}
.ls3_c01146{letter-spacing:-0.540600px;}
.ls6_c01146{letter-spacing:-0.247800px;}
.ls5_c01146{letter-spacing:-0.181200px;}
.ls2_c01146{letter-spacing:0.000000px;}
.ls7_c01146{letter-spacing:0.152400px;}
.ls0_c01146{letter-spacing:20.784000px;}
.ls1_c01146{letter-spacing:20.808000px;}
.sc__c01146{text-shadow:none;}
.sc1_c01146{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01146{-webkit-text-stroke:0px transparent;}
.sc1_c01146{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01146{word-spacing:-20.554560px;}
.ws2_c01146{word-spacing:-18.874560px;}
.ws0_c01146{word-spacing:-18.000000px;}
.ws3_c01146{word-spacing:0.000000px;}
._7_c01146{margin-left:-4.124082px;}
._2_c01146{margin-left:-2.695848px;}
._0_c01146{margin-left:-1.390841px;}
._1_c01146{width:1.595266px;}
._3_c01146{width:2.828076px;}
._4_c01146{width:4.104000px;}
._c_c01146{width:5.316734px;}
._5_c01146{width:6.912000px;}
._6_c01146{width:7.932024px;}
._b_c01146{width:10.724524px;}
._a_c01146{width:11.736000px;}
._8_c01146{width:22.248000px;}
._9_c01146{width:23.495599px;}
.fc1_c01146{color:rgb(238,119,0);}
.fc0_c01146{color:rgb(0,0,0);}
.fs5_c01146{font-size:38.880000px;}
.fs4_c01146{font-size:48.240000px;}
.fs6_c01146{font-size:59.760000px;}
.fs0_c01146{font-size:66.240000px;}
.fs2_c01146{font-size:72.000000px;}
.fs3_c01146{font-size:84.240000px;}
.fs1_c01146{font-size:95.760000px;}
.y0_c01146{bottom:0.000000px;}
.y6_c01146{bottom:5.040000px;}
.y10_c01146{bottom:5.055000px;}
.ya_c01146{bottom:5.235000px;}
.yd_c01146{bottom:8.820000px;}
.y5_c01146{bottom:31.140000px;}
.y8_c01146{bottom:31.320000px;}
.yc_c01146{bottom:40.860000px;}
.y2_c01146{bottom:77.796000px;}
.y31_c01146{bottom:109.296000px;}
.y30_c01146{bottom:127.476000px;}
.y2f_c01146{bottom:132.696000px;}
.y2e_c01146{bottom:145.656000px;}
.y2d_c01146{bottom:164.010000px;}
.y2c_c01146{bottom:182.190000px;}
.y2b_c01146{bottom:200.370000px;}
.y2a_c01146{bottom:205.590000px;}
.y29_c01146{bottom:250.410000px;}
.y28_c01146{bottom:274.170000px;}
.y27_c01146{bottom:297.975000px;}
.y26_c01146{bottom:321.915000px;}
.y25_c01146{bottom:345.675000px;}
.y24_c01146{bottom:369.435000px;}
.y22_c01146{bottom:393.195000px;}
.y23_c01146{bottom:399.135000px;}
.y21_c01146{bottom:417.135000px;}
.y20_c01146{bottom:440.895000px;}
.y1f_c01146{bottom:464.655000px;}
.y1e_c01146{bottom:488.415000px;}
.y1d_c01146{bottom:512.175000px;}
.y1c_c01146{bottom:551.055000px;}
.y1a_c01146{bottom:574.845000px;}
.y1b_c01146{bottom:580.785000px;}
.y19_c01146{bottom:598.785000px;}
.y18_c01146{bottom:622.725000px;}
.y17_c01146{bottom:646.305000px;}
.y16_c01146{bottom:670.065000px;}
.y15_c01146{bottom:693.825000px;}
.y14_c01146{bottom:717.765000px;}
.y13_c01146{bottom:741.525000px;}
.y12_c01146{bottom:765.285000px;}
.y11_c01146{bottom:810.465000px;}
.yf_c01146{bottom:872.775000px;}
.ye_c01146{bottom:872.790000px;}
.yb_c01146{bottom:927.150000px;}
.y9_c01146{bottom:991.215000px;}
.y7_c01146{bottom:991.230000px;}
.y4_c01146{bottom:1045.770000px;}
.y3_c01146{bottom:1131.120000px;}
.y1_c01146{bottom:1194.660000px;}
.h12_c01146{height:41.484960px;}
.h11_c01146{height:43.246406px;}
.h2_c01146{height:48.062812px;}
.h3_c01146{height:50.229844px;}
.h7_c01146{height:52.382812px;}
.h5_c01146{height:54.345000px;}
.hc_c01146{height:54.351000px;}
.hd_c01146{height:54.360000px;}
.h8_c01146{height:54.525000px;}
.h9_c01146{height:54.531000px;}
.ha_c01146{height:54.540000px;}
.h6_c01146{height:63.550195px;}
.h13_c01146{height:63.763920px;}
.hb_c01146{height:64.065000px;}
.hf_c01146{height:64.546875px;}
.h4_c01146{height:69.575625px;}
.he_c01146{height:87.859687px;}
.h10_c01146{height:1262.865000px;}
.h0_c01146{height:1262.880000px;}
.h1_c01146{height:1263.000000px;}
.w3_c01146{width:230.415000px;}
.w4_c01146{width:230.430000px;}
.w2_c01146{width:403.626000px;}
.w5_c01146{width:892.957500px;}
.w0_c01146{width:892.980000px;}
.w1_c01146{width:893.250000px;}
.x0_c01146{left:0.000000px;}
.x4_c01146{left:10.251000px;}
.x5_c01146{left:31.485000px;}
.x3_c01146{left:127.656000px;}
.xb_c01146{left:146.016000px;}
.x1_c01146{left:169.770000px;}
.x7_c01146{left:208.987500px;}
.x8_c01146{left:228.990000px;}
.x6_c01146{left:531.300000px;}
.x9_c01146{left:639.262500px;}
.xa_c01146{left:659.265000px;}
.x2_c01146{left:740.490000px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls4_c01146{letter-spacing:-1.493333pt;}
.ls3_c01146{letter-spacing:-0.480533pt;}
.ls6_c01146{letter-spacing:-0.220267pt;}
.ls5_c01146{letter-spacing:-0.161067pt;}
.ls2_c01146{letter-spacing:0.000000pt;}
.ls7_c01146{letter-spacing:0.135467pt;}
.ls0_c01146{letter-spacing:18.474667pt;}
.ls1_c01146{letter-spacing:18.496000pt;}
.ws1_c01146{word-spacing:-18.270720pt;}
.ws2_c01146{word-spacing:-16.777387pt;}
.ws0_c01146{word-spacing:-16.000000pt;}
.ws3_c01146{word-spacing:0.000000pt;}
._7_c01146{margin-left:-3.665851pt;}
._2_c01146{margin-left:-2.396310pt;}
._0_c01146{margin-left:-1.236303pt;}
._1_c01146{width:1.418014pt;}
._3_c01146{width:2.513845pt;}
._4_c01146{width:3.648000pt;}
._c_c01146{width:4.725986pt;}
._5_c01146{width:6.144000pt;}
._6_c01146{width:7.050688pt;}
._b_c01146{width:9.532910pt;}
._a_c01146{width:10.432000pt;}
._8_c01146{width:19.776000pt;}
._9_c01146{width:20.884977pt;}
.fs5_c01146{font-size:34.560000pt;}
.fs4_c01146{font-size:42.880000pt;}
.fs6_c01146{font-size:53.120000pt;}
.fs0_c01146{font-size:58.880000pt;}
.fs2_c01146{font-size:64.000000pt;}
.fs3_c01146{font-size:74.880000pt;}
.fs1_c01146{font-size:85.120000pt;}
.y0_c01146{bottom:0.000000pt;}
.y6_c01146{bottom:4.480000pt;}
.y10_c01146{bottom:4.493333pt;}
.ya_c01146{bottom:4.653333pt;}
.yd_c01146{bottom:7.840000pt;}
.y5_c01146{bottom:27.680000pt;}
.y8_c01146{bottom:27.840000pt;}
.yc_c01146{bottom:36.320000pt;}
.y2_c01146{bottom:69.152000pt;}
.y31_c01146{bottom:97.152000pt;}
.y30_c01146{bottom:113.312000pt;}
.y2f_c01146{bottom:117.952000pt;}
.y2e_c01146{bottom:129.472000pt;}
.y2d_c01146{bottom:145.786667pt;}
.y2c_c01146{bottom:161.946667pt;}
.y2b_c01146{bottom:178.106667pt;}
.y2a_c01146{bottom:182.746667pt;}
.y29_c01146{bottom:222.586667pt;}
.y28_c01146{bottom:243.706667pt;}
.y27_c01146{bottom:264.866667pt;}
.y26_c01146{bottom:286.146667pt;}
.y25_c01146{bottom:307.266667pt;}
.y24_c01146{bottom:328.386667pt;}
.y22_c01146{bottom:349.506667pt;}
.y23_c01146{bottom:354.786667pt;}
.y21_c01146{bottom:370.786667pt;}
.y20_c01146{bottom:391.906667pt;}
.y1f_c01146{bottom:413.026667pt;}
.y1e_c01146{bottom:434.146667pt;}
.y1d_c01146{bottom:455.266667pt;}
.y1c_c01146{bottom:489.826667pt;}
.y1a_c01146{bottom:510.973333pt;}
.y1b_c01146{bottom:516.253333pt;}
.y19_c01146{bottom:532.253333pt;}
.y18_c01146{bottom:553.533333pt;}
.y17_c01146{bottom:574.493333pt;}
.y16_c01146{bottom:595.613333pt;}
.y15_c01146{bottom:616.733333pt;}
.y14_c01146{bottom:638.013333pt;}
.y13_c01146{bottom:659.133333pt;}
.y12_c01146{bottom:680.253333pt;}
.y11_c01146{bottom:720.413333pt;}
.yf_c01146{bottom:775.800000pt;}
.ye_c01146{bottom:775.813333pt;}
.yb_c01146{bottom:824.133333pt;}
.y9_c01146{bottom:881.080000pt;}
.y7_c01146{bottom:881.093333pt;}
.y4_c01146{bottom:929.573333pt;}
.y3_c01146{bottom:1005.440000pt;}
.y1_c01146{bottom:1061.920000pt;}
.h12_c01146{height:36.875520pt;}
.h11_c01146{height:38.441250pt;}
.h2_c01146{height:42.722500pt;}
.h3_c01146{height:44.648750pt;}
.h7_c01146{height:46.562500pt;}
.h5_c01146{height:48.306667pt;}
.hc_c01146{height:48.312000pt;}
.hd_c01146{height:48.320000pt;}
.h8_c01146{height:48.466667pt;}
.h9_c01146{height:48.472000pt;}
.ha_c01146{height:48.480000pt;}
.h6_c01146{height:56.489062pt;}
.h13_c01146{height:56.679040pt;}
.hb_c01146{height:56.946667pt;}
.hf_c01146{height:57.375000pt;}
.h4_c01146{height:61.845000pt;}
.he_c01146{height:78.097500pt;}
.h10_c01146{height:1122.546667pt;}
.h0_c01146{height:1122.560000pt;}
.h1_c01146{height:1122.666667pt;}
.w3_c01146{width:204.813333pt;}
.w4_c01146{width:204.826667pt;}
.w2_c01146{width:358.778667pt;}
.w5_c01146{width:793.740000pt;}
.w0_c01146{width:793.760000pt;}
.w1_c01146{width:794.000000pt;}
.x0_c01146{left:0.000000pt;}
.x4_c01146{left:9.112000pt;}
.x5_c01146{left:27.986667pt;}
.x3_c01146{left:113.472000pt;}
.xb_c01146{left:129.792000pt;}
.x1_c01146{left:150.906667pt;}
.x7_c01146{left:185.766667pt;}
.x8_c01146{left:203.546667pt;}
.x6_c01146{left:472.266667pt;}
.x9_c01146{left:568.233333pt;}
.xa_c01146{left:586.013333pt;}
.x2_c01146{left:658.213333pt;}
}





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

.ir_c01147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01147;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01147;src:url('chunks/assets/font_7847b58ff63650f6fdcaabf5.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01147;src:url('chunks/assets/font_cb3da780fd926ac254a91729.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01147;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:1.113281;font-style:normal;font-weight: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_c01147;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff5_c01147{font-family:ff5_c01147;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:ff6_c01147;src:url('chunks/assets/font_973c672b4ec05d43b3d0dda1.woff2')format("woff");}.ff6_c01147{font-family:ff6_c01147;line-height:1.575000;font-style:normal;font-weight: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_c01147;src:url('chunks/assets/font_a0ad1fea7f065ff487fd7df0.woff2')format("woff");}.ff7_c01147{font-family:ff7_c01147;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01147{vertical-align:0.000000px;}
.ls2_c01147{letter-spacing:-0.504000px;}
.ls5_c01147{letter-spacing:-0.247800px;}
.ls3_c01147{letter-spacing:-0.181200px;}
.ls1_c01147{letter-spacing:0.000000px;}
.ls0_c01147{letter-spacing:0.144000px;}
.ls4_c01147{letter-spacing:0.150000px;}
.sc__c01147{text-shadow:none;}
.sc0_c01147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01147{-webkit-text-stroke:0px transparent;}
.sc0_c01147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01147{word-spacing:-19.512000px;}
.ws1_c01147{word-spacing:0.000000px;}
._7_c01147{margin-left:-5.336698px;}
._6_c01147{margin-left:-4.105109px;}
._f_c01147{margin-left:-2.520000px;}
._0_c01147{margin-left:-1.258891px;}
._5_c01147{width:1.596024px;}
._8_c01147{width:3.528000px;}
._2_c01147{width:5.376024px;}
._1_c01147{width:6.840000px;}
._13_c01147{width:8.688024px;}
._4_c01147{width:10.224000px;}
._3_c01147{width:11.304000px;}
._a_c01147{width:13.464000px;}
._9_c01147{width:15.024024px;}
._17_c01147{width:16.272000px;}
._e_c01147{width:17.472024px;}
._16_c01147{width:18.504000px;}
._12_c01147{width:23.040000px;}
._18_c01147{width:30.128674px;}
._d_c01147{width:31.320000px;}
._c_c01147{width:32.832000px;}
._b_c01147{width:35.064000px;}
._11_c01147{width:42.370891px;}
._10_c01147{width:43.416000px;}
._14_c01147{width:44.928000px;}
._15_c01147{width:45.984024px;}
.fc0_c01147{color:rgb(0,0,0);}
.fs4_c01147{font-size:38.880000px;}
.fs2_c01147{font-size:48.240000px;}
.fs5_c01147{font-size:59.760000px;}
.fs0_c01147{font-size:66.240000px;}
.fs1_c01147{font-size:72.000000px;}
.fs3_c01147{font-size:84.240000px;}
.y0_c01147{bottom:0.000000px;}
.y32_c01147{bottom:16.185000px;}
.y35_c01147{bottom:21.060000px;}
.y31_c01147{bottom:33.645000px;}
.y34_c01147{bottom:38.340000px;}
.y4_c01147{bottom:57.636000px;}
.y3_c01147{bottom:77.796000px;}
.y2f_c01147{bottom:109.296000px;}
.y2e_c01147{bottom:127.476000px;}
.y2d_c01147{bottom:132.696000px;}
.y2c_c01147{bottom:147.276000px;}
.y30_c01147{bottom:181.845000px;}
.y2b_c01147{bottom:224.670000px;}
.y2a_c01147{bottom:248.610000px;}
.y29_c01147{bottom:272.370000px;}
.y28_c01147{bottom:296.175000px;}
.y27_c01147{bottom:319.935000px;}
.y26_c01147{bottom:343.875000px;}
.y25_c01147{bottom:367.635000px;}
.y24_c01147{bottom:391.395000px;}
.y23_c01147{bottom:415.155000px;}
.y22_c01147{bottom:438.915000px;}
.y21_c01147{bottom:462.855000px;}
.y20_c01147{bottom:486.615000px;}
.y1f_c01147{bottom:510.375000px;}
.y1e_c01147{bottom:534.135000px;}
.y1d_c01147{bottom:558.075000px;}
.y1c_c01147{bottom:581.865000px;}
.y1b_c01147{bottom:605.625000px;}
.y1a_c01147{bottom:629.385000px;}
.y19_c01147{bottom:653.325000px;}
.y18_c01147{bottom:677.085000px;}
.y17_c01147{bottom:698.505000px;}
.y16_c01147{bottom:722.265000px;}
.y15_c01147{bottom:765.105000px;}
.y33_c01147{bottom:776.805000px;}
.y13_c01147{bottom:806.505000px;}
.y14_c01147{bottom:812.445000px;}
.y12_c01147{bottom:830.265000px;}
.y11_c01147{bottom:854.250000px;}
.y10_c01147{bottom:878.010000px;}
.yf_c01147{bottom:901.770000px;}
.ye_c01147{bottom:925.530000px;}
.yd_c01147{bottom:949.470000px;}
.yc_c01147{bottom:973.230000px;}
.yb_c01147{bottom:996.990000px;}
.ya_c01147{bottom:1020.750000px;}
.y9_c01147{bottom:1044.690000px;}
.y8_c01147{bottom:1068.450000px;}
.y7_c01147{bottom:1092.210000px;}
.y6_c01147{bottom:1115.970000px;}
.y5_c01147{bottom:1139.940000px;}
.y2_c01147{bottom:1174.320000px;}
.y1_c01147{bottom:1194.660000px;}
.h9_c01147{height:41.484960px;}
.h6_c01147{height:43.246406px;}
.hb_c01147{height:47.340000px;}
.h2_c01147{height:48.062812px;}
.h3_c01147{height:50.229844px;}
.hd_c01147{height:52.020000px;}
.hc_c01147{height:53.428008px;}
.ha_c01147{height:63.763920px;}
.h4_c01147{height:64.546875px;}
.h7_c01147{height:76.054570px;}
.h8_c01147{height:87.859687px;}
.h5_c01147{height:1262.865000px;}
.h0_c01147{height:1262.880000px;}
.h1_c01147{height:1263.000000px;}
.w3_c01147{width:164.175000px;}
.w4_c01147{width:232.770000px;}
.w2_c01147{width:892.957500px;}
.w0_c01147{width:892.980000px;}
.w1_c01147{width:893.250000px;}
.x0_c01147{left:0.000000px;}
.x1_c01147{left:127.656000px;}
.x5_c01147{left:146.016000px;}
.x4_c01147{left:343.695000px;}
.x2_c01147{left:403.792500px;}
.x3_c01147{left:423.795000px;}
.x7_c01147{left:528.960000px;}
.x6_c01147{left:601.320000px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls2_c01147{letter-spacing:-0.448000pt;}
.ls5_c01147{letter-spacing:-0.220267pt;}
.ls3_c01147{letter-spacing:-0.161067pt;}
.ls1_c01147{letter-spacing:0.000000pt;}
.ls0_c01147{letter-spacing:0.128000pt;}
.ls4_c01147{letter-spacing:0.133333pt;}
.ws0_c01147{word-spacing:-17.344000pt;}
.ws1_c01147{word-spacing:0.000000pt;}
._7_c01147{margin-left:-4.743731pt;}
._6_c01147{margin-left:-3.648986pt;}
._f_c01147{margin-left:-2.240000pt;}
._0_c01147{margin-left:-1.119014pt;}
._5_c01147{width:1.418688pt;}
._8_c01147{width:3.136000pt;}
._2_c01147{width:4.778688pt;}
._1_c01147{width:6.080000pt;}
._13_c01147{width:7.722688pt;}
._4_c01147{width:9.088000pt;}
._3_c01147{width:10.048000pt;}
._a_c01147{width:11.968000pt;}
._9_c01147{width:13.354688pt;}
._17_c01147{width:14.464000pt;}
._e_c01147{width:15.530688pt;}
._16_c01147{width:16.448000pt;}
._12_c01147{width:20.480000pt;}
._18_c01147{width:26.781043pt;}
._d_c01147{width:27.840000pt;}
._c_c01147{width:29.184000pt;}
._b_c01147{width:31.168000pt;}
._11_c01147{width:37.663014pt;}
._10_c01147{width:38.592000pt;}
._14_c01147{width:39.936000pt;}
._15_c01147{width:40.874688pt;}
.fs4_c01147{font-size:34.560000pt;}
.fs2_c01147{font-size:42.880000pt;}
.fs5_c01147{font-size:53.120000pt;}
.fs0_c01147{font-size:58.880000pt;}
.fs1_c01147{font-size:64.000000pt;}
.fs3_c01147{font-size:74.880000pt;}
.y0_c01147{bottom:0.000000pt;}
.y32_c01147{bottom:14.386667pt;}
.y35_c01147{bottom:18.720000pt;}
.y31_c01147{bottom:29.906667pt;}
.y34_c01147{bottom:34.080000pt;}
.y4_c01147{bottom:51.232000pt;}
.y3_c01147{bottom:69.152000pt;}
.y2f_c01147{bottom:97.152000pt;}
.y2e_c01147{bottom:113.312000pt;}
.y2d_c01147{bottom:117.952000pt;}
.y2c_c01147{bottom:130.912000pt;}
.y30_c01147{bottom:161.640000pt;}
.y2b_c01147{bottom:199.706667pt;}
.y2a_c01147{bottom:220.986667pt;}
.y29_c01147{bottom:242.106667pt;}
.y28_c01147{bottom:263.266667pt;}
.y27_c01147{bottom:284.386667pt;}
.y26_c01147{bottom:305.666667pt;}
.y25_c01147{bottom:326.786667pt;}
.y24_c01147{bottom:347.906667pt;}
.y23_c01147{bottom:369.026667pt;}
.y22_c01147{bottom:390.146667pt;}
.y21_c01147{bottom:411.426667pt;}
.y20_c01147{bottom:432.546667pt;}
.y1f_c01147{bottom:453.666667pt;}
.y1e_c01147{bottom:474.786667pt;}
.y1d_c01147{bottom:496.066667pt;}
.y1c_c01147{bottom:517.213333pt;}
.y1b_c01147{bottom:538.333333pt;}
.y1a_c01147{bottom:559.453333pt;}
.y19_c01147{bottom:580.733333pt;}
.y18_c01147{bottom:601.853333pt;}
.y17_c01147{bottom:620.893333pt;}
.y16_c01147{bottom:642.013333pt;}
.y15_c01147{bottom:680.093333pt;}
.y33_c01147{bottom:690.493333pt;}
.y13_c01147{bottom:716.893333pt;}
.y14_c01147{bottom:722.173333pt;}
.y12_c01147{bottom:738.013333pt;}
.y11_c01147{bottom:759.333333pt;}
.y10_c01147{bottom:780.453333pt;}
.yf_c01147{bottom:801.573333pt;}
.ye_c01147{bottom:822.693333pt;}
.yd_c01147{bottom:843.973333pt;}
.yc_c01147{bottom:865.093333pt;}
.yb_c01147{bottom:886.213333pt;}
.ya_c01147{bottom:907.333333pt;}
.y9_c01147{bottom:928.613333pt;}
.y8_c01147{bottom:949.733333pt;}
.y7_c01147{bottom:970.853333pt;}
.y6_c01147{bottom:991.973333pt;}
.y5_c01147{bottom:1013.280000pt;}
.y2_c01147{bottom:1043.840000pt;}
.y1_c01147{bottom:1061.920000pt;}
.h9_c01147{height:36.875520pt;}
.h6_c01147{height:38.441250pt;}
.hb_c01147{height:42.080000pt;}
.h2_c01147{height:42.722500pt;}
.h3_c01147{height:44.648750pt;}
.hd_c01147{height:46.240000pt;}
.hc_c01147{height:47.491563pt;}
.ha_c01147{height:56.679040pt;}
.h4_c01147{height:57.375000pt;}
.h7_c01147{height:67.604062pt;}
.h8_c01147{height:78.097500pt;}
.h5_c01147{height:1122.546667pt;}
.h0_c01147{height:1122.560000pt;}
.h1_c01147{height:1122.666667pt;}
.w3_c01147{width:145.933333pt;}
.w4_c01147{width:206.906667pt;}
.w2_c01147{width:793.740000pt;}
.w0_c01147{width:793.760000pt;}
.w1_c01147{width:794.000000pt;}
.x0_c01147{left:0.000000pt;}
.x1_c01147{left:113.472000pt;}
.x5_c01147{left:129.792000pt;}
.x4_c01147{left:305.506667pt;}
.x2_c01147{left:358.926667pt;}
.x3_c01147{left:376.706667pt;}
.x7_c01147{left:470.186667pt;}
.x6_c01147{left:534.506667pt;}
}





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

.ir_c01148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01148;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01148;src:url('chunks/assets/font_4e00b2d5a96ac4cf993afab8.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01148;src:url('chunks/assets/font_610032afeb737d81f7dfdd95.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01148;src:url('chunks/assets/font_8400416cff390a9578a4fa83.woff2')format("woff");}.ff4_c01148{font-family:ff4_c01148;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.ls3_c01148{letter-spacing:-0.720000px;}
.ls2_c01148{letter-spacing:-0.432000px;}
.ls5_c01148{letter-spacing:-0.106800px;}
.ls0_c01148{letter-spacing:0.000000px;}
.ls4_c01148{letter-spacing:0.144000px;}
.ls1_c01148{letter-spacing:0.288000px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01148{word-spacing:-20.304000px;}
.ws1_c01148{word-spacing:0.000000px;}
._11_c01148{margin-left:-5.256000px;}
._7_c01148{margin-left:-4.176000px;}
._4_c01148{margin-left:-2.929159px;}
._0_c01148{margin-left:-1.390841px;}
._3_c01148{width:1.152000px;}
._6_c01148{width:2.304000px;}
._5_c01148{width:3.312000px;}
._b_c01148{width:4.392000px;}
._8_c01148{width:8.712000px;}
._c_c01148{width:13.270841px;}
._2_c01148{width:14.400000px;}
._1_c01148{width:15.480000px;}
._9_c01148{width:16.536024px;}
._a_c01148{width:18.287976px;}
._10_c01148{width:24.480000px;}
._f_c01148{width:25.704000px;}
._13_c01148{width:27.238841px;}
._12_c01148{width:28.584000px;}
._d_c01148{width:40.536000px;}
._e_c01148{width:41.592024px;}
._14_c01148{width:1052.940000px;}
.fc0_c01148{color:rgb(0,0,0);}
.fs2_c01148{font-size:59.760000px;}
.fs0_c01148{font-size:66.240000px;}
.fs1_c01148{font-size:72.000000px;}
.y0_c01148{bottom:0.000000px;}
.y24_c01148{bottom:2.685000px;}
.y22_c01148{bottom:6.651000px;}
.y20_c01148{bottom:14.220000px;}
.y1f_c01148{bottom:31.500000px;}
.y4_c01148{bottom:57.636000px;}
.y3_c01148{bottom:77.796000px;}
.y1d_c01148{bottom:133.236000px;}
.y21_c01148{bottom:143.145000px;}
.y23_c01148{bottom:148.545000px;}
.y1c_c01148{bottom:167.970000px;}
.y1e_c01148{bottom:584.925000px;}
.y1b_c01148{bottom:586.185000px;}
.y1a_c01148{bottom:624.885000px;}
.y19_c01148{bottom:648.645000px;}
.y18_c01148{bottom:672.585000px;}
.y17_c01148{bottom:696.345000px;}
.y16_c01148{bottom:720.105000px;}
.y15_c01148{bottom:743.865000px;}
.y14_c01148{bottom:767.805000px;}
.y13_c01148{bottom:791.565000px;}
.y12_c01148{bottom:815.325000px;}
.y11_c01148{bottom:839.085000px;}
.y10_c01148{bottom:863.070000px;}
.yf_c01148{bottom:886.830000px;}
.ye_c01148{bottom:910.590000px;}
.yd_c01148{bottom:934.350000px;}
.yc_c01148{bottom:958.290000px;}
.yb_c01148{bottom:982.050000px;}
.ya_c01148{bottom:1005.810000px;}
.y9_c01148{bottom:1029.570000px;}
.y8_c01148{bottom:1053.510000px;}
.y7_c01148{bottom:1077.270000px;}
.y6_c01148{bottom:1115.970000px;}
.y5_c01148{bottom:1139.940000px;}
.y2_c01148{bottom:1174.320000px;}
.y1_c01148{bottom:1194.660000px;}
.h8_c01148{height:16.560000px;}
.h7_c01148{height:20.520000px;}
.h5_c01148{height:45.180000px;}
.h2_c01148{height:48.062812px;}
.h3_c01148{height:50.229844px;}
.h6_c01148{height:53.428008px;}
.h4_c01148{height:64.546875px;}
.h0_c01148{height:1262.880000px;}
.h1_c01148{height:1263.000000px;}
.w2_c01148{width:201.090000px;}
.w3_c01148{width:210.270000px;}
.w4_c01148{width:215.865000px;}
.w0_c01148{width:892.980000px;}
.w1_c01148{width:893.250000px;}
.x0_c01148{left:0.000000px;}
.x2_c01148{left:127.656000px;}
.x1_c01148{left:169.770000px;}
.x7_c01148{left:181.125000px;}
.x5_c01148{left:342.255000px;}
.x4_c01148{left:355.215000px;}
.x6_c01148{left:438.375000px;}
.x8_c01148{left:449.355000px;}
.x3_c01148{left:740.490000px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls3_c01148{letter-spacing:-0.640000pt;}
.ls2_c01148{letter-spacing:-0.384000pt;}
.ls5_c01148{letter-spacing:-0.094933pt;}
.ls0_c01148{letter-spacing:0.000000pt;}
.ls4_c01148{letter-spacing:0.128000pt;}
.ls1_c01148{letter-spacing:0.256000pt;}
.ws0_c01148{word-spacing:-18.048000pt;}
.ws1_c01148{word-spacing:0.000000pt;}
._11_c01148{margin-left:-4.672000pt;}
._7_c01148{margin-left:-3.712000pt;}
._4_c01148{margin-left:-2.603697pt;}
._0_c01148{margin-left:-1.236303pt;}
._3_c01148{width:1.024000pt;}
._6_c01148{width:2.048000pt;}
._5_c01148{width:2.944000pt;}
._b_c01148{width:3.904000pt;}
._8_c01148{width:7.744000pt;}
._c_c01148{width:11.796303pt;}
._2_c01148{width:12.800000pt;}
._1_c01148{width:13.760000pt;}
._9_c01148{width:14.698688pt;}
._a_c01148{width:16.255979pt;}
._10_c01148{width:21.760000pt;}
._f_c01148{width:22.848000pt;}
._13_c01148{width:24.212303pt;}
._12_c01148{width:25.408000pt;}
._d_c01148{width:36.032000pt;}
._e_c01148{width:36.970688pt;}
._14_c01148{width:935.946667pt;}
.fs2_c01148{font-size:53.120000pt;}
.fs0_c01148{font-size:58.880000pt;}
.fs1_c01148{font-size:64.000000pt;}
.y0_c01148{bottom:0.000000pt;}
.y24_c01148{bottom:2.386667pt;}
.y22_c01148{bottom:5.912000pt;}
.y20_c01148{bottom:12.640000pt;}
.y1f_c01148{bottom:28.000000pt;}
.y4_c01148{bottom:51.232000pt;}
.y3_c01148{bottom:69.152000pt;}
.y1d_c01148{bottom:118.432000pt;}
.y21_c01148{bottom:127.240000pt;}
.y23_c01148{bottom:132.040000pt;}
.y1c_c01148{bottom:149.306667pt;}
.y1e_c01148{bottom:519.933333pt;}
.y1b_c01148{bottom:521.053333pt;}
.y1a_c01148{bottom:555.453333pt;}
.y19_c01148{bottom:576.573333pt;}
.y18_c01148{bottom:597.853333pt;}
.y17_c01148{bottom:618.973333pt;}
.y16_c01148{bottom:640.093333pt;}
.y15_c01148{bottom:661.213333pt;}
.y14_c01148{bottom:682.493333pt;}
.y13_c01148{bottom:703.613333pt;}
.y12_c01148{bottom:724.733333pt;}
.y11_c01148{bottom:745.853333pt;}
.y10_c01148{bottom:767.173333pt;}
.yf_c01148{bottom:788.293333pt;}
.ye_c01148{bottom:809.413333pt;}
.yd_c01148{bottom:830.533333pt;}
.yc_c01148{bottom:851.813333pt;}
.yb_c01148{bottom:872.933333pt;}
.ya_c01148{bottom:894.053333pt;}
.y9_c01148{bottom:915.173333pt;}
.y8_c01148{bottom:936.453333pt;}
.y7_c01148{bottom:957.573333pt;}
.y6_c01148{bottom:991.973333pt;}
.y5_c01148{bottom:1013.280000pt;}
.y2_c01148{bottom:1043.840000pt;}
.y1_c01148{bottom:1061.920000pt;}
.h8_c01148{height:14.720000pt;}
.h7_c01148{height:18.240000pt;}
.h5_c01148{height:40.160000pt;}
.h2_c01148{height:42.722500pt;}
.h3_c01148{height:44.648750pt;}
.h6_c01148{height:47.491563pt;}
.h4_c01148{height:57.375000pt;}
.h0_c01148{height:1122.560000pt;}
.h1_c01148{height:1122.666667pt;}
.w2_c01148{width:178.746667pt;}
.w3_c01148{width:186.906667pt;}
.w4_c01148{width:191.880000pt;}
.w0_c01148{width:793.760000pt;}
.w1_c01148{width:794.000000pt;}
.x0_c01148{left:0.000000pt;}
.x2_c01148{left:113.472000pt;}
.x1_c01148{left:150.906667pt;}
.x7_c01148{left:161.000000pt;}
.x5_c01148{left:304.226667pt;}
.x4_c01148{left:315.746667pt;}
.x6_c01148{left:389.666667pt;}
.x8_c01148{left:399.426667pt;}
.x3_c01148{left:658.213333pt;}
}





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

.ir_c01149:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01149;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01149;src:url('chunks/assets/font_7847b58ff63650f6fdcaabf5.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01149;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01149;src:url('chunks/assets/font_ed7d92a33b9ab3bf0acc5015.woff2')format("woff");}.ff4_c01149{font-family:ff4_c01149;line-height:1.106934;font-style:normal;font-weight: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_c01149;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01149{font-family:ff5_c01149;line-height:1.113281;font-style:normal;font-weight: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_c01149;src:url('chunks/assets/font_ee1b49b45278fb573cabf1d6.woff2')format("woff");}.ff6_c01149{font-family:ff6_c01149;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01149{vertical-align:0.000000px;}
.ls5_c01149{letter-spacing:-0.247800px;}
.ls2_c01149{letter-spacing:-0.181200px;}
.ls1_c01149{letter-spacing:0.000000px;}
.ls4_c01149{letter-spacing:0.150000px;}
.ls0_c01149{letter-spacing:0.216000px;}
.ls3_c01149{letter-spacing:0.288000px;}
.sc__c01149{text-shadow:none;}
.sc0_c01149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01149{-webkit-text-stroke:0px transparent;}
.sc0_c01149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01149{word-spacing:-20.304000px;}
.ws1_c01149{word-spacing:0.000000px;}
._7_c01149{margin-left:-4.419302px;}
._6_c01149{margin-left:-3.240000px;}
._0_c01149{margin-left:-1.258891px;}
._a_c01149{width:1.008000px;}
._5_c01149{width:2.016000px;}
._2_c01149{width:3.320698px;}
._1_c01149{width:4.824000px;}
._9_c01149{width:5.904000px;}
._b_c01149{width:7.344000px;}
._e_c01149{width:11.736000px;}
._11_c01149{width:14.832000px;}
._8_c01149{width:18.648000px;}
._12_c01149{width:21.163565px;}
._3_c01149{width:22.176000px;}
._4_c01149{width:23.184000px;}
._d_c01149{width:35.424000px;}
._c_c01149{width:36.936000px;}
._10_c01149{width:47.952000px;}
._f_c01149{width:49.104000px;}
.fc0_c01149{color:rgb(0,0,0);}
.fs4_c01149{font-size:38.880000px;}
.fs3_c01149{font-size:48.240000px;}
.fs5_c01149{font-size:59.760000px;}
.fs0_c01149{font-size:66.240000px;}
.fs2_c01149{font-size:72.000000px;}
.fs1_c01149{font-size:84.240000px;}
.y0_c01149{bottom:0.000000px;}
.y4_c01149{bottom:57.636000px;}
.y3_c01149{bottom:77.796000px;}
.y30_c01149{bottom:109.296000px;}
.y2f_c01149{bottom:127.476000px;}
.y2e_c01149{bottom:132.696000px;}
.y2d_c01149{bottom:147.276000px;}
.y2c_c01149{bottom:189.930000px;}
.y2b_c01149{bottom:213.690000px;}
.y2a_c01149{bottom:237.450000px;}
.y29_c01149{bottom:261.390000px;}
.y28_c01149{bottom:285.195000px;}
.y27_c01149{bottom:308.955000px;}
.y26_c01149{bottom:332.715000px;}
.y25_c01149{bottom:356.475000px;}
.y24_c01149{bottom:380.415000px;}
.y23_c01149{bottom:404.175000px;}
.y22_c01149{bottom:443.055000px;}
.y21_c01149{bottom:466.815000px;}
.y20_c01149{bottom:490.575000px;}
.y1f_c01149{bottom:514.335000px;}
.y1e_c01149{bottom:538.095000px;}
.y1d_c01149{bottom:562.035000px;}
.y1c_c01149{bottom:585.825000px;}
.y1b_c01149{bottom:624.705000px;}
.y1a_c01149{bottom:648.465000px;}
.y19_c01149{bottom:672.225000px;}
.y18_c01149{bottom:695.985000px;}
.y17_c01149{bottom:734.865000px;}
.y16_c01149{bottom:758.625000px;}
.y15_c01149{bottom:782.385000px;}
.y14_c01149{bottom:806.325000px;}
.y13_c01149{bottom:830.085000px;}
.y12_c01149{bottom:853.890000px;}
.y11_c01149{bottom:877.650000px;}
.y10_c01149{bottom:901.410000px;}
.yf_c01149{bottom:925.350000px;}
.ye_c01149{bottom:949.110000px;}
.yc_c01149{bottom:972.870000px;}
.yd_c01149{bottom:978.810000px;}
.yb_c01149{bottom:996.630000px;}
.ya_c01149{bottom:1020.570000px;}
.y9_c01149{bottom:1044.330000px;}
.y8_c01149{bottom:1068.090000px;}
.y7_c01149{bottom:1091.850000px;}
.y6_c01149{bottom:1113.270000px;}
.y5_c01149{bottom:1137.240000px;}
.y2_c01149{bottom:1174.320000px;}
.y1_c01149{bottom:1194.660000px;}
.h9_c01149{height:41.484960px;}
.h7_c01149{height:43.246406px;}
.h2_c01149{height:48.062812px;}
.h3_c01149{height:50.229844px;}
.ha_c01149{height:63.763920px;}
.h5_c01149{height:64.546875px;}
.h8_c01149{height:76.054570px;}
.h4_c01149{height:87.859687px;}
.h6_c01149{height:1262.865000px;}
.h0_c01149{height:1262.880000px;}
.h1_c01149{height:1263.000000px;}
.w2_c01149{width:892.957500px;}
.w0_c01149{width:892.980000px;}
.w1_c01149{width:893.250000px;}
.x0_c01149{left:0.000000px;}
.x1_c01149{left:127.656000px;}
.x5_c01149{left:146.016000px;}
.x4_c01149{left:343.695000px;}
.x2_c01149{left:449.152500px;}
.x3_c01149{left:469.155000px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.ls5_c01149{letter-spacing:-0.220267pt;}
.ls2_c01149{letter-spacing:-0.161067pt;}
.ls1_c01149{letter-spacing:0.000000pt;}
.ls4_c01149{letter-spacing:0.133333pt;}
.ls0_c01149{letter-spacing:0.192000pt;}
.ls3_c01149{letter-spacing:0.256000pt;}
.ws0_c01149{word-spacing:-18.048000pt;}
.ws1_c01149{word-spacing:0.000000pt;}
._7_c01149{margin-left:-3.928269pt;}
._6_c01149{margin-left:-2.880000pt;}
._0_c01149{margin-left:-1.119014pt;}
._a_c01149{width:0.896000pt;}
._5_c01149{width:1.792000pt;}
._2_c01149{width:2.951731pt;}
._1_c01149{width:4.288000pt;}
._9_c01149{width:5.248000pt;}
._b_c01149{width:6.528000pt;}
._e_c01149{width:10.432000pt;}
._11_c01149{width:13.184000pt;}
._8_c01149{width:16.576000pt;}
._12_c01149{width:18.812058pt;}
._3_c01149{width:19.712000pt;}
._4_c01149{width:20.608000pt;}
._d_c01149{width:31.488000pt;}
._c_c01149{width:32.832000pt;}
._10_c01149{width:42.624000pt;}
._f_c01149{width:43.648000pt;}
.fs4_c01149{font-size:34.560000pt;}
.fs3_c01149{font-size:42.880000pt;}
.fs5_c01149{font-size:53.120000pt;}
.fs0_c01149{font-size:58.880000pt;}
.fs2_c01149{font-size:64.000000pt;}
.fs1_c01149{font-size:74.880000pt;}
.y0_c01149{bottom:0.000000pt;}
.y4_c01149{bottom:51.232000pt;}
.y3_c01149{bottom:69.152000pt;}
.y30_c01149{bottom:97.152000pt;}
.y2f_c01149{bottom:113.312000pt;}
.y2e_c01149{bottom:117.952000pt;}
.y2d_c01149{bottom:130.912000pt;}
.y2c_c01149{bottom:168.826667pt;}
.y2b_c01149{bottom:189.946667pt;}
.y2a_c01149{bottom:211.066667pt;}
.y29_c01149{bottom:232.346667pt;}
.y28_c01149{bottom:253.506667pt;}
.y27_c01149{bottom:274.626667pt;}
.y26_c01149{bottom:295.746667pt;}
.y25_c01149{bottom:316.866667pt;}
.y24_c01149{bottom:338.146667pt;}
.y23_c01149{bottom:359.266667pt;}
.y22_c01149{bottom:393.826667pt;}
.y21_c01149{bottom:414.946667pt;}
.y20_c01149{bottom:436.066667pt;}
.y1f_c01149{bottom:457.186667pt;}
.y1e_c01149{bottom:478.306667pt;}
.y1d_c01149{bottom:499.586667pt;}
.y1c_c01149{bottom:520.733333pt;}
.y1b_c01149{bottom:555.293333pt;}
.y1a_c01149{bottom:576.413333pt;}
.y19_c01149{bottom:597.533333pt;}
.y18_c01149{bottom:618.653333pt;}
.y17_c01149{bottom:653.213333pt;}
.y16_c01149{bottom:674.333333pt;}
.y15_c01149{bottom:695.453333pt;}
.y14_c01149{bottom:716.733333pt;}
.y13_c01149{bottom:737.853333pt;}
.y12_c01149{bottom:759.013333pt;}
.y11_c01149{bottom:780.133333pt;}
.y10_c01149{bottom:801.253333pt;}
.yf_c01149{bottom:822.533333pt;}
.ye_c01149{bottom:843.653333pt;}
.yc_c01149{bottom:864.773333pt;}
.yd_c01149{bottom:870.053333pt;}
.yb_c01149{bottom:885.893333pt;}
.ya_c01149{bottom:907.173333pt;}
.y9_c01149{bottom:928.293333pt;}
.y8_c01149{bottom:949.413333pt;}
.y7_c01149{bottom:970.533333pt;}
.y6_c01149{bottom:989.573333pt;}
.y5_c01149{bottom:1010.880000pt;}
.y2_c01149{bottom:1043.840000pt;}
.y1_c01149{bottom:1061.920000pt;}
.h9_c01149{height:36.875520pt;}
.h7_c01149{height:38.441250pt;}
.h2_c01149{height:42.722500pt;}
.h3_c01149{height:44.648750pt;}
.ha_c01149{height:56.679040pt;}
.h5_c01149{height:57.375000pt;}
.h8_c01149{height:67.604062pt;}
.h4_c01149{height:78.097500pt;}
.h6_c01149{height:1122.546667pt;}
.h0_c01149{height:1122.560000pt;}
.h1_c01149{height:1122.666667pt;}
.w2_c01149{width:793.740000pt;}
.w0_c01149{width:793.760000pt;}
.w1_c01149{width:794.000000pt;}
.x0_c01149{left:0.000000pt;}
.x1_c01149{left:113.472000pt;}
.x5_c01149{left:129.792000pt;}
.x4_c01149{left:305.506667pt;}
.x2_c01149{left:399.246667pt;}
.x3_c01149{left:417.026667pt;}
}





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

.ir_c01150:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01150;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01150;src:url('chunks/assets/font_7847b58ff63650f6fdcaabf5.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01150;src:url('chunks/assets/font_e57602856c71d924d23f7bac.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01150;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff4_c01150{font-family:ff4_c01150;line-height:1.113281;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff5_c01150{font-family:ff5_c01150;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:ff6_c01150;src:url('chunks/assets/font_d09154af9acfcce8ae75e900.woff2')format("woff");}.ff6_c01150{font-family:ff6_c01150;line-height:1.575000;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_8f48e060acdd82e993ae69f3.woff2')format("woff");}.ff7_c01150{font-family:ff7_c01150;line-height:1.211914;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_e52f52f5690d843dbe516d05.woff2')format("woff");}.ff8_c01150{font-family:ff8_c01150;line-height:1.181152;font-style:normal;font-weight: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_c01150;src:url('chunks/assets/font_ddde632751562d6d985fd7ce.woff2')format("woff");}.ff9_c01150{font-family:ff9_c01150;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01150{vertical-align:0.000000px;}
.ls4_c01150{letter-spacing:-0.432000px;}
.ls6_c01150{letter-spacing:-0.247800px;}
.ls2_c01150{letter-spacing:-0.181200px;}
.ls7_c01150{letter-spacing:-0.152400px;}
.ls1_c01150{letter-spacing:0.000000px;}
.ls3_c01150{letter-spacing:0.144000px;}
.ls5_c01150{letter-spacing:0.150000px;}
.ls0_c01150{letter-spacing:0.152400px;}
.sc__c01150{text-shadow:none;}
.sc0_c01150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01150{-webkit-text-stroke:0px transparent;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01150{word-spacing:-21.187920px;}
.ws0_c01150{word-spacing:-20.016000px;}
.ws2_c01150{word-spacing:0.000000px;}
._a_c01150{margin-left:-3.888000px;}
._9_c01150{margin-left:-2.592000px;}
._0_c01150{margin-left:-1.390841px;}
._3_c01150{width:1.102841px;}
._7_c01150{width:2.937707px;}
._6_c01150{width:4.320000px;}
._8_c01150{width:5.328000px;}
._5_c01150{width:6.620524px;}
._4_c01150{width:7.992000px;}
._c_c01150{width:13.569515px;}
._b_c01150{width:14.880024px;}
._2_c01150{width:25.416000px;}
._1_c01150{width:27.144000px;}
.fc1_c01150{color:transparent;}
.fc0_c01150{color:rgb(0,0,0);}
.fs4_c01150{font-size:38.880000px;}
.fs2_c01150{font-size:48.240000px;}
.fs5_c01150{font-size:59.760000px;}
.fs0_c01150{font-size:66.240000px;}
.fs1_c01150{font-size:72.000000px;}
.fs3_c01150{font-size:84.240000px;}
.y0_c01150{bottom:0.000000px;}
.y2d_c01150{bottom:4.140000px;}
.y31_c01150{bottom:6.120000px;}
.y33_c01150{bottom:6.675000px;}
.y2c_c01150{bottom:24.840000px;}
.y4_c01150{bottom:57.636000px;}
.y3_c01150{bottom:77.796000px;}
.y2a_c01150{bottom:109.296000px;}
.y29_c01150{bottom:127.476000px;}
.y28_c01150{bottom:145.656000px;}
.y27_c01150{bottom:150.870000px;}
.y26_c01150{bottom:164.010000px;}
.y25_c01150{bottom:182.190000px;}
.y24_c01150{bottom:187.410000px;}
.y23_c01150{bottom:201.990000px;}
.y22_c01150{bottom:312.735000px;}
.y20_c01150{bottom:336.675000px;}
.y21_c01150{bottom:342.615000px;}
.y1f_c01150{bottom:360.435000px;}
.y1e_c01150{bottom:384.195000px;}
.y1d_c01150{bottom:407.955000px;}
.y32_c01150{bottom:441.780000px;}
.y1c_c01150{bottom:446.835000px;}
.y1b_c01150{bottom:485.535000px;}
.y1a_c01150{bottom:524.415000px;}
.y19_c01150{bottom:563.295000px;}
.y18_c01150{bottom:602.025000px;}
.y17_c01150{bottom:640.905000px;}
.y2f_c01150{bottom:667.185000px;}
.y16_c01150{bottom:679.605000px;}
.y2e_c01150{bottom:687.885000px;}
.y15_c01150{bottom:718.485000px;}
.y2b_c01150{bottom:729.285000px;}
.y30_c01150{bottom:736.125000px;}
.y14_c01150{bottom:757.365000px;}
.y13_c01150{bottom:778.605000px;}
.y12_c01150{bottom:802.545000px;}
.y11_c01150{bottom:845.205000px;}
.y10_c01150{bottom:886.830000px;}
.yf_c01150{bottom:910.590000px;}
.ye_c01150{bottom:934.350000px;}
.yd_c01150{bottom:958.290000px;}
.yc_c01150{bottom:982.050000px;}
.yb_c01150{bottom:1005.810000px;}
.ya_c01150{bottom:1029.570000px;}
.y9_c01150{bottom:1053.510000px;}
.y8_c01150{bottom:1077.270000px;}
.y6_c01150{bottom:1115.970000px;}
.y7_c01150{bottom:1121.910000px;}
.y5_c01150{bottom:1139.940000px;}
.y2_c01150{bottom:1174.320000px;}
.y1_c01150{bottom:1194.660000px;}
.he_c01150{height:19.980000px;}
.h10_c01150{height:20.520000px;}
.hd_c01150{height:20.700000px;}
.hc_c01150{height:41.395500px;}
.hb_c01150{height:41.400000px;}
.h9_c01150{height:41.484960px;}
.h6_c01150{height:43.246406px;}
.h2_c01150{height:48.062812px;}
.h3_c01150{height:50.229844px;}
.h11_c01150{height:53.428008px;}
.hf_c01150{height:53.953242px;}
.ha_c01150{height:63.763920px;}
.h4_c01150{height:64.546875px;}
.h7_c01150{height:76.054570px;}
.h8_c01150{height:87.859687px;}
.h5_c01150{height:1262.865000px;}
.h0_c01150{height:1262.880000px;}
.h1_c01150{height:1263.000000px;}
.w6_c01150{width:25.200000px;}
.w3_c01150{width:116.661000px;}
.w7_c01150{width:210.270000px;}
.w4_c01150{width:350.850000px;}
.w5_c01150{width:350.865000px;}
.w2_c01150{width:892.957500px;}
.w0_c01150{width:892.980000px;}
.w1_c01150{width:893.250000px;}
.x0_c01150{left:0.000000px;}
.xe_c01150{left:8.085000px;}
.x11_c01150{left:10.785000px;}
.x2_c01150{left:127.656000px;}
.xc_c01150{left:146.016000px;}
.x9_c01150{left:167.587500px;}
.x1_c01150{left:169.770000px;}
.x10_c01150{left:180.945000px;}
.xa_c01150{left:187.590000px;}
.xd_c01150{left:212.265000px;}
.x4_c01150{left:255.787500px;}
.x5_c01150{left:275.790000px;}
.x7_c01150{left:307.515000px;}
.xf_c01150{left:328.935000px;}
.xb_c01150{left:343.695000px;}
.x8_c01150{left:351.435000px;}
.x6_c01150{left:691.530000px;}
.x3_c01150{left:740.490000px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls4_c01150{letter-spacing:-0.384000pt;}
.ls6_c01150{letter-spacing:-0.220267pt;}
.ls2_c01150{letter-spacing:-0.161067pt;}
.ls7_c01150{letter-spacing:-0.135467pt;}
.ls1_c01150{letter-spacing:0.000000pt;}
.ls3_c01150{letter-spacing:0.128000pt;}
.ls5_c01150{letter-spacing:0.133333pt;}
.ls0_c01150{letter-spacing:0.135467pt;}
.ws1_c01150{word-spacing:-18.833707pt;}
.ws0_c01150{word-spacing:-17.792000pt;}
.ws2_c01150{word-spacing:0.000000pt;}
._a_c01150{margin-left:-3.456000pt;}
._9_c01150{margin-left:-2.304000pt;}
._0_c01150{margin-left:-1.236303pt;}
._3_c01150{width:0.980303pt;}
._7_c01150{width:2.611295pt;}
._6_c01150{width:3.840000pt;}
._8_c01150{width:4.736000pt;}
._5_c01150{width:5.884910pt;}
._4_c01150{width:7.104000pt;}
._c_c01150{width:12.061791pt;}
._b_c01150{width:13.226688pt;}
._2_c01150{width:22.592000pt;}
._1_c01150{width:24.128000pt;}
.fs4_c01150{font-size:34.560000pt;}
.fs2_c01150{font-size:42.880000pt;}
.fs5_c01150{font-size:53.120000pt;}
.fs0_c01150{font-size:58.880000pt;}
.fs1_c01150{font-size:64.000000pt;}
.fs3_c01150{font-size:74.880000pt;}
.y0_c01150{bottom:0.000000pt;}
.y2d_c01150{bottom:3.680000pt;}
.y31_c01150{bottom:5.440000pt;}
.y33_c01150{bottom:5.933333pt;}
.y2c_c01150{bottom:22.080000pt;}
.y4_c01150{bottom:51.232000pt;}
.y3_c01150{bottom:69.152000pt;}
.y2a_c01150{bottom:97.152000pt;}
.y29_c01150{bottom:113.312000pt;}
.y28_c01150{bottom:129.472000pt;}
.y27_c01150{bottom:134.106667pt;}
.y26_c01150{bottom:145.786667pt;}
.y25_c01150{bottom:161.946667pt;}
.y24_c01150{bottom:166.586667pt;}
.y23_c01150{bottom:179.546667pt;}
.y22_c01150{bottom:277.986667pt;}
.y20_c01150{bottom:299.266667pt;}
.y21_c01150{bottom:304.546667pt;}
.y1f_c01150{bottom:320.386667pt;}
.y1e_c01150{bottom:341.506667pt;}
.y1d_c01150{bottom:362.626667pt;}
.y32_c01150{bottom:392.693333pt;}
.y1c_c01150{bottom:397.186667pt;}
.y1b_c01150{bottom:431.586667pt;}
.y1a_c01150{bottom:466.146667pt;}
.y19_c01150{bottom:500.706667pt;}
.y18_c01150{bottom:535.133333pt;}
.y17_c01150{bottom:569.693333pt;}
.y2f_c01150{bottom:593.053333pt;}
.y16_c01150{bottom:604.093333pt;}
.y2e_c01150{bottom:611.453333pt;}
.y15_c01150{bottom:638.653333pt;}
.y2b_c01150{bottom:648.253333pt;}
.y30_c01150{bottom:654.333333pt;}
.y14_c01150{bottom:673.213333pt;}
.y13_c01150{bottom:692.093333pt;}
.y12_c01150{bottom:713.373333pt;}
.y11_c01150{bottom:751.293333pt;}
.y10_c01150{bottom:788.293333pt;}
.yf_c01150{bottom:809.413333pt;}
.ye_c01150{bottom:830.533333pt;}
.yd_c01150{bottom:851.813333pt;}
.yc_c01150{bottom:872.933333pt;}
.yb_c01150{bottom:894.053333pt;}
.ya_c01150{bottom:915.173333pt;}
.y9_c01150{bottom:936.453333pt;}
.y8_c01150{bottom:957.573333pt;}
.y6_c01150{bottom:991.973333pt;}
.y7_c01150{bottom:997.253333pt;}
.y5_c01150{bottom:1013.280000pt;}
.y2_c01150{bottom:1043.840000pt;}
.y1_c01150{bottom:1061.920000pt;}
.he_c01150{height:17.760000pt;}
.h10_c01150{height:18.240000pt;}
.hd_c01150{height:18.400000pt;}
.hc_c01150{height:36.796000pt;}
.hb_c01150{height:36.800000pt;}
.h9_c01150{height:36.875520pt;}
.h6_c01150{height:38.441250pt;}
.h2_c01150{height:42.722500pt;}
.h3_c01150{height:44.648750pt;}
.h11_c01150{height:47.491563pt;}
.hf_c01150{height:47.958438pt;}
.ha_c01150{height:56.679040pt;}
.h4_c01150{height:57.375000pt;}
.h7_c01150{height:67.604062pt;}
.h8_c01150{height:78.097500pt;}
.h5_c01150{height:1122.546667pt;}
.h0_c01150{height:1122.560000pt;}
.h1_c01150{height:1122.666667pt;}
.w6_c01150{width:22.400000pt;}
.w3_c01150{width:103.698667pt;}
.w7_c01150{width:186.906667pt;}
.w4_c01150{width:311.866667pt;}
.w5_c01150{width:311.880000pt;}
.w2_c01150{width:793.740000pt;}
.w0_c01150{width:793.760000pt;}
.w1_c01150{width:794.000000pt;}
.x0_c01150{left:0.000000pt;}
.xe_c01150{left:7.186667pt;}
.x11_c01150{left:9.586667pt;}
.x2_c01150{left:113.472000pt;}
.xc_c01150{left:129.792000pt;}
.x9_c01150{left:148.966667pt;}
.x1_c01150{left:150.906667pt;}
.x10_c01150{left:160.840000pt;}
.xa_c01150{left:166.746667pt;}
.xd_c01150{left:188.680000pt;}
.x4_c01150{left:227.366667pt;}
.x5_c01150{left:245.146667pt;}
.x7_c01150{left:273.346667pt;}
.xf_c01150{left:292.386667pt;}
.xb_c01150{left:305.506667pt;}
.x8_c01150{left:312.386667pt;}
.x6_c01150{left:614.693333pt;}
.x3_c01150{left:658.213333pt;}
}





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

.ir_c01151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01151;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01151;src:url('chunks/assets/font_7841030f67ce9f6870408e54.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01151;src:url('chunks/assets/font_aaec045d24e24c3b38388817.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01151;src:url('chunks/assets/font_d75e4c89189845a938cc82a4.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;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:ff5_c01151;src:url('chunks/assets/font_401f9f7a378de86fe097ec9d.woff2')format("woff");}.ff5_c01151{font-family:ff5_c01151;line-height:1.104492;font-style:normal;font-weight: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_c01151;src:url('chunks/assets/font_125cc66eed6abf557822b132.woff2')format("woff");}.ff6_c01151{font-family:ff6_c01151;line-height:1.575000;font-style:normal;font-weight: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_c01151;src:url('chunks/assets/font_f83673d25350a207c839948c.woff2')format("woff");}.ff7_c01151{font-family:ff7_c01151;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01151{vertical-align:0.000000px;}
.ls3_c01151{letter-spacing:-0.576000px;}
.ls6_c01151{letter-spacing:-0.272400px;}
.ls2_c01151{letter-spacing:-0.181200px;}
.ls1_c01151{letter-spacing:0.000000px;}
.ls5_c01151{letter-spacing:0.150000px;}
.ls7_c01151{letter-spacing:0.152400px;}
.ls0_c01151{letter-spacing:0.174240px;}
.ls4_c01151{letter-spacing:0.288000px;}
.sc__c01151{text-shadow:none;}
.sc0_c01151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01151{-webkit-text-stroke:0px transparent;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01151{word-spacing:-20.304000px;}
.ws1_c01151{word-spacing:0.000000px;}
._8_c01151{margin-left:-4.824000px;}
._e_c01151{margin-left:-2.452435px;}
._0_c01151{margin-left:-1.258891px;}
._1_c01151{width:1.008000px;}
._2_c01151{width:2.232000px;}
._3_c01151{width:3.900024px;}
._7_c01151{width:5.256000px;}
._6_c01151{width:6.408000px;}
._4_c01151{width:7.992000px;}
._5_c01151{width:9.012024px;}
._12_c01151{width:12.130891px;}
._f_c01151{width:13.608000px;}
._a_c01151{width:25.128000px;}
._9_c01151{width:28.296000px;}
._13_c01151{width:32.688000px;}
._11_c01151{width:46.224000px;}
._10_c01151{width:47.304000px;}
._b_c01151{width:48.600000px;}
._c_c01151{width:60.480000px;}
._d_c01151{width:62.146891px;}
.fc0_c01151{color:rgb(0,0,0);}
.fs3_c01151{font-size:38.880000px;}
.fs2_c01151{font-size:48.240000px;}
.fs4_c01151{font-size:59.760000px;}
.fs0_c01151{font-size:66.240000px;}
.fs1_c01151{font-size:72.000000px;}
.y0_c01151{bottom:0.000000px;}
.y2b_c01151{bottom:6.105000px;}
.y2a_c01151{bottom:23.385000px;}
.y28_c01151{bottom:31.335000px;}
.y4_c01151{bottom:57.636000px;}
.y3_c01151{bottom:77.796000px;}
.y26_c01151{bottom:109.296000px;}
.y25_c01151{bottom:128.376000px;}
.y24_c01151{bottom:133.596000px;}
.y23_c01151{bottom:148.176000px;}
.y27_c01151{bottom:300.660000px;}
.y22_c01151{bottom:368.355000px;}
.y21_c01151{bottom:407.055000px;}
.y20_c01151{bottom:445.935000px;}
.y1f_c01151{bottom:484.635000px;}
.y1e_c01151{bottom:508.575000px;}
.y1d_c01151{bottom:532.335000px;}
.y1c_c01151{bottom:556.275000px;}
.y1b_c01151{bottom:579.885000px;}
.y1a_c01151{bottom:603.645000px;}
.y19_c01151{bottom:627.585000px;}
.y18_c01151{bottom:651.345000px;}
.y17_c01151{bottom:690.225000px;}
.y16_c01151{bottom:728.925000px;}
.y15_c01151{bottom:767.805000px;}
.y29_c01151{bottom:771.780000px;}
.y14_c01151{bottom:791.565000px;}
.y13_c01151{bottom:815.325000px;}
.y12_c01151{bottom:839.085000px;}
.y11_c01151{bottom:863.070000px;}
.y10_c01151{bottom:886.830000px;}
.yf_c01151{bottom:910.590000px;}
.ye_c01151{bottom:934.350000px;}
.yd_c01151{bottom:958.290000px;}
.yc_c01151{bottom:982.050000px;}
.yb_c01151{bottom:1005.810000px;}
.ya_c01151{bottom:1029.570000px;}
.y9_c01151{bottom:1053.510000px;}
.y8_c01151{bottom:1077.270000px;}
.y6_c01151{bottom:1115.970000px;}
.y7_c01151{bottom:1121.910000px;}
.y5_c01151{bottom:1139.940000px;}
.y2_c01151{bottom:1174.320000px;}
.y1_c01151{bottom:1194.660000px;}
.h8_c01151{height:29.482734px;}
.hc_c01151{height:37.080000px;}
.h6_c01151{height:43.246406px;}
.ha_c01151{height:45.180000px;}
.h2_c01151{height:48.062812px;}
.h3_c01151{height:50.229844px;}
.hb_c01151{height:53.428008px;}
.h9_c01151{height:63.763920px;}
.h4_c01151{height:64.546875px;}
.h7_c01151{height:75.093750px;}
.h5_c01151{height:1262.865000px;}
.h0_c01151{height:1262.880000px;}
.h1_c01151{height:1263.000000px;}
.w3_c01151{width:183.630000px;}
.w4_c01151{width:290.550000px;}
.w2_c01151{width:892.957500px;}
.w0_c01151{width:892.980000px;}
.w1_c01151{width:893.250000px;}
.x0_c01151{left:0.000000px;}
.x1_c01151{left:127.656000px;}
.x8_c01151{left:129.285000px;}
.x7_c01151{left:142.236000px;}
.x6_c01151{left:343.695000px;}
.x5_c01151{left:354.855000px;}
.x4_c01151{left:431.715000px;}
.x2_c01151{left:622.162500px;}
.x3_c01151{left:642.165000px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.ls3_c01151{letter-spacing:-0.512000pt;}
.ls6_c01151{letter-spacing:-0.242133pt;}
.ls2_c01151{letter-spacing:-0.161067pt;}
.ls1_c01151{letter-spacing:0.000000pt;}
.ls5_c01151{letter-spacing:0.133333pt;}
.ls7_c01151{letter-spacing:0.135467pt;}
.ls0_c01151{letter-spacing:0.154880pt;}
.ls4_c01151{letter-spacing:0.256000pt;}
.ws0_c01151{word-spacing:-18.048000pt;}
.ws1_c01151{word-spacing:0.000000pt;}
._8_c01151{margin-left:-4.288000pt;}
._e_c01151{margin-left:-2.179942pt;}
._0_c01151{margin-left:-1.119014pt;}
._1_c01151{width:0.896000pt;}
._2_c01151{width:1.984000pt;}
._3_c01151{width:3.466688pt;}
._7_c01151{width:4.672000pt;}
._6_c01151{width:5.696000pt;}
._4_c01151{width:7.104000pt;}
._5_c01151{width:8.010688pt;}
._12_c01151{width:10.783014pt;}
._f_c01151{width:12.096000pt;}
._a_c01151{width:22.336000pt;}
._9_c01151{width:25.152000pt;}
._13_c01151{width:29.056000pt;}
._11_c01151{width:41.088000pt;}
._10_c01151{width:42.048000pt;}
._b_c01151{width:43.200000pt;}
._c_c01151{width:53.760000pt;}
._d_c01151{width:55.241681pt;}
.fs3_c01151{font-size:34.560000pt;}
.fs2_c01151{font-size:42.880000pt;}
.fs4_c01151{font-size:53.120000pt;}
.fs0_c01151{font-size:58.880000pt;}
.fs1_c01151{font-size:64.000000pt;}
.y0_c01151{bottom:0.000000pt;}
.y2b_c01151{bottom:5.426667pt;}
.y2a_c01151{bottom:20.786667pt;}
.y28_c01151{bottom:27.853333pt;}
.y4_c01151{bottom:51.232000pt;}
.y3_c01151{bottom:69.152000pt;}
.y26_c01151{bottom:97.152000pt;}
.y25_c01151{bottom:114.112000pt;}
.y24_c01151{bottom:118.752000pt;}
.y23_c01151{bottom:131.712000pt;}
.y27_c01151{bottom:267.253333pt;}
.y22_c01151{bottom:327.426667pt;}
.y21_c01151{bottom:361.826667pt;}
.y20_c01151{bottom:396.386667pt;}
.y1f_c01151{bottom:430.786667pt;}
.y1e_c01151{bottom:452.066667pt;}
.y1d_c01151{bottom:473.186667pt;}
.y1c_c01151{bottom:494.466667pt;}
.y1b_c01151{bottom:515.453333pt;}
.y1a_c01151{bottom:536.573333pt;}
.y19_c01151{bottom:557.853333pt;}
.y18_c01151{bottom:578.973333pt;}
.y17_c01151{bottom:613.533333pt;}
.y16_c01151{bottom:647.933333pt;}
.y15_c01151{bottom:682.493333pt;}
.y29_c01151{bottom:686.026667pt;}
.y14_c01151{bottom:703.613333pt;}
.y13_c01151{bottom:724.733333pt;}
.y12_c01151{bottom:745.853333pt;}
.y11_c01151{bottom:767.173333pt;}
.y10_c01151{bottom:788.293333pt;}
.yf_c01151{bottom:809.413333pt;}
.ye_c01151{bottom:830.533333pt;}
.yd_c01151{bottom:851.813333pt;}
.yc_c01151{bottom:872.933333pt;}
.yb_c01151{bottom:894.053333pt;}
.ya_c01151{bottom:915.173333pt;}
.y9_c01151{bottom:936.453333pt;}
.y8_c01151{bottom:957.573333pt;}
.y6_c01151{bottom:991.973333pt;}
.y7_c01151{bottom:997.253333pt;}
.y5_c01151{bottom:1013.280000pt;}
.y2_c01151{bottom:1043.840000pt;}
.y1_c01151{bottom:1061.920000pt;}
.h8_c01151{height:26.206875pt;}
.hc_c01151{height:32.960000pt;}
.h6_c01151{height:38.441250pt;}
.ha_c01151{height:40.160000pt;}
.h2_c01151{height:42.722500pt;}
.h3_c01151{height:44.648750pt;}
.hb_c01151{height:47.491563pt;}
.h9_c01151{height:56.679040pt;}
.h4_c01151{height:57.375000pt;}
.h7_c01151{height:66.750000pt;}
.h5_c01151{height:1122.546667pt;}
.h0_c01151{height:1122.560000pt;}
.h1_c01151{height:1122.666667pt;}
.w3_c01151{width:163.226667pt;}
.w4_c01151{width:258.266667pt;}
.w2_c01151{width:793.740000pt;}
.w0_c01151{width:793.760000pt;}
.w1_c01151{width:794.000000pt;}
.x0_c01151{left:0.000000pt;}
.x1_c01151{left:113.472000pt;}
.x8_c01151{left:114.920000pt;}
.x7_c01151{left:126.432000pt;}
.x6_c01151{left:305.506667pt;}
.x5_c01151{left:315.426667pt;}
.x4_c01151{left:383.746667pt;}
.x2_c01151{left:553.033333pt;}
.x3_c01151{left:570.813333pt;}
}





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

.ir_c01152:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01152;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01152;src:url('chunks/assets/font_69c9300ca33a677055b22a28.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01152;src:url('chunks/assets/font_f9c55576bb7b45fc0fab129d.woff2')format("woff");}.ff3_c01152{font-family:ff3_c01152;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01152;src:url('chunks/assets/font_3393a144c1bfd5cf6d2bcfeb.woff2')format("woff");}.ff4_c01152{font-family:ff4_c01152;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:ff5_c01152;src:url('chunks/assets/font_f11054e753d073458257a6a3.woff2')format("woff");}.ff5_c01152{font-family:ff5_c01152;line-height:1.575000;font-style:normal;font-weight: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_c01152;src:url('chunks/assets/font_cfd447e61f1f48ca2a258efc.woff2')format("woff");}.ff6_c01152{font-family:ff6_c01152;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01152{vertical-align:0.000000px;}
.ls6_c01152{letter-spacing:-0.328200px;}
.ls5_c01152{letter-spacing:-0.272400px;}
.ls3_c01152{letter-spacing:-0.181200px;}
.ls2_c01152{letter-spacing:0.000000px;}
.ls0_c01152{letter-spacing:0.144000px;}
.ls4_c01152{letter-spacing:0.150000px;}
.ls1_c01152{letter-spacing:0.174240px;}
.sc__c01152{text-shadow:none;}
.sc0_c01152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01152{-webkit-text-stroke:0px transparent;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01152{word-spacing:-20.707320px;}
.ws0_c01152{word-spacing:-20.016000px;}
.ws2_c01152{word-spacing:0.000000px;}
._0_c01152{margin-left:-1.390841px;}
._1_c01152{width:1.152000px;}
._2_c01152{width:2.890817px;}
._3_c01152{width:4.001962px;}
._b_c01152{width:5.130115px;}
._4_c01152{width:10.440000px;}
._5_c01152{width:11.592000px;}
._a_c01152{width:15.912000px;}
._7_c01152{width:23.832000px;}
._6_c01152{width:25.032024px;}
._f_c01152{width:29.376000px;}
._e_c01152{width:30.384000px;}
._11_c01152{width:48.744000px;}
._10_c01152{width:50.184000px;}
._c_c01152{width:55.584000px;}
._9_c01152{width:57.096000px;}
._8_c01152{width:58.248000px;}
._d_c01152{width:64.080000px;}
.fc0_c01152{color:rgb(0,0,0);}
.fs3_c01152{font-size:38.880000px;}
.fs2_c01152{font-size:48.240000px;}
.fs4_c01152{font-size:59.760000px;}
.fs0_c01152{font-size:66.240000px;}
.fs1_c01152{font-size:72.000000px;}
.y0_c01152{bottom:0.000000px;}
.y22_c01152{bottom:24.855000px;}
.y24_c01152{bottom:31.335000px;}
.y4_c01152{bottom:57.636000px;}
.y3_c01152{bottom:77.796000px;}
.y20_c01152{bottom:109.296000px;}
.y1f_c01152{bottom:127.476000px;}
.y1e_c01152{bottom:146.556000px;}
.y1d_c01152{bottom:151.770000px;}
.y1c_c01152{bottom:166.350000px;}
.y1b_c01152{bottom:348.555000px;}
.y21_c01152{bottom:362.940000px;}
.y19_c01152{bottom:387.435000px;}
.y1a_c01152{bottom:393.375000px;}
.y18_c01152{bottom:411.195000px;}
.y17_c01152{bottom:434.955000px;}
.y16_c01152{bottom:458.895000px;}
.y15_c01152{bottom:482.655000px;}
.y14_c01152{bottom:506.415000px;}
.y13_c01152{bottom:530.175000px;}
.y12_c01152{bottom:553.935000px;}
.y11_c01152{bottom:577.905000px;}
.y10_c01152{bottom:601.665000px;}
.yf_c01152{bottom:625.425000px;}
.ye_c01152{bottom:649.185000px;}
.yd_c01152{bottom:673.125000px;}
.yc_c01152{bottom:696.885000px;}
.yb_c01152{bottom:720.645000px;}
.ya_c01152{bottom:744.405000px;}
.y9_c01152{bottom:768.345000px;}
.y8_c01152{bottom:792.105000px;}
.y7_c01152{bottom:830.805000px;}
.y23_c01152{bottom:854.595000px;}
.y6_c01152{bottom:869.730000px;}
.y5_c01152{bottom:904.650000px;}
.y2_c01152{bottom:1174.320000px;}
.y1_c01152{bottom:1194.660000px;}
.h8_c01152{height:29.482734px;}
.ha_c01152{height:38.700000px;}
.h7_c01152{height:43.246406px;}
.hc_c01152{height:45.180000px;}
.h2_c01152{height:48.062812px;}
.h3_c01152{height:50.229844px;}
.hb_c01152{height:53.428008px;}
.h9_c01152{height:63.763920px;}
.h4_c01152{height:64.546875px;}
.h5_c01152{height:75.093750px;}
.h6_c01152{height:1262.865000px;}
.h0_c01152{height:1262.880000px;}
.h1_c01152{height:1263.000000px;}
.w4_c01152{width:324.075000px;}
.w3_c01152{width:362.775000px;}
.w2_c01152{width:892.957500px;}
.w0_c01152{width:892.980000px;}
.w1_c01152{width:893.250000px;}
.x0_c01152{left:0.000000px;}
.x2_c01152{left:127.656000px;}
.x9_c01152{left:142.236000px;}
.x1_c01152{left:169.770000px;}
.x5_c01152{left:179.647500px;}
.x6_c01152{left:199.650000px;}
.x7_c01152{left:239.070000px;}
.xb_c01152{left:289.125000px;}
.x8_c01152{left:343.695000px;}
.xa_c01152{left:364.035000px;}
.x4_c01152{left:606.345000px;}
.x3_c01152{left:740.490000px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls6_c01152{letter-spacing:-0.291733pt;}
.ls5_c01152{letter-spacing:-0.242133pt;}
.ls3_c01152{letter-spacing:-0.161067pt;}
.ls2_c01152{letter-spacing:0.000000pt;}
.ls0_c01152{letter-spacing:0.128000pt;}
.ls4_c01152{letter-spacing:0.133333pt;}
.ls1_c01152{letter-spacing:0.154880pt;}
.ws1_c01152{word-spacing:-18.406507pt;}
.ws0_c01152{word-spacing:-17.792000pt;}
.ws2_c01152{word-spacing:0.000000pt;}
._0_c01152{margin-left:-1.236303pt;}
._1_c01152{width:1.024000pt;}
._2_c01152{width:2.569615pt;}
._3_c01152{width:3.557299pt;}
._b_c01152{width:4.560102pt;}
._4_c01152{width:9.280000pt;}
._5_c01152{width:10.304000pt;}
._a_c01152{width:14.144000pt;}
._7_c01152{width:21.184000pt;}
._6_c01152{width:22.250688pt;}
._f_c01152{width:26.112000pt;}
._e_c01152{width:27.008000pt;}
._11_c01152{width:43.328000pt;}
._10_c01152{width:44.608000pt;}
._c_c01152{width:49.408000pt;}
._9_c01152{width:50.752000pt;}
._8_c01152{width:51.776000pt;}
._d_c01152{width:56.960000pt;}
.fs3_c01152{font-size:34.560000pt;}
.fs2_c01152{font-size:42.880000pt;}
.fs4_c01152{font-size:53.120000pt;}
.fs0_c01152{font-size:58.880000pt;}
.fs1_c01152{font-size:64.000000pt;}
.y0_c01152{bottom:0.000000pt;}
.y22_c01152{bottom:22.093333pt;}
.y24_c01152{bottom:27.853333pt;}
.y4_c01152{bottom:51.232000pt;}
.y3_c01152{bottom:69.152000pt;}
.y20_c01152{bottom:97.152000pt;}
.y1f_c01152{bottom:113.312000pt;}
.y1e_c01152{bottom:130.272000pt;}
.y1d_c01152{bottom:134.906667pt;}
.y1c_c01152{bottom:147.866667pt;}
.y1b_c01152{bottom:309.826667pt;}
.y21_c01152{bottom:322.613333pt;}
.y19_c01152{bottom:344.386667pt;}
.y1a_c01152{bottom:349.666667pt;}
.y18_c01152{bottom:365.506667pt;}
.y17_c01152{bottom:386.626667pt;}
.y16_c01152{bottom:407.906667pt;}
.y15_c01152{bottom:429.026667pt;}
.y14_c01152{bottom:450.146667pt;}
.y13_c01152{bottom:471.266667pt;}
.y12_c01152{bottom:492.386667pt;}
.y11_c01152{bottom:513.693333pt;}
.y10_c01152{bottom:534.813333pt;}
.yf_c01152{bottom:555.933333pt;}
.ye_c01152{bottom:577.053333pt;}
.yd_c01152{bottom:598.333333pt;}
.yc_c01152{bottom:619.453333pt;}
.yb_c01152{bottom:640.573333pt;}
.ya_c01152{bottom:661.693333pt;}
.y9_c01152{bottom:682.973333pt;}
.y8_c01152{bottom:704.093333pt;}
.y7_c01152{bottom:738.493333pt;}
.y23_c01152{bottom:759.640000pt;}
.y6_c01152{bottom:773.093333pt;}
.y5_c01152{bottom:804.133333pt;}
.y2_c01152{bottom:1043.840000pt;}
.y1_c01152{bottom:1061.920000pt;}
.h8_c01152{height:26.206875pt;}
.ha_c01152{height:34.400000pt;}
.h7_c01152{height:38.441250pt;}
.hc_c01152{height:40.160000pt;}
.h2_c01152{height:42.722500pt;}
.h3_c01152{height:44.648750pt;}
.hb_c01152{height:47.491563pt;}
.h9_c01152{height:56.679040pt;}
.h4_c01152{height:57.375000pt;}
.h5_c01152{height:66.750000pt;}
.h6_c01152{height:1122.546667pt;}
.h0_c01152{height:1122.560000pt;}
.h1_c01152{height:1122.666667pt;}
.w4_c01152{width:288.066667pt;}
.w3_c01152{width:322.466667pt;}
.w2_c01152{width:793.740000pt;}
.w0_c01152{width:793.760000pt;}
.w1_c01152{width:794.000000pt;}
.x0_c01152{left:0.000000pt;}
.x2_c01152{left:113.472000pt;}
.x9_c01152{left:126.432000pt;}
.x1_c01152{left:150.906667pt;}
.x5_c01152{left:159.686667pt;}
.x6_c01152{left:177.466667pt;}
.x7_c01152{left:212.506667pt;}
.xb_c01152{left:257.000000pt;}
.x8_c01152{left:305.506667pt;}
.xa_c01152{left:323.586667pt;}
.x4_c01152{left:538.973333pt;}
.x3_c01152{left:658.213333pt;}
}





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

.ir_c01153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01153;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01153;src:url('chunks/assets/font_53cf0e5b954b7b31bde17ab0.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01153;src:url('chunks/assets/font_9b161d097e5f1ff01e9e410e.woff2')format("woff");}.ff3_c01153{font-family:ff3_c01153;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01153;src:url('chunks/assets/font_4ce7ede356eda96c1183dbc8.woff2')format("woff");}.ff4_c01153{font-family:ff4_c01153;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01153{vertical-align:0.000000px;}
.ls1_c01153{letter-spacing:-0.432000px;}
.ls0_c01153{letter-spacing:0.000000px;}
.sc__c01153{text-shadow:none;}
.sc0_c01153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01153{-webkit-text-stroke:0px transparent;}
.sc0_c01153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01153{word-spacing:-19.584000px;}
.ws1_c01153{word-spacing:0.000000px;}
._8_c01153{margin-left:-3.133109px;}
._0_c01153{margin-left:-1.258891px;}
._2_c01153{width:1.128024px;}
._7_c01153{width:2.664000px;}
._4_c01153{width:6.048000px;}
._3_c01153{width:7.344000px;}
._1_c01153{width:9.792000px;}
._6_c01153{width:10.944000px;}
._9_c01153{width:12.168000px;}
._5_c01153{width:13.536000px;}
._e_c01153{width:16.151976px;}
._c_c01153{width:17.832024px;}
._b_c01153{width:21.600000px;}
._a_c01153{width:25.560000px;}
._f_c01153{width:37.800000px;}
._d_c01153{width:57.648024px;}
.fc0_c01153{color:rgb(0,0,0);}
.fs2_c01153{font-size:59.760000px;}
.fs0_c01153{font-size:66.240000px;}
.fs1_c01153{font-size:72.000000px;}
.y0_c01153{bottom:0.000000px;}
.y23_c01153{bottom:12.045000px;}
.y21_c01153{bottom:18.000000px;}
.y4_c01153{bottom:57.636000px;}
.y3_c01153{bottom:77.796000px;}
.y1f_c01153{bottom:169.230000px;}
.y22_c01153{bottom:203.085000px;}
.y1e_c01153{bottom:208.110000px;}
.y1d_c01153{bottom:231.870000px;}
.y1c_c01153{bottom:255.630000px;}
.y1b_c01153{bottom:279.390000px;}
.y1a_c01153{bottom:303.375000px;}
.y19_c01153{bottom:327.135000px;}
.y18_c01153{bottom:350.895000px;}
.y17_c01153{bottom:374.655000px;}
.y16_c01153{bottom:398.595000px;}
.y15_c01153{bottom:422.355000px;}
.y14_c01153{bottom:446.115000px;}
.y13_c01153{bottom:469.875000px;}
.y12_c01153{bottom:493.635000px;}
.y11_c01153{bottom:517.575000px;}
.y10_c01153{bottom:541.335000px;}
.yf_c01153{bottom:565.125000px;}
.ye_c01153{bottom:588.885000px;}
.yd_c01153{bottom:612.825000px;}
.yc_c01153{bottom:636.585000px;}
.yb_c01153{bottom:660.345000px;}
.ya_c01153{bottom:684.105000px;}
.y9_c01153{bottom:708.045000px;}
.y8_c01153{bottom:731.805000px;}
.y7_c01153{bottom:755.565000px;}
.y20_c01153{bottom:791.745000px;}
.y6_c01153{bottom:794.445000px;}
.y5_c01153{bottom:829.365000px;}
.y2_c01153{bottom:1174.320000px;}
.y1_c01153{bottom:1194.660000px;}
.h7_c01153{height:25.920000px;}
.h5_c01153{height:31.860000px;}
.h2_c01153{height:48.062812px;}
.h3_c01153{height:50.229844px;}
.h6_c01153{height:53.428008px;}
.h4_c01153{height:64.546875px;}
.h0_c01153{height:1262.880000px;}
.h1_c01153{height:1263.000000px;}
.w3_c01153{width:360.615000px;}
.w2_c01153{width:404.175000px;}
.w0_c01153{width:892.980000px;}
.w1_c01153{width:893.250000px;}
.x0_c01153{left:0.000000px;}
.x1_c01153{left:127.656000px;}
.x3_c01153{left:174.270000px;}
.x4_c01153{left:234.405000px;}
.x5_c01153{left:367.635000px;}
.x2_c01153{left:658.185000px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls1_c01153{letter-spacing:-0.384000pt;}
.ls0_c01153{letter-spacing:0.000000pt;}
.ws0_c01153{word-spacing:-17.408000pt;}
.ws1_c01153{word-spacing:0.000000pt;}
._8_c01153{margin-left:-2.784986pt;}
._0_c01153{margin-left:-1.119014pt;}
._2_c01153{width:1.002688pt;}
._7_c01153{width:2.368000pt;}
._4_c01153{width:5.376000pt;}
._3_c01153{width:6.528000pt;}
._1_c01153{width:8.704000pt;}
._6_c01153{width:9.728000pt;}
._9_c01153{width:10.816000pt;}
._5_c01153{width:12.032000pt;}
._e_c01153{width:14.357312pt;}
._c_c01153{width:15.850688pt;}
._b_c01153{width:19.200000pt;}
._a_c01153{width:22.720000pt;}
._f_c01153{width:33.600000pt;}
._d_c01153{width:51.242688pt;}
.fs2_c01153{font-size:53.120000pt;}
.fs0_c01153{font-size:58.880000pt;}
.fs1_c01153{font-size:64.000000pt;}
.y0_c01153{bottom:0.000000pt;}
.y23_c01153{bottom:10.706667pt;}
.y21_c01153{bottom:16.000000pt;}
.y4_c01153{bottom:51.232000pt;}
.y3_c01153{bottom:69.152000pt;}
.y1f_c01153{bottom:150.426667pt;}
.y22_c01153{bottom:180.520000pt;}
.y1e_c01153{bottom:184.986667pt;}
.y1d_c01153{bottom:206.106667pt;}
.y1c_c01153{bottom:227.226667pt;}
.y1b_c01153{bottom:248.346667pt;}
.y1a_c01153{bottom:269.666667pt;}
.y19_c01153{bottom:290.786667pt;}
.y18_c01153{bottom:311.906667pt;}
.y17_c01153{bottom:333.026667pt;}
.y16_c01153{bottom:354.306667pt;}
.y15_c01153{bottom:375.426667pt;}
.y14_c01153{bottom:396.546667pt;}
.y13_c01153{bottom:417.666667pt;}
.y12_c01153{bottom:438.786667pt;}
.y11_c01153{bottom:460.066667pt;}
.y10_c01153{bottom:481.186667pt;}
.yf_c01153{bottom:502.333333pt;}
.ye_c01153{bottom:523.453333pt;}
.yd_c01153{bottom:544.733333pt;}
.yc_c01153{bottom:565.853333pt;}
.yb_c01153{bottom:586.973333pt;}
.ya_c01153{bottom:608.093333pt;}
.y9_c01153{bottom:629.373333pt;}
.y8_c01153{bottom:650.493333pt;}
.y7_c01153{bottom:671.613333pt;}
.y20_c01153{bottom:703.773333pt;}
.y6_c01153{bottom:706.173333pt;}
.y5_c01153{bottom:737.213333pt;}
.y2_c01153{bottom:1043.840000pt;}
.y1_c01153{bottom:1061.920000pt;}
.h7_c01153{height:23.040000pt;}
.h5_c01153{height:28.320000pt;}
.h2_c01153{height:42.722500pt;}
.h3_c01153{height:44.648750pt;}
.h6_c01153{height:47.491563pt;}
.h4_c01153{height:57.375000pt;}
.h0_c01153{height:1122.560000pt;}
.h1_c01153{height:1122.666667pt;}
.w3_c01153{width:320.546667pt;}
.w2_c01153{width:359.266667pt;}
.w0_c01153{width:793.760000pt;}
.w1_c01153{width:794.000000pt;}
.x0_c01153{left:0.000000pt;}
.x1_c01153{left:113.472000pt;}
.x3_c01153{left:154.906667pt;}
.x4_c01153{left:208.360000pt;}
.x5_c01153{left:326.786667pt;}
.x2_c01153{left:585.053333pt;}
}





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

.ir_c01154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01154;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01154;src:url('chunks/assets/font_ee0f3369338fd786e915963a.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01154;src:url('chunks/assets/font_b530b02c49566cf2bb6370e2.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01154;src:url('chunks/assets/font_d5a2814b3e7da716350ce6ca.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:1.104492;font-style:normal;font-weight: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_c01154;src:url('chunks/assets/font_0ed3717e8ab8324f912f3b66.woff2')format("woff");}.ff5_c01154{font-family:ff5_c01154;line-height:1.575000;font-style:normal;font-weight: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_c01154;src:url('chunks/assets/font_85292b3f9e1f579780d847ac.woff2')format("woff");}.ff6_c01154{font-family:ff6_c01154;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.ls7_c01154{letter-spacing:-0.720000px;}
.ls6_c01154{letter-spacing:-0.576000px;}
.ls8_c01154{letter-spacing:-0.432000px;}
.lsa_c01154{letter-spacing:-0.272400px;}
.ls4_c01154{letter-spacing:-0.181200px;}
.ls3_c01154{letter-spacing:0.000000px;}
.ls1_c01154{letter-spacing:0.144000px;}
.ls9_c01154{letter-spacing:0.150000px;}
.ls2_c01154{letter-spacing:0.174240px;}
.ls0_c01154{letter-spacing:0.216000px;}
.ls5_c01154{letter-spacing:0.288000px;}
.sc__c01154{text-shadow:none;}
.sc0_c01154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01154{-webkit-text-stroke:0px transparent;}
.sc0_c01154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01154{word-spacing:-20.304000px;}
.ws1_c01154{word-spacing:-20.016000px;}
.ws2_c01154{word-spacing:0.000000px;}
._5_c01154{margin-left:-3.024000px;}
._0_c01154{margin-left:-1.390841px;}
._1_c01154{width:1.026230px;}
._3_c01154{width:2.736000px;}
._2_c01154{width:4.248000px;}
._4_c01154{width:5.914889px;}
._b_c01154{width:7.396635px;}
._a_c01154{width:8.496000px;}
._6_c01154{width:9.648000px;}
._7_c01154{width:10.776024px;}
._9_c01154{width:12.209746px;}
._8_c01154{width:741.000000px;}
.fc0_c01154{color:rgb(0,0,0);}
.fs3_c01154{font-size:38.880000px;}
.fs2_c01154{font-size:48.240000px;}
.fs4_c01154{font-size:59.760000px;}
.fs0_c01154{font-size:66.240000px;}
.fs1_c01154{font-size:72.000000px;}
.y0_c01154{bottom:0.000000px;}
.y26_c01154{bottom:9.360000px;}
.y29_c01154{bottom:11.700000px;}
.y25_c01154{bottom:26.820000px;}
.y28_c01154{bottom:29.160000px;}
.y4_c01154{bottom:57.636000px;}
.y3_c01154{bottom:77.796000px;}
.y23_c01154{bottom:110.196000px;}
.y22_c01154{bottom:115.416000px;}
.y21_c01154{bottom:129.276000px;}
.y20_c01154{bottom:134.496000px;}
.y1f_c01154{bottom:148.356000px;}
.y1e_c01154{bottom:153.570000px;}
.y1d_c01154{bottom:168.150000px;}
.y1b_c01154{bottom:360.075000px;}
.y1c_c01154{bottom:366.015000px;}
.y1a_c01154{bottom:383.835000px;}
.y19_c01154{bottom:407.775000px;}
.y18_c01154{bottom:431.535000px;}
.y17_c01154{bottom:455.295000px;}
.y16_c01154{bottom:479.235000px;}
.y15_c01154{bottom:503.175000px;}
.y14_c01154{bottom:526.755000px;}
.y13_c01154{bottom:550.515000px;}
.y27_c01154{bottom:577.725000px;}
.y24_c01154{bottom:579.165000px;}
.y12_c01154{bottom:589.425000px;}
.y11_c01154{bottom:624.165000px;}
.y10_c01154{bottom:925.710000px;}
.yf_c01154{bottom:949.650000px;}
.ye_c01154{bottom:973.410000px;}
.yc_c01154{bottom:996.990000px;}
.yd_c01154{bottom:1002.930000px;}
.yb_c01154{bottom:1020.930000px;}
.ya_c01154{bottom:1044.690000px;}
.y9_c01154{bottom:1068.450000px;}
.y7_c01154{bottom:1092.210000px;}
.y8_c01154{bottom:1098.150000px;}
.y6_c01154{bottom:1115.970000px;}
.y5_c01154{bottom:1139.940000px;}
.y2_c01154{bottom:1174.320000px;}
.y1_c01154{bottom:1194.660000px;}
.h7_c01154{height:29.482734px;}
.h9_c01154{height:40.500000px;}
.hb_c01154{height:42.840000px;}
.h6_c01154{height:43.246406px;}
.h2_c01154{height:48.062812px;}
.h3_c01154{height:50.229844px;}
.ha_c01154{height:53.428008px;}
.h8_c01154{height:63.763920px;}
.h4_c01154{height:64.546875px;}
.h5_c01154{height:1262.865000px;}
.h0_c01154{height:1262.880000px;}
.h1_c01154{height:1263.000000px;}
.w4_c01154{width:180.930000px;}
.w3_c01154{width:216.225000px;}
.w2_c01154{width:892.957500px;}
.w0_c01154{width:892.980000px;}
.w1_c01154{width:893.250000px;}
.x0_c01154{left:0.000000px;}
.x2_c01154{left:127.656000px;}
.xc_c01154{left:142.236000px;}
.x1_c01154{left:169.770000px;}
.xe_c01154{left:259.965000px;}
.xb_c01154{left:343.695000px;}
.x8_c01154{left:436.755000px;}
.xd_c01154{left:449.895000px;}
.x9_c01154{left:512.902500px;}
.xa_c01154{left:532.905000px;}
.x6_c01154{left:658.522500px;}
.x4_c01154{left:671.482500px;}
.x7_c01154{left:678.525000px;}
.x5_c01154{left:691.530000px;}
.x3_c01154{left:740.490000px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls7_c01154{letter-spacing:-0.640000pt;}
.ls6_c01154{letter-spacing:-0.512000pt;}
.ls8_c01154{letter-spacing:-0.384000pt;}
.lsa_c01154{letter-spacing:-0.242133pt;}
.ls4_c01154{letter-spacing:-0.161067pt;}
.ls3_c01154{letter-spacing:0.000000pt;}
.ls1_c01154{letter-spacing:0.128000pt;}
.ls9_c01154{letter-spacing:0.133333pt;}
.ls2_c01154{letter-spacing:0.154880pt;}
.ls0_c01154{letter-spacing:0.192000pt;}
.ls5_c01154{letter-spacing:0.256000pt;}
.ws0_c01154{word-spacing:-18.048000pt;}
.ws1_c01154{word-spacing:-17.792000pt;}
.ws2_c01154{word-spacing:0.000000pt;}
._5_c01154{margin-left:-2.688000pt;}
._0_c01154{margin-left:-1.236303pt;}
._1_c01154{width:0.912205pt;}
._3_c01154{width:2.432000pt;}
._2_c01154{width:3.776000pt;}
._4_c01154{width:5.257679pt;}
._b_c01154{width:6.574787pt;}
._a_c01154{width:7.552000pt;}
._6_c01154{width:8.576000pt;}
._7_c01154{width:9.578688pt;}
._9_c01154{width:10.853107pt;}
._8_c01154{width:658.666667pt;}
.fs3_c01154{font-size:34.560000pt;}
.fs2_c01154{font-size:42.880000pt;}
.fs4_c01154{font-size:53.120000pt;}
.fs0_c01154{font-size:58.880000pt;}
.fs1_c01154{font-size:64.000000pt;}
.y0_c01154{bottom:0.000000pt;}
.y26_c01154{bottom:8.320000pt;}
.y29_c01154{bottom:10.400000pt;}
.y25_c01154{bottom:23.840000pt;}
.y28_c01154{bottom:25.920000pt;}
.y4_c01154{bottom:51.232000pt;}
.y3_c01154{bottom:69.152000pt;}
.y23_c01154{bottom:97.952000pt;}
.y22_c01154{bottom:102.592000pt;}
.y21_c01154{bottom:114.912000pt;}
.y20_c01154{bottom:119.552000pt;}
.y1f_c01154{bottom:131.872000pt;}
.y1e_c01154{bottom:136.506667pt;}
.y1d_c01154{bottom:149.466667pt;}
.y1b_c01154{bottom:320.066667pt;}
.y1c_c01154{bottom:325.346667pt;}
.y1a_c01154{bottom:341.186667pt;}
.y19_c01154{bottom:362.466667pt;}
.y18_c01154{bottom:383.586667pt;}
.y17_c01154{bottom:404.706667pt;}
.y16_c01154{bottom:425.986667pt;}
.y15_c01154{bottom:447.266667pt;}
.y14_c01154{bottom:468.226667pt;}
.y13_c01154{bottom:489.346667pt;}
.y27_c01154{bottom:513.533333pt;}
.y24_c01154{bottom:514.813333pt;}
.y12_c01154{bottom:523.933333pt;}
.y11_c01154{bottom:554.813333pt;}
.y10_c01154{bottom:822.853333pt;}
.yf_c01154{bottom:844.133333pt;}
.ye_c01154{bottom:865.253333pt;}
.yc_c01154{bottom:886.213333pt;}
.yd_c01154{bottom:891.493333pt;}
.yb_c01154{bottom:907.493333pt;}
.ya_c01154{bottom:928.613333pt;}
.y9_c01154{bottom:949.733333pt;}
.y7_c01154{bottom:970.853333pt;}
.y8_c01154{bottom:976.133333pt;}
.y6_c01154{bottom:991.973333pt;}
.y5_c01154{bottom:1013.280000pt;}
.y2_c01154{bottom:1043.840000pt;}
.y1_c01154{bottom:1061.920000pt;}
.h7_c01154{height:26.206875pt;}
.h9_c01154{height:36.000000pt;}
.hb_c01154{height:38.080000pt;}
.h6_c01154{height:38.441250pt;}
.h2_c01154{height:42.722500pt;}
.h3_c01154{height:44.648750pt;}
.ha_c01154{height:47.491563pt;}
.h8_c01154{height:56.679040pt;}
.h4_c01154{height:57.375000pt;}
.h5_c01154{height:1122.546667pt;}
.h0_c01154{height:1122.560000pt;}
.h1_c01154{height:1122.666667pt;}
.w4_c01154{width:160.826667pt;}
.w3_c01154{width:192.200000pt;}
.w2_c01154{width:793.740000pt;}
.w0_c01154{width:793.760000pt;}
.w1_c01154{width:794.000000pt;}
.x0_c01154{left:0.000000pt;}
.x2_c01154{left:113.472000pt;}
.xc_c01154{left:126.432000pt;}
.x1_c01154{left:150.906667pt;}
.xe_c01154{left:231.080000pt;}
.xb_c01154{left:305.506667pt;}
.x8_c01154{left:388.226667pt;}
.xd_c01154{left:399.906667pt;}
.x9_c01154{left:455.913333pt;}
.xa_c01154{left:473.693333pt;}
.x6_c01154{left:585.353333pt;}
.x4_c01154{left:596.873333pt;}
.x7_c01154{left:603.133333pt;}
.x5_c01154{left:614.693333pt;}
.x3_c01154{left:658.213333pt;}
}





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

.ir_c01155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01155;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01155;src:url('chunks/assets/font_b134519abb44b8f229a9e922.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01155;src:url('chunks/assets/font_a95bf577dd88480b56d0c879.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01155;src:url('chunks/assets/font_638f6cf0670a3f94de737da8.woff2')format("woff");}.ff4_c01155{font-family:ff4_c01155;line-height:1.575000;font-style:normal;font-weight: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_c01155;src:url('chunks/assets/font_c939bc59d3705f4db9853e95.woff2')format("woff");}.ff5_c01155{font-family:ff5_c01155;line-height:1.181152;font-style:normal;font-weight: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_c01155;src:url('chunks/assets/font_a4f5e96dd0b02ca3e6f213ec.woff2')format("woff");}.ff6_c01155{font-family:ff6_c01155;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01155{vertical-align:0.000000px;}
.ls6_c01155{letter-spacing:-0.272400px;}
.ls4_c01155{letter-spacing:-0.181200px;}
.ls2_c01155{letter-spacing:0.000000px;}
.ls3_c01155{letter-spacing:0.144000px;}
.ls5_c01155{letter-spacing:0.150000px;}
.ls1_c01155{letter-spacing:0.174240px;}
.ls0_c01155{letter-spacing:0.288000px;}
.sc__c01155{text-shadow:none;}
.sc0_c01155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01155{-webkit-text-stroke:0px transparent;}
.sc0_c01155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01155{word-spacing:-20.304000px;}
.ws1_c01155{word-spacing:-20.016000px;}
.ws2_c01155{word-spacing:0.000000px;}
._e_c01155{margin-left:-4.968000px;}
._f_c01155{margin-left:-3.790915px;}
._5_c01155{margin-left:-2.407738px;}
._0_c01155{margin-left:-1.258891px;}
._4_c01155{width:1.198915px;}
._c_c01155{width:3.335976px;}
._8_c01155{width:4.512024px;}
._9_c01155{width:6.118819px;}
._3_c01155{width:7.848000px;}
._b_c01155{width:13.405133px;}
._7_c01155{width:14.434891px;}
._6_c01155{width:15.624000px;}
._10_c01155{width:16.633109px;}
._d_c01155{width:18.936000px;}
._a_c01155{width:23.544000px;}
._12_c01155{width:27.372024px;}
._11_c01155{width:28.512000px;}
._1_c01155{width:687.000000px;}
._2_c01155{width:710.100000px;}
.fc0_c01155{color:rgb(0,0,0);}
.fs3_c01155{font-size:38.880000px;}
.fs2_c01155{font-size:48.240000px;}
.fs4_c01155{font-size:59.760000px;}
.fs0_c01155{font-size:66.240000px;}
.fs1_c01155{font-size:72.000000px;}
.y0_c01155{bottom:0.000000px;}
.y26_c01155{bottom:11.745000px;}
.y25_c01155{bottom:29.025000px;}
.y28_c01155{bottom:29.205000px;}
.y4_c01155{bottom:57.636000px;}
.y3_c01155{bottom:77.796000px;}
.y23_c01155{bottom:110.196000px;}
.y22_c01155{bottom:115.416000px;}
.y21_c01155{bottom:129.276000px;}
.y20_c01155{bottom:134.496000px;}
.y1f_c01155{bottom:148.356000px;}
.y1e_c01155{bottom:153.570000px;}
.y1d_c01155{bottom:168.150000px;}
.y1c_c01155{bottom:373.035000px;}
.y1b_c01155{bottom:396.795000px;}
.y1a_c01155{bottom:420.735000px;}
.y19_c01155{bottom:444.495000px;}
.y18_c01155{bottom:468.255000px;}
.y17_c01155{bottom:492.015000px;}
.y16_c01155{bottom:515.955000px;}
.y14_c01155{bottom:539.715000px;}
.y15_c01155{bottom:545.655000px;}
.y12_c01155{bottom:563.475000px;}
.y13_c01155{bottom:569.445000px;}
.y10_c01155{bottom:587.265000px;}
.y11_c01155{bottom:593.205000px;}
.yf_c01155{bottom:611.205000px;}
.ye_c01155{bottom:634.965000px;}
.yd_c01155{bottom:658.725000px;}
.yc_c01155{bottom:682.485000px;}
.yb_c01155{bottom:721.365000px;}
.ya_c01155{bottom:745.125000px;}
.y9_c01155{bottom:768.885000px;}
.y8_c01155{bottom:792.825000px;}
.y7_c01155{bottom:816.585000px;}
.y27_c01155{bottom:843.945000px;}
.y24_c01155{bottom:844.845000px;}
.y29_c01155{bottom:845.745000px;}
.y6_c01155{bottom:855.330000px;}
.y5_c01155{bottom:890.250000px;}
.y2_c01155{bottom:1174.320000px;}
.y1_c01155{bottom:1194.660000px;}
.h7_c01155{height:29.482734px;}
.h9_c01155{height:42.682500px;}
.hb_c01155{height:42.862500px;}
.h6_c01155{height:43.246406px;}
.h2_c01155{height:48.062812px;}
.h3_c01155{height:50.229844px;}
.ha_c01155{height:53.428008px;}
.h8_c01155{height:63.763920px;}
.h4_c01155{height:64.546875px;}
.h5_c01155{height:1262.865000px;}
.h0_c01155{height:1262.880000px;}
.h1_c01155{height:1263.000000px;}
.w3_c01155{width:153.390000px;}
.w4_c01155{width:163.665000px;}
.w5_c01155{width:194.775000px;}
.w2_c01155{width:892.957500px;}
.w0_c01155{width:892.980000px;}
.w1_c01155{width:893.250000px;}
.x0_c01155{left:0.000000px;}
.x1_c01155{left:127.656000px;}
.xb_c01155{left:142.236000px;}
.x3_c01155{left:149.436000px;}
.xc_c01155{left:184.725000px;}
.x2_c01155{left:338.295000px;}
.xa_c01155{left:343.695000px;}
.xd_c01155{left:350.535000px;}
.x4_c01155{left:434.032500px;}
.x5_c01155{left:454.035000px;}
.x8_c01155{left:486.592500px;}
.x9_c01155{left:506.625000px;}
.xe_c01155{left:532.740000px;}
.x6_c01155{left:625.582500px;}
.x7_c01155{left:645.585000px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls6_c01155{letter-spacing:-0.242133pt;}
.ls4_c01155{letter-spacing:-0.161067pt;}
.ls2_c01155{letter-spacing:0.000000pt;}
.ls3_c01155{letter-spacing:0.128000pt;}
.ls5_c01155{letter-spacing:0.133333pt;}
.ls1_c01155{letter-spacing:0.154880pt;}
.ls0_c01155{letter-spacing:0.256000pt;}
.ws0_c01155{word-spacing:-18.048000pt;}
.ws1_c01155{word-spacing:-17.792000pt;}
.ws2_c01155{word-spacing:0.000000pt;}
._e_c01155{margin-left:-4.416000pt;}
._f_c01155{margin-left:-3.369702pt;}
._5_c01155{margin-left:-2.140211pt;}
._0_c01155{margin-left:-1.119014pt;}
._4_c01155{width:1.065702pt;}
._c_c01155{width:2.965312pt;}
._8_c01155{width:4.010688pt;}
._9_c01155{width:5.438950pt;}
._3_c01155{width:6.976000pt;}
._b_c01155{width:11.915674pt;}
._7_c01155{width:12.831014pt;}
._6_c01155{width:13.888000pt;}
._10_c01155{width:14.784986pt;}
._d_c01155{width:16.832000pt;}
._a_c01155{width:20.928000pt;}
._12_c01155{width:24.330688pt;}
._11_c01155{width:25.344000pt;}
._1_c01155{width:610.666667pt;}
._2_c01155{width:631.200000pt;}
.fs3_c01155{font-size:34.560000pt;}
.fs2_c01155{font-size:42.880000pt;}
.fs4_c01155{font-size:53.120000pt;}
.fs0_c01155{font-size:58.880000pt;}
.fs1_c01155{font-size:64.000000pt;}
.y0_c01155{bottom:0.000000pt;}
.y26_c01155{bottom:10.440000pt;}
.y25_c01155{bottom:25.800000pt;}
.y28_c01155{bottom:25.960000pt;}
.y4_c01155{bottom:51.232000pt;}
.y3_c01155{bottom:69.152000pt;}
.y23_c01155{bottom:97.952000pt;}
.y22_c01155{bottom:102.592000pt;}
.y21_c01155{bottom:114.912000pt;}
.y20_c01155{bottom:119.552000pt;}
.y1f_c01155{bottom:131.872000pt;}
.y1e_c01155{bottom:136.506667pt;}
.y1d_c01155{bottom:149.466667pt;}
.y1c_c01155{bottom:331.586667pt;}
.y1b_c01155{bottom:352.706667pt;}
.y1a_c01155{bottom:373.986667pt;}
.y19_c01155{bottom:395.106667pt;}
.y18_c01155{bottom:416.226667pt;}
.y17_c01155{bottom:437.346667pt;}
.y16_c01155{bottom:458.626667pt;}
.y14_c01155{bottom:479.746667pt;}
.y15_c01155{bottom:485.026667pt;}
.y12_c01155{bottom:500.866667pt;}
.y13_c01155{bottom:506.173333pt;}
.y10_c01155{bottom:522.013333pt;}
.y11_c01155{bottom:527.293333pt;}
.yf_c01155{bottom:543.293333pt;}
.ye_c01155{bottom:564.413333pt;}
.yd_c01155{bottom:585.533333pt;}
.yc_c01155{bottom:606.653333pt;}
.yb_c01155{bottom:641.213333pt;}
.ya_c01155{bottom:662.333333pt;}
.y9_c01155{bottom:683.453333pt;}
.y8_c01155{bottom:704.733333pt;}
.y7_c01155{bottom:725.853333pt;}
.y27_c01155{bottom:750.173333pt;}
.y24_c01155{bottom:750.973333pt;}
.y29_c01155{bottom:751.773333pt;}
.y6_c01155{bottom:760.293333pt;}
.y5_c01155{bottom:791.333333pt;}
.y2_c01155{bottom:1043.840000pt;}
.y1_c01155{bottom:1061.920000pt;}
.h7_c01155{height:26.206875pt;}
.h9_c01155{height:37.940000pt;}
.hb_c01155{height:38.100000pt;}
.h6_c01155{height:38.441250pt;}
.h2_c01155{height:42.722500pt;}
.h3_c01155{height:44.648750pt;}
.ha_c01155{height:47.491563pt;}
.h8_c01155{height:56.679040pt;}
.h4_c01155{height:57.375000pt;}
.h5_c01155{height:1122.546667pt;}
.h0_c01155{height:1122.560000pt;}
.h1_c01155{height:1122.666667pt;}
.w3_c01155{width:136.346667pt;}
.w4_c01155{width:145.480000pt;}
.w5_c01155{width:173.133333pt;}
.w2_c01155{width:793.740000pt;}
.w0_c01155{width:793.760000pt;}
.w1_c01155{width:794.000000pt;}
.x0_c01155{left:0.000000pt;}
.x1_c01155{left:113.472000pt;}
.xb_c01155{left:126.432000pt;}
.x3_c01155{left:132.832000pt;}
.xc_c01155{left:164.200000pt;}
.x2_c01155{left:300.706667pt;}
.xa_c01155{left:305.506667pt;}
.xd_c01155{left:311.586667pt;}
.x4_c01155{left:385.806667pt;}
.x5_c01155{left:403.586667pt;}
.x8_c01155{left:432.526667pt;}
.x9_c01155{left:450.333333pt;}
.xe_c01155{left:473.546667pt;}
.x6_c01155{left:556.073333pt;}
.x7_c01155{left:573.853333pt;}
}





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

.ir_c01156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01156;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01156;src:url('chunks/assets/font_3b31995b6fb73e06b9118480.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01156;src:url('chunks/assets/font_d73a9648c3d9a04582540c5f.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01156;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c01156{font-family:ff4_c01156;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:ff5_c01156;src:url('chunks/assets/font_d8e95ccfe6033a584e78d5de.woff2')format("woff");}.ff5_c01156{font-family:ff5_c01156;line-height:1.575000;font-style:normal;font-weight: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_c01156;src:url('chunks/assets/font_f7a76b524ce7c483a0277d2d.woff2')format("woff");}.ff6_c01156{font-family:ff6_c01156;line-height:1.181152;font-style:normal;font-weight: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_c01156;src:url('chunks/assets/font_14c13b966a67314c05ff85c3.woff2')format("woff");}.ff7_c01156{font-family:ff7_c01156;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.ls5_c01156{letter-spacing:-0.720000px;}
.ls4_c01156{letter-spacing:-0.576000px;}
.ls8_c01156{letter-spacing:-0.272400px;}
.ls6_c01156{letter-spacing:-0.181200px;}
.ls9_c01156{letter-spacing:-0.106800px;}
.ls2_c01156{letter-spacing:0.000000px;}
.ls3_c01156{letter-spacing:0.144000px;}
.ls7_c01156{letter-spacing:0.150000px;}
.ls1_c01156{letter-spacing:0.174240px;}
.ls0_c01156{letter-spacing:0.288000px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01156{word-spacing:-16.506480px;}
.ws1_c01156{word-spacing:0.000000px;}
._c_c01156{margin-left:-5.544000px;}
._b_c01156{margin-left:-4.464000px;}
._8_c01156{margin-left:-2.884611px;}
._0_c01156{margin-left:-1.390841px;}
._3_c01156{width:1.596000px;}
._4_c01156{width:2.613707px;}
._6_c01156{width:3.840000px;}
._2_c01156{width:4.872000px;}
._5_c01156{width:5.904000px;}
._7_c01156{width:7.128000px;}
._9_c01156{width:8.280000px;}
._a_c01156{width:9.346865px;}
._10_c01156{width:13.104000px;}
._f_c01156{width:14.112000px;}
._e_c01156{width:21.024000px;}
._d_c01156{width:22.104000px;}
._1_c01156{width:1246.620000px;}
.fc0_c01156{color:rgb(0,0,0);}
.fs4_c01156{font-size:38.880000px;}
.fs2_c01156{font-size:48.240000px;}
.fs5_c01156{font-size:59.760000px;}
.fs0_c01156{font-size:66.240000px;}
.fs1_c01156{font-size:72.000000px;}
.fs3_c01156{font-size:84.240000px;}
.y0_c01156{bottom:0.000000px;}
.y24_c01156{bottom:4.155000px;}
.y22_c01156{bottom:4.335000px;}
.y27_c01156{bottom:18.555000px;}
.y26_c01156{bottom:35.835000px;}
.y4_c01156{bottom:57.636000px;}
.y3_c01156{bottom:77.796000px;}
.y20_c01156{bottom:110.196000px;}
.y1f_c01156{bottom:115.416000px;}
.y1e_c01156{bottom:129.996000px;}
.y1d_c01156{bottom:214.950000px;}
.y1c_c01156{bottom:253.110000px;}
.y1b_c01156{bottom:277.050000px;}
.y1a_c01156{bottom:307.875000px;}
.y19_c01156{bottom:338.655000px;}
.y25_c01156{bottom:341.520000px;}
.y18_c01156{bottom:380.055000px;}
.y17_c01156{bottom:418.935000px;}
.y15_c01156{bottom:457.635000px;}
.y16_c01156{bottom:463.575000px;}
.y14_c01156{bottom:481.575000px;}
.y13_c01156{bottom:505.335000px;}
.y12_c01156{bottom:529.095000px;}
.y11_c01156{bottom:552.855000px;}
.y10_c01156{bottom:576.825000px;}
.yf_c01156{bottom:600.585000px;}
.ye_c01156{bottom:624.345000px;}
.yd_c01156{bottom:663.225000px;}
.yc_c01156{bottom:686.985000px;}
.yb_c01156{bottom:710.745000px;}
.ya_c01156{bottom:734.505000px;}
.y9_c01156{bottom:758.445000px;}
.y8_c01156{bottom:782.205000px;}
.y7_c01156{bottom:805.965000px;}
.y6_c01156{bottom:844.845000px;}
.y21_c01156{bottom:857.835000px;}
.y23_c01156{bottom:858.015000px;}
.y5_c01156{bottom:879.810000px;}
.y2_c01156{bottom:1174.320000px;}
.y1_c01156{bottom:1194.660000px;}
.hc_c01156{height:18.000000px;}
.ha_c01156{height:18.180000px;}
.h8_c01156{height:29.482734px;}
.h6_c01156{height:43.246406px;}
.h2_c01156{height:48.062812px;}
.hd_c01156{height:49.500000px;}
.h3_c01156{height:50.229844px;}
.hb_c01156{height:53.428008px;}
.h9_c01156{height:63.763920px;}
.h4_c01156{height:64.546875px;}
.h7_c01156{height:87.859687px;}
.h5_c01156{height:1262.865000px;}
.h0_c01156{height:1262.880000px;}
.h1_c01156{height:1263.000000px;}
.w5_c01156{width:146.902500px;}
.w3_c01156{width:267.870000px;}
.w4_c01156{width:281.040000px;}
.w2_c01156{width:892.957500px;}
.w0_c01156{width:892.980000px;}
.w1_c01156{width:893.250000px;}
.x0_c01156{left:0.000000px;}
.x2_c01156{left:127.656000px;}
.x9_c01156{left:142.236000px;}
.x1_c01156{left:169.770000px;}
.x8_c01156{left:343.695000px;}
.x5_c01156{left:409.035000px;}
.x4_c01156{left:438.735000px;}
.xa_c01156{left:451.875000px;}
.x6_c01156{left:512.002500px;}
.x7_c01156{left:532.005000px;}
.xb_c01156{left:619.500000px;}
.x3_c01156{left:740.490000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls5_c01156{letter-spacing:-0.640000pt;}
.ls4_c01156{letter-spacing:-0.512000pt;}
.ls8_c01156{letter-spacing:-0.242133pt;}
.ls6_c01156{letter-spacing:-0.161067pt;}
.ls9_c01156{letter-spacing:-0.094933pt;}
.ls2_c01156{letter-spacing:0.000000pt;}
.ls3_c01156{letter-spacing:0.128000pt;}
.ls7_c01156{letter-spacing:0.133333pt;}
.ls1_c01156{letter-spacing:0.154880pt;}
.ls0_c01156{letter-spacing:0.256000pt;}
.ws0_c01156{word-spacing:-14.672427pt;}
.ws1_c01156{word-spacing:0.000000pt;}
._c_c01156{margin-left:-4.928000pt;}
._b_c01156{margin-left:-3.968000pt;}
._8_c01156{margin-left:-2.564099pt;}
._0_c01156{margin-left:-1.236303pt;}
._3_c01156{width:1.418667pt;}
._4_c01156{width:2.323295pt;}
._6_c01156{width:3.413333pt;}
._2_c01156{width:4.330667pt;}
._5_c01156{width:5.248000pt;}
._7_c01156{width:6.336000pt;}
._9_c01156{width:7.360000pt;}
._a_c01156{width:8.308325pt;}
._10_c01156{width:11.648000pt;}
._f_c01156{width:12.544000pt;}
._e_c01156{width:18.688000pt;}
._d_c01156{width:19.648000pt;}
._1_c01156{width:1108.106667pt;}
.fs4_c01156{font-size:34.560000pt;}
.fs2_c01156{font-size:42.880000pt;}
.fs5_c01156{font-size:53.120000pt;}
.fs0_c01156{font-size:58.880000pt;}
.fs1_c01156{font-size:64.000000pt;}
.fs3_c01156{font-size:74.880000pt;}
.y0_c01156{bottom:0.000000pt;}
.y24_c01156{bottom:3.693333pt;}
.y22_c01156{bottom:3.853333pt;}
.y27_c01156{bottom:16.493333pt;}
.y26_c01156{bottom:31.853333pt;}
.y4_c01156{bottom:51.232000pt;}
.y3_c01156{bottom:69.152000pt;}
.y20_c01156{bottom:97.952000pt;}
.y1f_c01156{bottom:102.592000pt;}
.y1e_c01156{bottom:115.552000pt;}
.y1d_c01156{bottom:191.066667pt;}
.y1c_c01156{bottom:224.986667pt;}
.y1b_c01156{bottom:246.266667pt;}
.y1a_c01156{bottom:273.666667pt;}
.y19_c01156{bottom:301.026667pt;}
.y25_c01156{bottom:303.573333pt;}
.y18_c01156{bottom:337.826667pt;}
.y17_c01156{bottom:372.386667pt;}
.y15_c01156{bottom:406.786667pt;}
.y16_c01156{bottom:412.066667pt;}
.y14_c01156{bottom:428.066667pt;}
.y13_c01156{bottom:449.186667pt;}
.y12_c01156{bottom:470.306667pt;}
.y11_c01156{bottom:491.426667pt;}
.y10_c01156{bottom:512.733333pt;}
.yf_c01156{bottom:533.853333pt;}
.ye_c01156{bottom:554.973333pt;}
.yd_c01156{bottom:589.533333pt;}
.yc_c01156{bottom:610.653333pt;}
.yb_c01156{bottom:631.773333pt;}
.ya_c01156{bottom:652.893333pt;}
.y9_c01156{bottom:674.173333pt;}
.y8_c01156{bottom:695.293333pt;}
.y7_c01156{bottom:716.413333pt;}
.y6_c01156{bottom:750.973333pt;}
.y21_c01156{bottom:762.520000pt;}
.y23_c01156{bottom:762.680000pt;}
.y5_c01156{bottom:782.053333pt;}
.y2_c01156{bottom:1043.840000pt;}
.y1_c01156{bottom:1061.920000pt;}
.hc_c01156{height:16.000000pt;}
.ha_c01156{height:16.160000pt;}
.h8_c01156{height:26.206875pt;}
.h6_c01156{height:38.441250pt;}
.h2_c01156{height:42.722500pt;}
.hd_c01156{height:44.000000pt;}
.h3_c01156{height:44.648750pt;}
.hb_c01156{height:47.491563pt;}
.h9_c01156{height:56.679040pt;}
.h4_c01156{height:57.375000pt;}
.h7_c01156{height:78.097500pt;}
.h5_c01156{height:1122.546667pt;}
.h0_c01156{height:1122.560000pt;}
.h1_c01156{height:1122.666667pt;}
.w5_c01156{width:130.580000pt;}
.w3_c01156{width:238.106667pt;}
.w4_c01156{width:249.813333pt;}
.w2_c01156{width:793.740000pt;}
.w0_c01156{width:793.760000pt;}
.w1_c01156{width:794.000000pt;}
.x0_c01156{left:0.000000pt;}
.x2_c01156{left:113.472000pt;}
.x9_c01156{left:126.432000pt;}
.x1_c01156{left:150.906667pt;}
.x8_c01156{left:305.506667pt;}
.x5_c01156{left:363.586667pt;}
.x4_c01156{left:389.986667pt;}
.xa_c01156{left:401.666667pt;}
.x6_c01156{left:455.113333pt;}
.x7_c01156{left:472.893333pt;}
.xb_c01156{left:550.666667pt;}
.x3_c01156{left:658.213333pt;}
}





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

.ir_c01157:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01157;src:url('chunks/assets/font_ca789619a74729311a107ba5.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01157;src:url('chunks/assets/font_4c0a0f24c570adf75a499c23.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01157;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff3_c01157{font-family:ff3_c01157;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01157;src:url('chunks/assets/font_05cee68c4cf707be5a98d149.woff2')format("woff");}.ff4_c01157{font-family:ff4_c01157;line-height:1.106934;font-style:normal;font-weight: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_c01157;src:url('chunks/assets/font_a0ccf6ad1bb547580ceff8f2.woff2')format("woff");}.ff5_c01157{font-family:ff5_c01157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01157{vertical-align:0.000000px;}
.ls2_c01157{letter-spacing:-0.432000px;}
.ls4_c01157{letter-spacing:-0.272400px;}
.ls5_c01157{letter-spacing:-0.247800px;}
.ls3_c01157{letter-spacing:-0.181200px;}
.ls1_c01157{letter-spacing:0.000000px;}
.ls0_c01157{letter-spacing:0.144000px;}
.sc__c01157{text-shadow:none;}
.sc0_c01157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01157{-webkit-text-stroke:0px transparent;}
.sc0_c01157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01157{word-spacing:-21.035520px;}
.ws0_c01157{word-spacing:-19.584000px;}
.ws2_c01157{word-spacing:0.000000px;}
._3_c01157{margin-left:-3.816936px;}
._2_c01157{margin-left:-2.519064px;}
._0_c01157{margin-left:-1.258891px;}
._1_c01157{width:1.380024px;}
._4_c01157{width:2.530843px;}
._5_c01157{width:3.649133px;}
._7_c01157{width:4.752000px;}
._6_c01157{width:5.760000px;}
._8_c01157{width:7.128000px;}
._c_c01157{width:8.784000px;}
._b_c01157{width:12.384000px;}
._d_c01157{width:13.774867px;}
._a_c01157{width:16.920000px;}
._9_c01157{width:18.072000px;}
._e_c01157{width:27.360000px;}
.fc0_c01157{color:rgb(0,0,0);}
.fs4_c01157{font-size:38.880000px;}
.fs3_c01157{font-size:48.240000px;}
.fs5_c01157{font-size:59.760000px;}
.fs0_c01157{font-size:66.240000px;}
.fs2_c01157{font-size:72.000000px;}
.fs1_c01157{font-size:84.240000px;}
.y0_c01157{bottom:0.000000px;}
.y2_c01157{bottom:77.796000px;}
.y1e_c01157{bottom:109.296000px;}
.y1d_c01157{bottom:114.516000px;}
.y1c_c01157{bottom:127.476000px;}
.y1b_c01157{bottom:146.556000px;}
.y1a_c01157{bottom:151.770000px;}
.y18_c01157{bottom:624.705000px;}
.y19_c01157{bottom:630.645000px;}
.y16_c01157{bottom:648.465000px;}
.y17_c01157{bottom:654.405000px;}
.y15_c01157{bottom:672.225000px;}
.y14_c01157{bottom:695.985000px;}
.y13_c01157{bottom:719.745000px;}
.y12_c01157{bottom:743.685000px;}
.y11_c01157{bottom:782.385000px;}
.y10_c01157{bottom:806.325000px;}
.yf_c01157{bottom:830.085000px;}
.ye_c01157{bottom:853.890000px;}
.yd_c01157{bottom:877.650000px;}
.yc_c01157{bottom:901.410000px;}
.yb_c01157{bottom:925.350000px;}
.ya_c01157{bottom:949.110000px;}
.y9_c01157{bottom:972.870000px;}
.y8_c01157{bottom:996.630000px;}
.y7_c01157{bottom:1020.570000px;}
.y6_c01157{bottom:1044.330000px;}
.y5_c01157{bottom:1068.090000px;}
.y4_c01157{bottom:1091.850000px;}
.y3_c01157{bottom:1137.240000px;}
.y1_c01157{bottom:1194.660000px;}
.h8_c01157{height:29.482734px;}
.ha_c01157{height:41.484960px;}
.h7_c01157{height:43.246406px;}
.h2_c01157{height:48.062812px;}
.h3_c01157{height:50.229844px;}
.h9_c01157{height:63.763920px;}
.h5_c01157{height:64.546875px;}
.h4_c01157{height:87.859687px;}
.h6_c01157{height:1262.865000px;}
.h0_c01157{height:1262.880000px;}
.h1_c01157{height:1263.000000px;}
.w2_c01157{width:892.957500px;}
.w0_c01157{width:892.980000px;}
.w1_c01157{width:893.250000px;}
.x0_c01157{left:0.000000px;}
.x1_c01157{left:127.656000px;}
.x6_c01157{left:142.236000px;}
.x7_c01157{left:146.016000px;}
.x2_c01157{left:478.312500px;}
.x3_c01157{left:498.345000px;}
.x4_c01157{left:589.942500px;}
.x5_c01157{left:609.945000px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.ls2_c01157{letter-spacing:-0.384000pt;}
.ls4_c01157{letter-spacing:-0.242133pt;}
.ls5_c01157{letter-spacing:-0.220267pt;}
.ls3_c01157{letter-spacing:-0.161067pt;}
.ls1_c01157{letter-spacing:0.000000pt;}
.ls0_c01157{letter-spacing:0.128000pt;}
.ws1_c01157{word-spacing:-18.698240pt;}
.ws0_c01157{word-spacing:-17.408000pt;}
.ws2_c01157{word-spacing:0.000000pt;}
._3_c01157{margin-left:-3.392832pt;}
._2_c01157{margin-left:-2.239168pt;}
._0_c01157{margin-left:-1.119014pt;}
._1_c01157{width:1.226688pt;}
._4_c01157{width:2.249638pt;}
._5_c01157{width:3.243674pt;}
._7_c01157{width:4.224000pt;}
._6_c01157{width:5.120000pt;}
._8_c01157{width:6.336000pt;}
._c_c01157{width:7.808000pt;}
._b_c01157{width:11.008000pt;}
._d_c01157{width:12.244326pt;}
._a_c01157{width:15.040000pt;}
._9_c01157{width:16.064000pt;}
._e_c01157{width:24.320000pt;}
.fs4_c01157{font-size:34.560000pt;}
.fs3_c01157{font-size:42.880000pt;}
.fs5_c01157{font-size:53.120000pt;}
.fs0_c01157{font-size:58.880000pt;}
.fs2_c01157{font-size:64.000000pt;}
.fs1_c01157{font-size:74.880000pt;}
.y0_c01157{bottom:0.000000pt;}
.y2_c01157{bottom:69.152000pt;}
.y1e_c01157{bottom:97.152000pt;}
.y1d_c01157{bottom:101.792000pt;}
.y1c_c01157{bottom:113.312000pt;}
.y1b_c01157{bottom:130.272000pt;}
.y1a_c01157{bottom:134.906667pt;}
.y18_c01157{bottom:555.293333pt;}
.y19_c01157{bottom:560.573333pt;}
.y16_c01157{bottom:576.413333pt;}
.y17_c01157{bottom:581.693333pt;}
.y15_c01157{bottom:597.533333pt;}
.y14_c01157{bottom:618.653333pt;}
.y13_c01157{bottom:639.773333pt;}
.y12_c01157{bottom:661.053333pt;}
.y11_c01157{bottom:695.453333pt;}
.y10_c01157{bottom:716.733333pt;}
.yf_c01157{bottom:737.853333pt;}
.ye_c01157{bottom:759.013333pt;}
.yd_c01157{bottom:780.133333pt;}
.yc_c01157{bottom:801.253333pt;}
.yb_c01157{bottom:822.533333pt;}
.ya_c01157{bottom:843.653333pt;}
.y9_c01157{bottom:864.773333pt;}
.y8_c01157{bottom:885.893333pt;}
.y7_c01157{bottom:907.173333pt;}
.y6_c01157{bottom:928.293333pt;}
.y5_c01157{bottom:949.413333pt;}
.y4_c01157{bottom:970.533333pt;}
.y3_c01157{bottom:1010.880000pt;}
.y1_c01157{bottom:1061.920000pt;}
.h8_c01157{height:26.206875pt;}
.ha_c01157{height:36.875520pt;}
.h7_c01157{height:38.441250pt;}
.h2_c01157{height:42.722500pt;}
.h3_c01157{height:44.648750pt;}
.h9_c01157{height:56.679040pt;}
.h5_c01157{height:57.375000pt;}
.h4_c01157{height:78.097500pt;}
.h6_c01157{height:1122.546667pt;}
.h0_c01157{height:1122.560000pt;}
.h1_c01157{height:1122.666667pt;}
.w2_c01157{width:793.740000pt;}
.w0_c01157{width:793.760000pt;}
.w1_c01157{width:794.000000pt;}
.x0_c01157{left:0.000000pt;}
.x1_c01157{left:113.472000pt;}
.x6_c01157{left:126.432000pt;}
.x7_c01157{left:129.792000pt;}
.x2_c01157{left:425.166667pt;}
.x3_c01157{left:442.973333pt;}
.x4_c01157{left:524.393333pt;}
.x5_c01157{left:542.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_c01158 {
    display:none;
  }
  .loading-indicator_c01158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01158 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01158 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01158" -> "#page-container .classname_c01158")
 */
.pf_c01158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01158 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01158 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01158 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01158 {overflow:visible;}
  }
}
.c_c01158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01158 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01158:after { /* webkit #35443 */
  content: '';
}
.t_c01158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01158 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01158 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01158 { /* info for Javascript */
  display:none;
}
.l_c01158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01158;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01158;src:url('chunks/assets/font_456bf80f3046a501324cbdae.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01158;src:url('chunks/assets/font_e5454dc2b0a554d8c7a9c523.woff2')format("woff");}.ff3_c01158{font-family:ff3_c01158;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01158;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01158{font-family:ff4_c01158;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:ff5_c01158;src:url('chunks/assets/font_33c553d4e53ed5036d281a98.woff2')format("woff");}.ff5_c01158{font-family:ff5_c01158;line-height:0.915039;font-style:normal;font-weight: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_c01158;src:url('chunks/assets/font_1ec44ecc2587cc84ba182faf.woff2')format("woff");}.ff6_c01158{font-family:ff6_c01158;line-height:1.009766;font-style:normal;font-weight: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_c01158;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff7_c01158{font-family:ff7_c01158;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:ff8_c01158;src:url('chunks/assets/font_782fe85f0d85a0bbb288442f.woff2')format("woff");}.ff8_c01158{font-family:ff8_c01158;line-height:1.106934;font-style:normal;font-weight: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_c01158;src:url('chunks/assets/font_2b70c9730b6bac7895068ad7.woff2')format("woff");}.ff9_c01158{font-family:ff9_c01158;line-height:1.575000;font-style:normal;font-weight: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_c01158;src:url('chunks/assets/font_a070519e728d0e08198c690b.woff2')format("woff");}.ffa_c01158{font-family:ffa_c01158;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01158{vertical-align:0.000000px;}
.ls5_c01158{letter-spacing:-0.540600px;}
.ls6_c01158{letter-spacing:-0.504000px;}
.ls8_c01158{letter-spacing:-0.272400px;}
.lsa_c01158{letter-spacing:-0.247800px;}
.ls7_c01158{letter-spacing:-0.181200px;}
.ls4_c01158{letter-spacing:-0.072000px;}
.ls3_c01158{letter-spacing:0.000000px;}
.ls2_c01158{letter-spacing:0.152400px;}
.ls9_c01158{letter-spacing:0.567600px;}
.ls0_c01158{letter-spacing:20.784000px;}
.ls1_c01158{letter-spacing:20.808000px;}
.sc__c01158{text-shadow:none;}
.sc1_c01158{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01158{-webkit-text-stroke:0px transparent;}
.sc1_c01158{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01158{word-spacing:-21.187920px;}
.ws0_c01158{word-spacing:-20.554560px;}
.ws3_c01158{word-spacing:-20.016000px;}
.ws2_c01158{word-spacing:-19.512000px;}
.ws1_c01158{word-spacing:-18.000000px;}
.ws5_c01158{word-spacing:0.000000px;}
._a_c01158{margin-left:-5.115476px;}
._9_c01158{margin-left:-3.816000px;}
._2_c01158{margin-left:-2.695848px;}
._0_c01158{margin-left:-1.390841px;}
._1_c01158{width:1.367061px;}
._4_c01158{width:2.952000px;}
._c_c01158{width:3.982841px;}
._6_c01158{width:5.040000px;}
._8_c01158{width:6.816024px;}
._7_c01158{width:8.136000px;}
._b_c01158{width:9.648000px;}
._5_c01158{width:11.016000px;}
._d_c01158{width:16.488000px;}
._3_c01158{width:21.672000px;}
.fc1_c01158{color:rgb(238,119,0);}
.fc0_c01158{color:rgb(0,0,0);}
.fs4_c01158{font-size:38.880000px;}
.fs3_c01158{font-size:48.240000px;}
.fs5_c01158{font-size:59.760000px;}
.fs0_c01158{font-size:66.240000px;}
.fs2_c01158{font-size:72.000000px;}
.fs1_c01158{font-size:84.240000px;}
.y0_c01158{bottom:0.000000px;}
.y7_c01158{bottom:5.040000px;}
.ya_c01158{bottom:5.055000px;}
.y11_c01158{bottom:5.235000px;}
.yd_c01158{bottom:8.820000px;}
.y6_c01158{bottom:31.140000px;}
.yf_c01158{bottom:31.320000px;}
.yc_c01158{bottom:40.860000px;}
.y2_c01158{bottom:77.796000px;}
.y32_c01158{bottom:109.296000px;}
.y31_c01158{bottom:127.476000px;}
.y30_c01158{bottom:132.696000px;}
.y2f_c01158{bottom:145.656000px;}
.y2e_c01158{bottom:164.910000px;}
.y2d_c01158{bottom:170.130000px;}
.y2c_c01158{bottom:206.490000px;}
.y2b_c01158{bottom:228.810000px;}
.y2a_c01158{bottom:251.130000px;}
.y29_c01158{bottom:273.630000px;}
.y28_c01158{bottom:295.995000px;}
.y27_c01158{bottom:318.315000px;}
.y26_c01158{bottom:340.635000px;}
.y25_c01158{bottom:362.955000px;}
.y23_c01158{bottom:385.275000px;}
.y24_c01158{bottom:391.215000px;}
.y22_c01158{bottom:407.595000px;}
.y21_c01158{bottom:429.915000px;}
.y20_c01158{bottom:452.235000px;}
.y1e_c01158{bottom:486.795000px;}
.y1f_c01158{bottom:492.735000px;}
.y1d_c01158{bottom:508.935000px;}
.y1c_c01158{bottom:531.255000px;}
.y1b_c01158{bottom:553.575000px;}
.y1a_c01158{bottom:575.925000px;}
.y19_c01158{bottom:598.425000px;}
.y18_c01158{bottom:620.745000px;}
.y17_c01158{bottom:643.065000px;}
.y16_c01158{bottom:665.385000px;}
.y15_c01158{bottom:687.705000px;}
.y14_c01158{bottom:710.025000px;}
.y13_c01158{bottom:732.345000px;}
.y12_c01158{bottom:776.085000px;}
.y10_c01158{bottom:851.355000px;}
.ye_c01158{bottom:851.370000px;}
.yb_c01158{bottom:905.910000px;}
.y9_c01158{bottom:969.975000px;}
.y8_c01158{bottom:969.990000px;}
.y5_c01158{bottom:1024.350000px;}
.y4_c01158{bottom:1106.610000px;}
.y3_c01158{bottom:1134.000000px;}
.y1_c01158{bottom:1194.660000px;}
.h12_c01158{height:29.482734px;}
.h14_c01158{height:41.484960px;}
.h11_c01158{height:43.246406px;}
.h2_c01158{height:48.062812px;}
.h3_c01158{height:50.229844px;}
.h7_c01158{height:52.382812px;}
.h5_c01158{height:54.345000px;}
.h8_c01158{height:54.351000px;}
.h9_c01158{height:54.360000px;}
.hb_c01158{height:54.525000px;}
.hc_c01158{height:54.531000px;}
.hd_c01158{height:54.540000px;}
.h4_c01158{height:61.205625px;}
.h6_c01158{height:63.550195px;}
.h13_c01158{height:63.763920px;}
.ha_c01158{height:64.065000px;}
.hf_c01158{height:64.546875px;}
.he_c01158{height:87.859687px;}
.h10_c01158{height:1262.865000px;}
.h0_c01158{height:1262.880000px;}
.h1_c01158{height:1263.000000px;}
.w3_c01158{width:230.415000px;}
.w4_c01158{width:230.430000px;}
.w2_c01158{width:403.626000px;}
.w5_c01158{width:892.957500px;}
.w0_c01158{width:892.980000px;}
.w1_c01158{width:893.250000px;}
.x0_c01158{left:0.000000px;}
.x4_c01158{left:10.251000px;}
.x6_c01158{left:31.845000px;}
.x3_c01158{left:127.656000px;}
.xb_c01158{left:142.236000px;}
.xc_c01158{left:146.016000px;}
.x1_c01158{left:169.950000px;}
.x9_c01158{left:210.607500px;}
.xa_c01158{left:230.610000px;}
.x7_c01158{left:313.792500px;}
.x8_c01158{left:333.795000px;}
.x5_c01158{left:531.300000px;}
.x2_c01158{left:740.490000px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls5_c01158{letter-spacing:-0.480533pt;}
.ls6_c01158{letter-spacing:-0.448000pt;}
.ls8_c01158{letter-spacing:-0.242133pt;}
.lsa_c01158{letter-spacing:-0.220267pt;}
.ls7_c01158{letter-spacing:-0.161067pt;}
.ls4_c01158{letter-spacing:-0.064000pt;}
.ls3_c01158{letter-spacing:0.000000pt;}
.ls2_c01158{letter-spacing:0.135467pt;}
.ls9_c01158{letter-spacing:0.504533pt;}
.ls0_c01158{letter-spacing:18.474667pt;}
.ls1_c01158{letter-spacing:18.496000pt;}
.ws4_c01158{word-spacing:-18.833707pt;}
.ws0_c01158{word-spacing:-18.270720pt;}
.ws3_c01158{word-spacing:-17.792000pt;}
.ws2_c01158{word-spacing:-17.344000pt;}
.ws1_c01158{word-spacing:-16.000000pt;}
.ws5_c01158{word-spacing:0.000000pt;}
._a_c01158{margin-left:-4.547090pt;}
._9_c01158{margin-left:-3.392000pt;}
._2_c01158{margin-left:-2.396310pt;}
._0_c01158{margin-left:-1.236303pt;}
._1_c01158{width:1.215165pt;}
._4_c01158{width:2.624000pt;}
._c_c01158{width:3.540303pt;}
._6_c01158{width:4.480000pt;}
._8_c01158{width:6.058688pt;}
._7_c01158{width:7.232000pt;}
._b_c01158{width:8.576000pt;}
._5_c01158{width:9.792000pt;}
._d_c01158{width:14.656000pt;}
._3_c01158{width:19.264000pt;}
.fs4_c01158{font-size:34.560000pt;}
.fs3_c01158{font-size:42.880000pt;}
.fs5_c01158{font-size:53.120000pt;}
.fs0_c01158{font-size:58.880000pt;}
.fs2_c01158{font-size:64.000000pt;}
.fs1_c01158{font-size:74.880000pt;}
.y0_c01158{bottom:0.000000pt;}
.y7_c01158{bottom:4.480000pt;}
.ya_c01158{bottom:4.493333pt;}
.y11_c01158{bottom:4.653333pt;}
.yd_c01158{bottom:7.840000pt;}
.y6_c01158{bottom:27.680000pt;}
.yf_c01158{bottom:27.840000pt;}
.yc_c01158{bottom:36.320000pt;}
.y2_c01158{bottom:69.152000pt;}
.y32_c01158{bottom:97.152000pt;}
.y31_c01158{bottom:113.312000pt;}
.y30_c01158{bottom:117.952000pt;}
.y2f_c01158{bottom:129.472000pt;}
.y2e_c01158{bottom:146.586667pt;}
.y2d_c01158{bottom:151.226667pt;}
.y2c_c01158{bottom:183.546667pt;}
.y2b_c01158{bottom:203.386667pt;}
.y2a_c01158{bottom:223.226667pt;}
.y29_c01158{bottom:243.226667pt;}
.y28_c01158{bottom:263.106667pt;}
.y27_c01158{bottom:282.946667pt;}
.y26_c01158{bottom:302.786667pt;}
.y25_c01158{bottom:322.626667pt;}
.y23_c01158{bottom:342.466667pt;}
.y24_c01158{bottom:347.746667pt;}
.y22_c01158{bottom:362.306667pt;}
.y21_c01158{bottom:382.146667pt;}
.y20_c01158{bottom:401.986667pt;}
.y1e_c01158{bottom:432.706667pt;}
.y1f_c01158{bottom:437.986667pt;}
.y1d_c01158{bottom:452.386667pt;}
.y1c_c01158{bottom:472.226667pt;}
.y1b_c01158{bottom:492.066667pt;}
.y1a_c01158{bottom:511.933333pt;}
.y19_c01158{bottom:531.933333pt;}
.y18_c01158{bottom:551.773333pt;}
.y17_c01158{bottom:571.613333pt;}
.y16_c01158{bottom:591.453333pt;}
.y15_c01158{bottom:611.293333pt;}
.y14_c01158{bottom:631.133333pt;}
.y13_c01158{bottom:650.973333pt;}
.y12_c01158{bottom:689.853333pt;}
.y10_c01158{bottom:756.760000pt;}
.ye_c01158{bottom:756.773333pt;}
.yb_c01158{bottom:805.253333pt;}
.y9_c01158{bottom:862.200000pt;}
.y8_c01158{bottom:862.213333pt;}
.y5_c01158{bottom:910.533333pt;}
.y4_c01158{bottom:983.653333pt;}
.y3_c01158{bottom:1008.000000pt;}
.y1_c01158{bottom:1061.920000pt;}
.h12_c01158{height:26.206875pt;}
.h14_c01158{height:36.875520pt;}
.h11_c01158{height:38.441250pt;}
.h2_c01158{height:42.722500pt;}
.h3_c01158{height:44.648750pt;}
.h7_c01158{height:46.562500pt;}
.h5_c01158{height:48.306667pt;}
.h8_c01158{height:48.312000pt;}
.h9_c01158{height:48.320000pt;}
.hb_c01158{height:48.466667pt;}
.hc_c01158{height:48.472000pt;}
.hd_c01158{height:48.480000pt;}
.h4_c01158{height:54.405000pt;}
.h6_c01158{height:56.489062pt;}
.h13_c01158{height:56.679040pt;}
.ha_c01158{height:56.946667pt;}
.hf_c01158{height:57.375000pt;}
.he_c01158{height:78.097500pt;}
.h10_c01158{height:1122.546667pt;}
.h0_c01158{height:1122.560000pt;}
.h1_c01158{height:1122.666667pt;}
.w3_c01158{width:204.813333pt;}
.w4_c01158{width:204.826667pt;}
.w2_c01158{width:358.778667pt;}
.w5_c01158{width:793.740000pt;}
.w0_c01158{width:793.760000pt;}
.w1_c01158{width:794.000000pt;}
.x0_c01158{left:0.000000pt;}
.x4_c01158{left:9.112000pt;}
.x6_c01158{left:28.306667pt;}
.x3_c01158{left:113.472000pt;}
.xb_c01158{left:126.432000pt;}
.xc_c01158{left:129.792000pt;}
.x1_c01158{left:151.066667pt;}
.x9_c01158{left:187.206667pt;}
.xa_c01158{left:204.986667pt;}
.x7_c01158{left:278.926667pt;}
.x8_c01158{left:296.706667pt;}
.x5_c01158{left:472.266667pt;}
.x2_c01158{left:658.213333pt;}
}





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

.ir_c01159:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01159;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01159;src:url('chunks/assets/font_fd6a9386fcf0e56c86c3c3d1.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01159;src:url('chunks/assets/font_59a9863247bc18a6980db2e0.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01159;src:url('chunks/assets/font_9a5b7414c9762e14fa90594a.woff2')format("woff");}.ff4_c01159{font-family:ff4_c01159;line-height:1.104492;font-style:normal;font-weight: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_c01159;src:url('chunks/assets/font_a66b8ff7f43364ed9192e017.woff2')format("woff");}.ff5_c01159{font-family:ff5_c01159;line-height:1.575000;font-style:normal;font-weight: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_c01159;src:url('chunks/assets/font_a9bb453654cc136d6b9e7f6d.woff2')format("woff");}.ff6_c01159{font-family:ff6_c01159;line-height:1.211914;font-style:normal;font-weight: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_c01159;src:url('chunks/assets/font_f4cf254c02645175e67a7c9a.woff2')format("woff");}.ff7_c01159{font-family:ff7_c01159;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.ls6_c01159{letter-spacing:-0.720000px;}
.ls3_c01159{letter-spacing:-0.576000px;}
.ls8_c01159{letter-spacing:-0.247800px;}
.ls4_c01159{letter-spacing:-0.181200px;}
.ls2_c01159{letter-spacing:0.000000px;}
.ls5_c01159{letter-spacing:0.144000px;}
.ls7_c01159{letter-spacing:0.150000px;}
.ls1_c01159{letter-spacing:0.152400px;}
.ls9_c01159{letter-spacing:0.259800px;}
.ls0_c01159{letter-spacing:1251.606720px;}
.sc__c01159{text-shadow:none;}
.sc0_c01159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01159{-webkit-text-stroke:0px transparent;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01159{word-spacing:-21.187920px;}
.ws0_c01159{word-spacing:-19.440000px;}
.ws2_c01159{word-spacing:-16.873080px;}
.ws3_c01159{word-spacing:0.000000px;}
._d_c01159{margin-left:-5.786194px;}
._c_c01159{margin-left:-4.320000px;}
._10_c01159{margin-left:-2.520000px;}
._0_c01159{margin-left:-1.258891px;}
._5_c01159{width:1.080000px;}
._2_c01159{width:2.110891px;}
._7_c01159{width:3.254242px;}
._4_c01159{width:5.256000px;}
._3_c01159{width:6.264000px;}
._b_c01159{width:7.977782px;}
._f_c01159{width:9.576000px;}
._1_c01159{width:11.304000px;}
._e_c01159{width:13.536000px;}
._a_c01159{width:14.616000px;}
._9_c01159{width:15.624000px;}
._8_c01159{width:23.184000px;}
._6_c01159{width:24.336000px;}
.fc0_c01159{color:rgb(0,0,0);}
.fs4_c01159{font-size:38.880000px;}
.fs2_c01159{font-size:48.240000px;}
.fs3_c01159{font-size:59.760000px;}
.fs0_c01159{font-size:66.240000px;}
.fs1_c01159{font-size:72.000000px;}
.y0_c01159{bottom:0.000000px;}
.y30_c01159{bottom:8.280000px;}
.y2f_c01159{bottom:25.740000px;}
.y2d_c01159{bottom:26.460000px;}
.y3_c01159{bottom:57.636000px;}
.y2_c01159{bottom:77.796000px;}
.y2b_c01159{bottom:109.296000px;}
.y2a_c01159{bottom:114.516000px;}
.y29_c01159{bottom:127.476000px;}
.y28_c01159{bottom:145.656000px;}
.y27_c01159{bottom:164.010000px;}
.y26_c01159{bottom:169.230000px;}
.y25_c01159{bottom:183.810000px;}
.y24_c01159{bottom:206.670000px;}
.y23_c01159{bottom:228.990000px;}
.y22_c01159{bottom:251.310000px;}
.y20_c01159{bottom:273.630000px;}
.y21_c01159{bottom:279.570000px;}
.y1f_c01159{bottom:295.995000px;}
.y1e_c01159{bottom:318.315000px;}
.y1d_c01159{bottom:340.635000px;}
.y1c_c01159{bottom:362.955000px;}
.y1b_c01159{bottom:385.275000px;}
.y1a_c01159{bottom:407.775000px;}
.y19_c01159{bottom:430.095000px;}
.y18_c01159{bottom:452.415000px;}
.y17_c01159{bottom:474.735000px;}
.y16_c01159{bottom:497.055000px;}
.y15_c01159{bottom:519.375000px;}
.y14_c01159{bottom:541.695000px;}
.y13_c01159{bottom:564.015000px;}
.y12_c01159{bottom:597.525000px;}
.y2e_c01159{bottom:612.465000px;}
.y2c_c01159{bottom:613.185000px;}
.y11_c01159{bottom:658.725000px;}
.y10_c01159{bottom:882.330000px;}
.yf_c01159{bottom:904.650000px;}
.ye_c01159{bottom:926.790000px;}
.yd_c01159{bottom:949.110000px;}
.yc_c01159{bottom:971.430000px;}
.yb_c01159{bottom:993.750000px;}
.ya_c01159{bottom:1016.070000px;}
.y9_c01159{bottom:1038.570000px;}
.y8_c01159{bottom:1060.890000px;}
.y7_c01159{bottom:1083.210000px;}
.y5_c01159{bottom:1117.590000px;}
.y6_c01159{bottom:1123.530000px;}
.y4_c01159{bottom:1139.940000px;}
.y1_c01159{bottom:1194.660000px;}
.hc_c01159{height:39.420000px;}
.ha_c01159{height:40.140000px;}
.h8_c01159{height:41.484960px;}
.h6_c01159{height:43.246406px;}
.h2_c01159{height:48.062812px;}
.h3_c01159{height:50.229844px;}
.hb_c01159{height:53.428008px;}
.h7_c01159{height:53.573906px;}
.h9_c01159{height:63.763920px;}
.h4_c01159{height:64.546875px;}
.h5_c01159{height:1262.865000px;}
.h0_c01159{height:1262.880000px;}
.h1_c01159{height:1263.000000px;}
.w4_c01159{width:291.810000px;}
.w3_c01159{width:308.595000px;}
.w2_c01159{width:892.957500px;}
.w0_c01159{width:892.980000px;}
.w1_c01159{width:893.250000px;}
.x0_c01159{left:0.000000px;}
.x1_c01159{left:127.656000px;}
.x8_c01159{left:146.016000px;}
.x7_c01159{left:343.695000px;}
.x4_c01159{left:448.095000px;}
.x9_c01159{left:452.235000px;}
.x5_c01159{left:465.892500px;}
.x6_c01159{left:485.895000px;}
.x2_c01159{left:685.162500px;}
.x3_c01159{left:705.210000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls6_c01159{letter-spacing:-0.640000pt;}
.ls3_c01159{letter-spacing:-0.512000pt;}
.ls8_c01159{letter-spacing:-0.220267pt;}
.ls4_c01159{letter-spacing:-0.161067pt;}
.ls2_c01159{letter-spacing:0.000000pt;}
.ls5_c01159{letter-spacing:0.128000pt;}
.ls7_c01159{letter-spacing:0.133333pt;}
.ls1_c01159{letter-spacing:0.135467pt;}
.ls9_c01159{letter-spacing:0.230933pt;}
.ls0_c01159{letter-spacing:1112.539307pt;}
.ws1_c01159{word-spacing:-18.833707pt;}
.ws0_c01159{word-spacing:-17.280000pt;}
.ws2_c01159{word-spacing:-14.998293pt;}
.ws3_c01159{word-spacing:0.000000pt;}
._d_c01159{margin-left:-5.143283pt;}
._c_c01159{margin-left:-3.840000pt;}
._10_c01159{margin-left:-2.240000pt;}
._0_c01159{margin-left:-1.119014pt;}
._5_c01159{width:0.960000pt;}
._2_c01159{width:1.876348pt;}
._7_c01159{width:2.892659pt;}
._4_c01159{width:4.672000pt;}
._3_c01159{width:5.568000pt;}
._b_c01159{width:7.091362pt;}
._f_c01159{width:8.512000pt;}
._1_c01159{width:10.048000pt;}
._e_c01159{width:12.032000pt;}
._a_c01159{width:12.992000pt;}
._9_c01159{width:13.888000pt;}
._8_c01159{width:20.608000pt;}
._6_c01159{width:21.632000pt;}
.fs4_c01159{font-size:34.560000pt;}
.fs2_c01159{font-size:42.880000pt;}
.fs3_c01159{font-size:53.120000pt;}
.fs0_c01159{font-size:58.880000pt;}
.fs1_c01159{font-size:64.000000pt;}
.y0_c01159{bottom:0.000000pt;}
.y30_c01159{bottom:7.360000pt;}
.y2f_c01159{bottom:22.880000pt;}
.y2d_c01159{bottom:23.520000pt;}
.y3_c01159{bottom:51.232000pt;}
.y2_c01159{bottom:69.152000pt;}
.y2b_c01159{bottom:97.152000pt;}
.y2a_c01159{bottom:101.792000pt;}
.y29_c01159{bottom:113.312000pt;}
.y28_c01159{bottom:129.472000pt;}
.y27_c01159{bottom:145.786667pt;}
.y26_c01159{bottom:150.426667pt;}
.y25_c01159{bottom:163.386667pt;}
.y24_c01159{bottom:183.706667pt;}
.y23_c01159{bottom:203.546667pt;}
.y22_c01159{bottom:223.386667pt;}
.y20_c01159{bottom:243.226667pt;}
.y21_c01159{bottom:248.506667pt;}
.y1f_c01159{bottom:263.106667pt;}
.y1e_c01159{bottom:282.946667pt;}
.y1d_c01159{bottom:302.786667pt;}
.y1c_c01159{bottom:322.626667pt;}
.y1b_c01159{bottom:342.466667pt;}
.y1a_c01159{bottom:362.466667pt;}
.y19_c01159{bottom:382.306667pt;}
.y18_c01159{bottom:402.146667pt;}
.y17_c01159{bottom:421.986667pt;}
.y16_c01159{bottom:441.826667pt;}
.y15_c01159{bottom:461.666667pt;}
.y14_c01159{bottom:481.506667pt;}
.y13_c01159{bottom:501.346667pt;}
.y12_c01159{bottom:531.133333pt;}
.y2e_c01159{bottom:544.413333pt;}
.y2c_c01159{bottom:545.053333pt;}
.y11_c01159{bottom:585.533333pt;}
.y10_c01159{bottom:784.293333pt;}
.yf_c01159{bottom:804.133333pt;}
.ye_c01159{bottom:823.813333pt;}
.yd_c01159{bottom:843.653333pt;}
.yc_c01159{bottom:863.493333pt;}
.yb_c01159{bottom:883.333333pt;}
.ya_c01159{bottom:903.173333pt;}
.y9_c01159{bottom:923.173333pt;}
.y8_c01159{bottom:943.013333pt;}
.y7_c01159{bottom:962.853333pt;}
.y5_c01159{bottom:993.413333pt;}
.y6_c01159{bottom:998.693333pt;}
.y4_c01159{bottom:1013.280000pt;}
.y1_c01159{bottom:1061.920000pt;}
.hc_c01159{height:35.040000pt;}
.ha_c01159{height:35.680000pt;}
.h8_c01159{height:36.875520pt;}
.h6_c01159{height:38.441250pt;}
.h2_c01159{height:42.722500pt;}
.h3_c01159{height:44.648750pt;}
.hb_c01159{height:47.491563pt;}
.h7_c01159{height:47.621250pt;}
.h9_c01159{height:56.679040pt;}
.h4_c01159{height:57.375000pt;}
.h5_c01159{height:1122.546667pt;}
.h0_c01159{height:1122.560000pt;}
.h1_c01159{height:1122.666667pt;}
.w4_c01159{width:259.386667pt;}
.w3_c01159{width:274.306667pt;}
.w2_c01159{width:793.740000pt;}
.w0_c01159{width:793.760000pt;}
.w1_c01159{width:794.000000pt;}
.x0_c01159{left:0.000000pt;}
.x1_c01159{left:113.472000pt;}
.x8_c01159{left:129.792000pt;}
.x7_c01159{left:305.506667pt;}
.x4_c01159{left:398.306667pt;}
.x9_c01159{left:401.986667pt;}
.x5_c01159{left:414.126667pt;}
.x6_c01159{left:431.906667pt;}
.x2_c01159{left:609.033333pt;}
.x3_c01159{left:626.853333pt;}
}





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

.ir_c01160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01160;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01160;src:url('chunks/assets/font_cca8b6401019d59075bf605b.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01160;src:url('chunks/assets/font_8708f1508212140cb14a5e3b.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01160;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01160{font-family:ff4_c01160;line-height:1.113281;font-style:normal;font-weight: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_c01160;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff5_c01160{font-family:ff5_c01160;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:ff6_c01160;src:url('chunks/assets/font_4c9c9849c0e6171012645a7f.woff2')format("woff");}.ff6_c01160{font-family:ff6_c01160;line-height:1.575000;font-style:normal;font-weight: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_c01160;src:url('chunks/assets/font_7e4e718f5401c199937f95e7.woff2')format("woff");}.ff7_c01160{font-family:ff7_c01160;line-height:1.024902;font-style:normal;font-weight: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_c01160;src:url('chunks/assets/font_491b38a757c2b5d346fa6d34.woff2')format("woff");}.ff8_c01160{font-family:ff8_c01160;line-height:1.211914;font-style:normal;font-weight: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_c01160;src:url('chunks/assets/font_830984e0a6cba39726d7996b.woff2')format("woff");}.ff9_c01160{font-family:ff9_c01160;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01160{vertical-align:0.000000px;}
.ls6_c01160{letter-spacing:-0.272400px;}
.ls3_c01160{letter-spacing:-0.181200px;}
.ls2_c01160{letter-spacing:0.000000px;}
.ls4_c01160{letter-spacing:0.144000px;}
.ls5_c01160{letter-spacing:0.150000px;}
.ls0_c01160{letter-spacing:0.174240px;}
.ls1_c01160{letter-spacing:0.796320px;}
.sc__c01160{text-shadow:none;}
.sc0_c01160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01160{-webkit-text-stroke:0px transparent;}
.sc0_c01160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01160{word-spacing:0.000000px;}
._13_c01160{margin-left:-5.400000px;}
._3_c01160{margin-left:-4.104000px;}
._2_c01160{margin-left:-3.096000px;}
._0_c01160{margin-left:-1.390841px;}
._1_c01160{width:1.367061px;}
._9_c01160{width:3.024000px;}
._11_c01160{width:4.104000px;}
._14_c01160{width:5.760000px;}
._c_c01160{width:8.708524px;}
._b_c01160{width:10.152000px;}
._a_c01160{width:12.024000px;}
._e_c01160{width:13.824000px;}
._7_c01160{width:22.029659px;}
._8_c01160{width:23.184000px;}
._d_c01160{width:24.743560px;}
._f_c01160{width:25.920000px;}
._10_c01160{width:27.456440px;}
._5_c01160{width:31.342841px;}
._4_c01160{width:32.904000px;}
._6_c01160{width:34.525135px;}
._15_c01160{width:38.376000px;}
._12_c01160{width:49.536000px;}
.fc0_c01160{color:rgb(0,0,0);}
.fs4_c01160{font-size:38.880000px;}
.fs3_c01160{font-size:48.240000px;}
.fs5_c01160{font-size:59.760000px;}
.fs0_c01160{font-size:66.240000px;}
.fs1_c01160{font-size:72.000000px;}
.fs2_c01160{font-size:84.240000px;}
.y0_c01160{bottom:0.000000px;}
.y2a_c01160{bottom:6.495000px;}
.y3_c01160{bottom:57.636000px;}
.y2_c01160{bottom:77.796000px;}
.y28_c01160{bottom:110.196000px;}
.y27_c01160{bottom:115.416000px;}
.y26_c01160{bottom:129.996000px;}
.y29_c01160{bottom:319.200000px;}
.y25_c01160{bottom:399.675000px;}
.y24_c01160{bottom:421.815000px;}
.y23_c01160{bottom:444.135000px;}
.y22_c01160{bottom:466.455000px;}
.y21_c01160{bottom:488.775000px;}
.y20_c01160{bottom:511.095000px;}
.y1f_c01160{bottom:533.415000px;}
.y1e_c01160{bottom:555.735000px;}
.y1d_c01160{bottom:578.085000px;}
.y1c_c01160{bottom:600.585000px;}
.y1b_c01160{bottom:622.905000px;}
.y1a_c01160{bottom:645.225000px;}
.y19_c01160{bottom:667.545000px;}
.y18_c01160{bottom:689.865000px;}
.y17_c01160{bottom:712.185000px;}
.y16_c01160{bottom:734.505000px;}
.y15_c01160{bottom:756.825000px;}
.y14_c01160{bottom:779.145000px;}
.y12_c01160{bottom:801.465000px;}
.y13_c01160{bottom:807.405000px;}
.y11_c01160{bottom:823.965000px;}
.y10_c01160{bottom:846.285000px;}
.yf_c01160{bottom:868.650000px;}
.ye_c01160{bottom:890.070000px;}
.yd_c01160{bottom:912.210000px;}
.yc_c01160{bottom:949.290000px;}
.yb_c01160{bottom:983.670000px;}
.ya_c01160{bottom:1005.810000px;}
.y9_c01160{bottom:1028.130000px;}
.y8_c01160{bottom:1050.450000px;}
.y7_c01160{bottom:1072.770000px;}
.y6_c01160{bottom:1095.090000px;}
.y5_c01160{bottom:1117.410000px;}
.y4_c01160{bottom:1139.940000px;}
.y1_c01160{bottom:1194.660000px;}
.hb_c01160{height:20.340000px;}
.h9_c01160{height:29.482734px;}
.h8_c01160{height:43.246406px;}
.h2_c01160{height:48.062812px;}
.h3_c01160{height:50.229844px;}
.hc_c01160{height:53.428008px;}
.ha_c01160{height:63.763920px;}
.h4_c01160{height:64.546875px;}
.h5_c01160{height:65.003906px;}
.h6_c01160{height:87.859687px;}
.h7_c01160{height:1262.865000px;}
.h0_c01160{height:1262.880000px;}
.h1_c01160{height:1263.000000px;}
.w3_c01160{width:371.775000px;}
.w2_c01160{width:892.957500px;}
.w0_c01160{width:892.980000px;}
.w1_c01160{width:893.250000px;}
.x0_c01160{left:0.000000px;}
.x3_c01160{left:127.656000px;}
.x7_c01160{left:142.236000px;}
.x1_c01160{left:169.950000px;}
.x6_c01160{left:343.695000px;}
.x8_c01160{left:403.275000px;}
.x4_c01160{left:446.272500px;}
.x5_c01160{left:466.275000px;}
.x2_c01160{left:740.490000px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls6_c01160{letter-spacing:-0.242133pt;}
.ls3_c01160{letter-spacing:-0.161067pt;}
.ls2_c01160{letter-spacing:0.000000pt;}
.ls4_c01160{letter-spacing:0.128000pt;}
.ls5_c01160{letter-spacing:0.133333pt;}
.ls0_c01160{letter-spacing:0.154880pt;}
.ls1_c01160{letter-spacing:0.707840pt;}
.ws0_c01160{word-spacing:0.000000pt;}
._13_c01160{margin-left:-4.800000pt;}
._3_c01160{margin-left:-3.648000pt;}
._2_c01160{margin-left:-2.752000pt;}
._0_c01160{margin-left:-1.236303pt;}
._1_c01160{width:1.215165pt;}
._9_c01160{width:2.688000pt;}
._11_c01160{width:3.648000pt;}
._14_c01160{width:5.120000pt;}
._c_c01160{width:7.740910pt;}
._b_c01160{width:9.024000pt;}
._a_c01160{width:10.688000pt;}
._e_c01160{width:12.288000pt;}
._7_c01160{width:19.581919pt;}
._8_c01160{width:20.608000pt;}
._d_c01160{width:21.994276pt;}
._f_c01160{width:23.040000pt;}
._10_c01160{width:24.405724pt;}
._5_c01160{width:27.860303pt;}
._4_c01160{width:29.248000pt;}
._6_c01160{width:30.689009pt;}
._15_c01160{width:34.112000pt;}
._12_c01160{width:44.032000pt;}
.fs4_c01160{font-size:34.560000pt;}
.fs3_c01160{font-size:42.880000pt;}
.fs5_c01160{font-size:53.120000pt;}
.fs0_c01160{font-size:58.880000pt;}
.fs1_c01160{font-size:64.000000pt;}
.fs2_c01160{font-size:74.880000pt;}
.y0_c01160{bottom:0.000000pt;}
.y2a_c01160{bottom:5.773333pt;}
.y3_c01160{bottom:51.232000pt;}
.y2_c01160{bottom:69.152000pt;}
.y28_c01160{bottom:97.952000pt;}
.y27_c01160{bottom:102.592000pt;}
.y26_c01160{bottom:115.552000pt;}
.y29_c01160{bottom:283.733333pt;}
.y25_c01160{bottom:355.266667pt;}
.y24_c01160{bottom:374.946667pt;}
.y23_c01160{bottom:394.786667pt;}
.y22_c01160{bottom:414.626667pt;}
.y21_c01160{bottom:434.466667pt;}
.y20_c01160{bottom:454.306667pt;}
.y1f_c01160{bottom:474.146667pt;}
.y1e_c01160{bottom:493.986667pt;}
.y1d_c01160{bottom:513.853333pt;}
.y1c_c01160{bottom:533.853333pt;}
.y1b_c01160{bottom:553.693333pt;}
.y1a_c01160{bottom:573.533333pt;}
.y19_c01160{bottom:593.373333pt;}
.y18_c01160{bottom:613.213333pt;}
.y17_c01160{bottom:633.053333pt;}
.y16_c01160{bottom:652.893333pt;}
.y15_c01160{bottom:672.733333pt;}
.y14_c01160{bottom:692.573333pt;}
.y12_c01160{bottom:712.413333pt;}
.y13_c01160{bottom:717.693333pt;}
.y11_c01160{bottom:732.413333pt;}
.y10_c01160{bottom:752.253333pt;}
.yf_c01160{bottom:772.133333pt;}
.ye_c01160{bottom:791.173333pt;}
.yd_c01160{bottom:810.853333pt;}
.yc_c01160{bottom:843.813333pt;}
.yb_c01160{bottom:874.373333pt;}
.ya_c01160{bottom:894.053333pt;}
.y9_c01160{bottom:913.893333pt;}
.y8_c01160{bottom:933.733333pt;}
.y7_c01160{bottom:953.573333pt;}
.y6_c01160{bottom:973.413333pt;}
.y5_c01160{bottom:993.253333pt;}
.y4_c01160{bottom:1013.280000pt;}
.y1_c01160{bottom:1061.920000pt;}
.hb_c01160{height:18.080000pt;}
.h9_c01160{height:26.206875pt;}
.h8_c01160{height:38.441250pt;}
.h2_c01160{height:42.722500pt;}
.h3_c01160{height:44.648750pt;}
.hc_c01160{height:47.491563pt;}
.ha_c01160{height:56.679040pt;}
.h4_c01160{height:57.375000pt;}
.h5_c01160{height:57.781250pt;}
.h6_c01160{height:78.097500pt;}
.h7_c01160{height:1122.546667pt;}
.h0_c01160{height:1122.560000pt;}
.h1_c01160{height:1122.666667pt;}
.w3_c01160{width:330.466667pt;}
.w2_c01160{width:793.740000pt;}
.w0_c01160{width:793.760000pt;}
.w1_c01160{width:794.000000pt;}
.x0_c01160{left:0.000000pt;}
.x3_c01160{left:113.472000pt;}
.x7_c01160{left:126.432000pt;}
.x1_c01160{left:151.066667pt;}
.x6_c01160{left:305.506667pt;}
.x8_c01160{left:358.466667pt;}
.x4_c01160{left:396.686667pt;}
.x5_c01160{left:414.466667pt;}
.x2_c01160{left:658.213333pt;}
}





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

.ir_c01161:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01161;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01161;src:url('chunks/assets/font_f11ad47134174c8b62bba642.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01161;src:url('chunks/assets/font_67ef2ede330867aa15e4b4d1.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01161;src:url('chunks/assets/font_583f382dfac12425d36b9cce.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01161{vertical-align:0.000000px;}
.ls0_c01161{letter-spacing:0.000000px;}
.sc__c01161{text-shadow:none;}
.sc0_c01161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01161{-webkit-text-stroke:0px transparent;}
.sc0_c01161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01161{word-spacing:0.000000px;}
._9_c01161{margin-left:-5.397782px;}
._a_c01161{margin-left:-4.320000px;}
._3_c01161{margin-left:-3.312000px;}
._5_c01161{margin-left:-2.306218px;}
._0_c01161{margin-left:-1.258891px;}
._2_c01161{width:1.008000px;}
._c_c01161{width:2.376000px;}
._b_c01161{width:3.528000px;}
._12_c01161{width:4.658170px;}
._11_c01161{width:5.770915px;}
._7_c01161{width:6.984000px;}
._8_c01161{width:7.992000px;}
._6_c01161{width:9.178891px;}
._1_c01161{width:10.584000px;}
._4_c01161{width:12.456000px;}
._10_c01161{width:13.610218px;}
._f_c01161{width:14.688000px;}
._e_c01161{width:29.966242px;}
._d_c01161{width:31.320000px;}
.fc0_c01161{color:rgb(0,0,0);}
.fs2_c01161{font-size:59.760000px;}
.fs0_c01161{font-size:66.240000px;}
.fs1_c01161{font-size:72.000000px;}
.y0_c01161{bottom:0.000000px;}
.y23_c01161{bottom:6.285000px;}
.y21_c01161{bottom:6.480000px;}
.y3_c01161{bottom:57.636000px;}
.y2_c01161{bottom:77.796000px;}
.y1f_c01161{bottom:142.596000px;}
.y22_c01161{bottom:146.205000px;}
.y1e_c01161{bottom:171.570000px;}
.y1d_c01161{bottom:528.915000px;}
.y1c_c01161{bottom:551.055000px;}
.y1b_c01161{bottom:573.405000px;}
.y1a_c01161{bottom:595.905000px;}
.y19_c01161{bottom:618.225000px;}
.y18_c01161{bottom:640.545000px;}
.y17_c01161{bottom:662.865000px;}
.y16_c01161{bottom:685.185000px;}
.y15_c01161{bottom:707.505000px;}
.y14_c01161{bottom:729.825000px;}
.y13_c01161{bottom:752.145000px;}
.y12_c01161{bottom:785.805000px;}
.y20_c01161{bottom:794.085000px;}
.y11_c01161{bottom:816.405000px;}
.y10_c01161{bottom:848.130000px;}
.yf_c01161{bottom:882.330000px;}
.ye_c01161{bottom:916.710000px;}
.yd_c01161{bottom:938.850000px;}
.yc_c01161{bottom:961.170000px;}
.yb_c01161{bottom:983.490000px;}
.ya_c01161{bottom:1005.810000px;}
.y9_c01161{bottom:1028.130000px;}
.y8_c01161{bottom:1050.450000px;}
.y7_c01161{bottom:1072.770000px;}
.y6_c01161{bottom:1095.090000px;}
.y5_c01161{bottom:1117.410000px;}
.y4_c01161{bottom:1139.940000px;}
.y1_c01161{bottom:1194.660000px;}
.h8_c01161{height:20.160000px;}
.h7_c01161{height:20.340000px;}
.h2_c01161{height:48.062812px;}
.h3_c01161{height:50.229844px;}
.h6_c01161{height:53.428008px;}
.h5_c01161{height:64.371094px;}
.h4_c01161{height:64.546875px;}
.h0_c01161{height:1262.880000px;}
.h1_c01161{height:1263.000000px;}
.w2_c01161{width:371.775000px;}
.w3_c01161{width:371.955000px;}
.w0_c01161{width:892.980000px;}
.w1_c01161{width:893.250000px;}
.x0_c01161{left:0.000000px;}
.x1_c01161{left:127.656000px;}
.x5_c01161{left:192.825000px;}
.x2_c01161{left:363.855000px;}
.x3_c01161{left:510.225000px;}
.x4_c01161{left:700.170000px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.ls0_c01161{letter-spacing:0.000000pt;}
.ws0_c01161{word-spacing:0.000000pt;}
._9_c01161{margin-left:-4.798029pt;}
._a_c01161{margin-left:-3.840000pt;}
._3_c01161{margin-left:-2.944000pt;}
._5_c01161{margin-left:-2.049971pt;}
._0_c01161{margin-left:-1.119014pt;}
._2_c01161{width:0.896000pt;}
._c_c01161{width:2.112000pt;}
._b_c01161{width:3.136000pt;}
._12_c01161{width:4.140595pt;}
._11_c01161{width:5.129702pt;}
._7_c01161{width:6.208000pt;}
._8_c01161{width:7.104000pt;}
._6_c01161{width:8.159014pt;}
._1_c01161{width:9.408000pt;}
._4_c01161{width:11.072000pt;}
._10_c01161{width:12.097971pt;}
._f_c01161{width:13.056000pt;}
._e_c01161{width:26.636659pt;}
._d_c01161{width:27.840000pt;}
.fs2_c01161{font-size:53.120000pt;}
.fs0_c01161{font-size:58.880000pt;}
.fs1_c01161{font-size:64.000000pt;}
.y0_c01161{bottom:0.000000pt;}
.y23_c01161{bottom:5.586667pt;}
.y21_c01161{bottom:5.760000pt;}
.y3_c01161{bottom:51.232000pt;}
.y2_c01161{bottom:69.152000pt;}
.y1f_c01161{bottom:126.752000pt;}
.y22_c01161{bottom:129.960000pt;}
.y1e_c01161{bottom:152.506667pt;}
.y1d_c01161{bottom:470.146667pt;}
.y1c_c01161{bottom:489.826667pt;}
.y1b_c01161{bottom:509.693333pt;}
.y1a_c01161{bottom:529.693333pt;}
.y19_c01161{bottom:549.533333pt;}
.y18_c01161{bottom:569.373333pt;}
.y17_c01161{bottom:589.213333pt;}
.y16_c01161{bottom:609.053333pt;}
.y15_c01161{bottom:628.893333pt;}
.y14_c01161{bottom:648.733333pt;}
.y13_c01161{bottom:668.573333pt;}
.y12_c01161{bottom:698.493333pt;}
.y20_c01161{bottom:705.853333pt;}
.y11_c01161{bottom:725.693333pt;}
.y10_c01161{bottom:753.893333pt;}
.yf_c01161{bottom:784.293333pt;}
.ye_c01161{bottom:814.853333pt;}
.yd_c01161{bottom:834.533333pt;}
.yc_c01161{bottom:854.373333pt;}
.yb_c01161{bottom:874.213333pt;}
.ya_c01161{bottom:894.053333pt;}
.y9_c01161{bottom:913.893333pt;}
.y8_c01161{bottom:933.733333pt;}
.y7_c01161{bottom:953.573333pt;}
.y6_c01161{bottom:973.413333pt;}
.y5_c01161{bottom:993.253333pt;}
.y4_c01161{bottom:1013.280000pt;}
.y1_c01161{bottom:1061.920000pt;}
.h8_c01161{height:17.920000pt;}
.h7_c01161{height:18.080000pt;}
.h2_c01161{height:42.722500pt;}
.h3_c01161{height:44.648750pt;}
.h6_c01161{height:47.491563pt;}
.h5_c01161{height:57.218750pt;}
.h4_c01161{height:57.375000pt;}
.h0_c01161{height:1122.560000pt;}
.h1_c01161{height:1122.666667pt;}
.w2_c01161{width:330.466667pt;}
.w3_c01161{width:330.626667pt;}
.w0_c01161{width:793.760000pt;}
.w1_c01161{width:794.000000pt;}
.x0_c01161{left:0.000000pt;}
.x1_c01161{left:113.472000pt;}
.x5_c01161{left:171.400000pt;}
.x2_c01161{left:323.426667pt;}
.x3_c01161{left:453.533333pt;}
.x4_c01161{left:622.373333pt;}
}





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

.ir_c01162:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01162;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01162;src:url('chunks/assets/font_e14d538bccc8234658510173.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01162;src:url('chunks/assets/font_531f136252000651956ce2e6.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01162;src:url('chunks/assets/font_dbf88ced0194f616bee03abe.woff2')format("woff");}.ff4_c01162{font-family:ff4_c01162;line-height:1.104492;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01162{font-family:ff5_c01162;line-height:1.113281;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff6_c01162{font-family:ff6_c01162;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;}
.m0_c01162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01162{vertical-align:0.000000px;}
.ls1_c01162{letter-spacing:-0.053400px;}
.ls0_c01162{letter-spacing:0.000000px;}
.sc__c01162{text-shadow:none;}
.sc0_c01162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01162{-webkit-text-stroke:0px transparent;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01162{word-spacing:0.000000px;}
._5_c01162{margin-left:-4.896000px;}
._4_c01162{margin-left:-3.024000px;}
._0_c01162{margin-left:-1.390841px;}
._1_c01162{width:1.367061px;}
._c_c01162{width:2.538756px;}
._b_c01162{width:3.861683px;}
._3_c01162{width:5.112000px;}
._2_c01162{width:6.192000px;}
._9_c01162{width:10.989683px;}
._8_c01162{width:12.024000px;}
._a_c01162{width:14.616000px;}
._6_c01162{width:16.560000px;}
._7_c01162{width:17.580963px;}
._f_c01162{width:18.768024px;}
._e_c01162{width:21.571145px;}
._d_c01162{width:22.608000px;}
.fc0_c01162{color:rgb(0,0,0);}
.fs2_c01162{font-size:59.760000px;}
.fs0_c01162{font-size:66.240000px;}
.fs1_c01162{font-size:72.000000px;}
.y0_c01162{bottom:0.000000px;}
.y3_c01162{bottom:57.636000px;}
.y2_c01162{bottom:77.796000px;}
.y1f_c01162{bottom:125.496000px;}
.y1e_c01162{bottom:147.816000px;}
.y1d_c01162{bottom:170.130000px;}
.y1c_c01162{bottom:192.450000px;}
.y1b_c01162{bottom:214.770000px;}
.y1a_c01162{bottom:237.270000px;}
.y19_c01162{bottom:259.590000px;}
.y18_c01162{bottom:281.955000px;}
.y17_c01162{bottom:304.275000px;}
.y16_c01162{bottom:326.595000px;}
.y15_c01162{bottom:348.915000px;}
.y14_c01162{bottom:371.235000px;}
.y13_c01162{bottom:393.555000px;}
.y12_c01162{bottom:415.875000px;}
.y11_c01162{bottom:438.195000px;}
.y10_c01162{bottom:459.615000px;}
.yf_c01162{bottom:480.675000px;}
.ye_c01162{bottom:515.235000px;}
.yd_c01162{bottom:548.715000px;}
.yc_c01162{bottom:576.105000px;}
.yb_c01162{bottom:983.670000px;}
.ya_c01162{bottom:1005.810000px;}
.y9_c01162{bottom:1028.130000px;}
.y8_c01162{bottom:1050.450000px;}
.y7_c01162{bottom:1072.770000px;}
.y6_c01162{bottom:1095.090000px;}
.y5_c01162{bottom:1117.410000px;}
.y4_c01162{bottom:1139.940000px;}
.y1_c01162{bottom:1194.660000px;}
.h2_c01162{height:48.062812px;}
.h3_c01162{height:50.229844px;}
.h5_c01162{height:53.428008px;}
.h4_c01162{height:64.546875px;}
.h6_c01162{height:65.003906px;}
.h7_c01162{height:75.093750px;}
.h0_c01162{height:1262.880000px;}
.h1_c01162{height:1263.000000px;}
.w0_c01162{width:892.980000px;}
.w1_c01162{width:893.250000px;}
.x0_c01162{left:0.000000px;}
.x3_c01162{left:127.656000px;}
.x1_c01162{left:169.950000px;}
.x4_c01162{left:701.970000px;}
.x2_c01162{left:740.490000px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls1_c01162{letter-spacing:-0.047467pt;}
.ls0_c01162{letter-spacing:0.000000pt;}
.ws0_c01162{word-spacing:0.000000pt;}
._5_c01162{margin-left:-4.352000pt;}
._4_c01162{margin-left:-2.688000pt;}
._0_c01162{margin-left:-1.236303pt;}
._1_c01162{width:1.215165pt;}
._c_c01162{width:2.256672pt;}
._b_c01162{width:3.432607pt;}
._3_c01162{width:4.544000pt;}
._2_c01162{width:5.504000pt;}
._9_c01162{width:9.768607pt;}
._8_c01162{width:10.688000pt;}
._a_c01162{width:12.992000pt;}
._6_c01162{width:14.720000pt;}
._7_c01162{width:15.627523pt;}
._f_c01162{width:16.682688pt;}
._e_c01162{width:19.174351pt;}
._d_c01162{width:20.096000pt;}
.fs2_c01162{font-size:53.120000pt;}
.fs0_c01162{font-size:58.880000pt;}
.fs1_c01162{font-size:64.000000pt;}
.y0_c01162{bottom:0.000000pt;}
.y3_c01162{bottom:51.232000pt;}
.y2_c01162{bottom:69.152000pt;}
.y1f_c01162{bottom:111.552000pt;}
.y1e_c01162{bottom:131.392000pt;}
.y1d_c01162{bottom:151.226667pt;}
.y1c_c01162{bottom:171.066667pt;}
.y1b_c01162{bottom:190.906667pt;}
.y1a_c01162{bottom:210.906667pt;}
.y19_c01162{bottom:230.746667pt;}
.y18_c01162{bottom:250.626667pt;}
.y17_c01162{bottom:270.466667pt;}
.y16_c01162{bottom:290.306667pt;}
.y15_c01162{bottom:310.146667pt;}
.y14_c01162{bottom:329.986667pt;}
.y13_c01162{bottom:349.826667pt;}
.y12_c01162{bottom:369.666667pt;}
.y11_c01162{bottom:389.506667pt;}
.y10_c01162{bottom:408.546667pt;}
.yf_c01162{bottom:427.266667pt;}
.ye_c01162{bottom:457.986667pt;}
.yd_c01162{bottom:487.746667pt;}
.yc_c01162{bottom:512.093333pt;}
.yb_c01162{bottom:874.373333pt;}
.ya_c01162{bottom:894.053333pt;}
.y9_c01162{bottom:913.893333pt;}
.y8_c01162{bottom:933.733333pt;}
.y7_c01162{bottom:953.573333pt;}
.y6_c01162{bottom:973.413333pt;}
.y5_c01162{bottom:993.253333pt;}
.y4_c01162{bottom:1013.280000pt;}
.y1_c01162{bottom:1061.920000pt;}
.h2_c01162{height:42.722500pt;}
.h3_c01162{height:44.648750pt;}
.h5_c01162{height:47.491563pt;}
.h4_c01162{height:57.375000pt;}
.h6_c01162{height:57.781250pt;}
.h7_c01162{height:66.750000pt;}
.h0_c01162{height:1122.560000pt;}
.h1_c01162{height:1122.666667pt;}
.w0_c01162{width:793.760000pt;}
.w1_c01162{width:794.000000pt;}
.x0_c01162{left:0.000000pt;}
.x3_c01162{left:113.472000pt;}
.x1_c01162{left:151.066667pt;}
.x4_c01162{left:623.973333pt;}
.x2_c01162{left:658.213333pt;}
}





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

.ir_c01163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01163;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01163;src:url('chunks/assets/font_bc7f984a19cff02ec9ff4eb4.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01163;src:url('chunks/assets/font_7c08012ee8e040c35385ef08.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01163;src:url('chunks/assets/font_aa91ec2a21aba40217237955.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:1.575000;font-style:normal;font-weight: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_c01163;src:url('chunks/assets/font_95bfb3ad4c7af467d19d0f1a.woff2')format("woff");}.ff5_c01163{font-family:ff5_c01163;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01163{vertical-align:0.000000px;}
.ls3_c01163{letter-spacing:-0.247800px;}
.ls1_c01163{letter-spacing:-0.181200px;}
.ls4_c01163{letter-spacing:-0.152400px;}
.ls0_c01163{letter-spacing:0.000000px;}
.ls2_c01163{letter-spacing:0.150000px;}
.sc__c01163{text-shadow:none;}
.sc0_c01163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01163{-webkit-text-stroke:0px transparent;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01163{word-spacing:0.000000px;}
._a_c01163{margin-left:-5.172000px;}
._9_c01163{margin-left:-3.744000px;}
._5_c01163{margin-left:-2.703326px;}
._0_c01163{margin-left:-1.258891px;}
._4_c01163{width:1.020024px;}
._6_c01163{width:3.168000px;}
._3_c01163{width:4.464000px;}
._1_c01163{width:6.336000px;}
._2_c01163{width:7.344000px;}
._8_c01163{width:8.890891px;}
._7_c01163{width:10.368000px;}
._b_c01163{width:12.240000px;}
._f_c01163{width:13.248000px;}
._c_c01163{width:15.192000px;}
._d_c01163{width:16.259976px;}
._12_c01163{width:17.496000px;}
._e_c01163{width:18.936000px;}
._11_c01163{width:29.808000px;}
._10_c01163{width:31.104000px;}
.fc0_c01163{color:rgb(0,0,0);}
.fs3_c01163{font-size:38.880000px;}
.fs2_c01163{font-size:48.240000px;}
.fs4_c01163{font-size:59.760000px;}
.fs0_c01163{font-size:66.240000px;}
.fs1_c01163{font-size:72.000000px;}
.y0_c01163{bottom:0.000000px;}
.y3_c01163{bottom:57.636000px;}
.y2_c01163{bottom:77.796000px;}
.y2d_c01163{bottom:109.296000px;}
.y2c_c01163{bottom:127.476000px;}
.y2b_c01163{bottom:132.696000px;}
.y2a_c01163{bottom:147.276000px;}
.y29_c01163{bottom:215.850000px;}
.y28_c01163{bottom:250.050000px;}
.y27_c01163{bottom:284.475000px;}
.y26_c01163{bottom:318.855000px;}
.y25_c01163{bottom:353.235000px;}
.y24_c01163{bottom:387.435000px;}
.y23_c01163{bottom:421.815000px;}
.y22_c01163{bottom:456.195000px;}
.y21_c01163{bottom:490.575000px;}
.y20_c01163{bottom:512.715000px;}
.y1f_c01163{bottom:535.035000px;}
.y1e_c01163{bottom:557.355000px;}
.y1d_c01163{bottom:579.705000px;}
.y1c_c01163{bottom:602.025000px;}
.y1b_c01163{bottom:624.345000px;}
.y1a_c01163{bottom:658.905000px;}
.y19_c01163{bottom:681.045000px;}
.y18_c01163{bottom:703.365000px;}
.y17_c01163{bottom:725.685000px;}
.y16_c01163{bottom:748.005000px;}
.y15_c01163{bottom:770.325000px;}
.y14_c01163{bottom:792.645000px;}
.y13_c01163{bottom:827.205000px;}
.y12_c01163{bottom:849.390000px;}
.y11_c01163{bottom:871.710000px;}
.y10_c01163{bottom:894.210000px;}
.yf_c01163{bottom:916.530000px;}
.ye_c01163{bottom:938.850000px;}
.yc_c01163{bottom:961.170000px;}
.yd_c01163{bottom:967.110000px;}
.yb_c01163{bottom:983.490000px;}
.ya_c01163{bottom:1005.810000px;}
.y9_c01163{bottom:1028.130000px;}
.y8_c01163{bottom:1050.450000px;}
.y7_c01163{bottom:1072.770000px;}
.y6_c01163{bottom:1095.090000px;}
.y5_c01163{bottom:1117.410000px;}
.y4_c01163{bottom:1139.940000px;}
.y1_c01163{bottom:1194.660000px;}
.h7_c01163{height:41.484960px;}
.h6_c01163{height:43.246406px;}
.h2_c01163{height:48.062812px;}
.h3_c01163{height:50.229844px;}
.h8_c01163{height:63.763920px;}
.h4_c01163{height:64.546875px;}
.h5_c01163{height:1262.865000px;}
.h0_c01163{height:1262.880000px;}
.h1_c01163{height:1263.000000px;}
.w2_c01163{width:892.957500px;}
.w0_c01163{width:892.980000px;}
.w1_c01163{width:893.250000px;}
.x0_c01163{left:0.000000px;}
.x1_c01163{left:127.656000px;}
.x5_c01163{left:146.016000px;}
.x2_c01163{left:265.147500px;}
.x3_c01163{left:285.150000px;}
.x4_c01163{left:343.695000px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.ls3_c01163{letter-spacing:-0.220267pt;}
.ls1_c01163{letter-spacing:-0.161067pt;}
.ls4_c01163{letter-spacing:-0.135467pt;}
.ls0_c01163{letter-spacing:0.000000pt;}
.ls2_c01163{letter-spacing:0.133333pt;}
.ws0_c01163{word-spacing:0.000000pt;}
._a_c01163{margin-left:-4.597333pt;}
._9_c01163{margin-left:-3.328000pt;}
._5_c01163{margin-left:-2.402957pt;}
._0_c01163{margin-left:-1.119014pt;}
._4_c01163{width:0.906688pt;}
._6_c01163{width:2.816000pt;}
._3_c01163{width:3.968000pt;}
._1_c01163{width:5.632000pt;}
._2_c01163{width:6.528000pt;}
._8_c01163{width:7.903014pt;}
._7_c01163{width:9.216000pt;}
._b_c01163{width:10.880000pt;}
._f_c01163{width:11.776000pt;}
._c_c01163{width:13.504000pt;}
._d_c01163{width:14.453312pt;}
._12_c01163{width:15.552000pt;}
._e_c01163{width:16.832000pt;}
._11_c01163{width:26.496000pt;}
._10_c01163{width:27.648000pt;}
.fs3_c01163{font-size:34.560000pt;}
.fs2_c01163{font-size:42.880000pt;}
.fs4_c01163{font-size:53.120000pt;}
.fs0_c01163{font-size:58.880000pt;}
.fs1_c01163{font-size:64.000000pt;}
.y0_c01163{bottom:0.000000pt;}
.y3_c01163{bottom:51.232000pt;}
.y2_c01163{bottom:69.152000pt;}
.y2d_c01163{bottom:97.152000pt;}
.y2c_c01163{bottom:113.312000pt;}
.y2b_c01163{bottom:117.952000pt;}
.y2a_c01163{bottom:130.912000pt;}
.y29_c01163{bottom:191.866667pt;}
.y28_c01163{bottom:222.266667pt;}
.y27_c01163{bottom:252.866667pt;}
.y26_c01163{bottom:283.426667pt;}
.y25_c01163{bottom:313.986667pt;}
.y24_c01163{bottom:344.386667pt;}
.y23_c01163{bottom:374.946667pt;}
.y22_c01163{bottom:405.506667pt;}
.y21_c01163{bottom:436.066667pt;}
.y20_c01163{bottom:455.746667pt;}
.y1f_c01163{bottom:475.586667pt;}
.y1e_c01163{bottom:495.426667pt;}
.y1d_c01163{bottom:515.293333pt;}
.y1c_c01163{bottom:535.133333pt;}
.y1b_c01163{bottom:554.973333pt;}
.y1a_c01163{bottom:585.693333pt;}
.y19_c01163{bottom:605.373333pt;}
.y18_c01163{bottom:625.213333pt;}
.y17_c01163{bottom:645.053333pt;}
.y16_c01163{bottom:664.893333pt;}
.y15_c01163{bottom:684.733333pt;}
.y14_c01163{bottom:704.573333pt;}
.y13_c01163{bottom:735.293333pt;}
.y12_c01163{bottom:755.013333pt;}
.y11_c01163{bottom:774.853333pt;}
.y10_c01163{bottom:794.853333pt;}
.yf_c01163{bottom:814.693333pt;}
.ye_c01163{bottom:834.533333pt;}
.yc_c01163{bottom:854.373333pt;}
.yd_c01163{bottom:859.653333pt;}
.yb_c01163{bottom:874.213333pt;}
.ya_c01163{bottom:894.053333pt;}
.y9_c01163{bottom:913.893333pt;}
.y8_c01163{bottom:933.733333pt;}
.y7_c01163{bottom:953.573333pt;}
.y6_c01163{bottom:973.413333pt;}
.y5_c01163{bottom:993.253333pt;}
.y4_c01163{bottom:1013.280000pt;}
.y1_c01163{bottom:1061.920000pt;}
.h7_c01163{height:36.875520pt;}
.h6_c01163{height:38.441250pt;}
.h2_c01163{height:42.722500pt;}
.h3_c01163{height:44.648750pt;}
.h8_c01163{height:56.679040pt;}
.h4_c01163{height:57.375000pt;}
.h5_c01163{height:1122.546667pt;}
.h0_c01163{height:1122.560000pt;}
.h1_c01163{height:1122.666667pt;}
.w2_c01163{width:793.740000pt;}
.w0_c01163{width:793.760000pt;}
.w1_c01163{width:794.000000pt;}
.x0_c01163{left:0.000000pt;}
.x1_c01163{left:113.472000pt;}
.x5_c01163{left:129.792000pt;}
.x2_c01163{left:235.686667pt;}
.x3_c01163{left:253.466667pt;}
.x4_c01163{left:305.506667pt;}
}





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

.ir_c01164:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01164;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01164;src:url('chunks/assets/font_83615653fc4eac5ae86208f4.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01164;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01164;src:url('chunks/assets/font_bec0b28b152f5d5252110fd0.woff2')format("woff");}.ff4_c01164{font-family:ff4_c01164;line-height:1.104492;font-style:normal;font-weight: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_c01164;src:url('chunks/assets/font_4f986d93c04af2e87812966d.woff2')format("woff");}.ff5_c01164{font-family:ff5_c01164;line-height:1.106934;font-style:normal;font-weight: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_c01164;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff6_c01164{font-family:ff6_c01164;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01164{vertical-align:0.000000px;}
.ls3_c01164{letter-spacing:-0.576000px;}
.ls2_c01164{letter-spacing:-0.053400px;}
.ls0_c01164{letter-spacing:0.000000px;}
.ls1_c01164{letter-spacing:0.150000px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01164{word-spacing:0.000000px;}
._b_c01164{margin-left:-3.789683px;}
._a_c01164{margin-left:-2.402317px;}
._0_c01164{margin-left:-1.390841px;}
._1_c01164{width:1.367061px;}
._6_c01164{width:2.880000px;}
._7_c01164{width:4.248000px;}
._11_c01164{width:8.882317px;}
._8_c01164{width:10.174841px;}
._5_c01164{width:11.664000px;}
._4_c01164{width:12.672000px;}
._e_c01164{width:14.616000px;}
._10_c01164{width:15.791780px;}
._c_c01164{width:18.360000px;}
._d_c01164{width:21.816000px;}
._9_c01164{width:57.288024px;}
._f_c01164{width:66.744000px;}
._2_c01164{width:107.584320px;}
._3_c01164{width:120.216938px;}
.fc1_c01164{color:transparent;}
.fc0_c01164{color:rgb(0,0,0);}
.fs2_c01164{font-size:59.760000px;}
.fs0_c01164{font-size:66.240000px;}
.fs3_c01164{font-size:72.000000px;}
.fs1_c01164{font-size:84.240000px;}
.y22_c01164{bottom:-1.785000px;}
.y0_c01164{bottom:0.000000px;}
.y24_c01164{bottom:6.285000px;}
.y3_c01164{bottom:57.636000px;}
.y2_c01164{bottom:77.796000px;}
.y20_c01164{bottom:135.576000px;}
.y23_c01164{bottom:143.865000px;}
.y1f_c01164{bottom:157.710000px;}
.y1e_c01164{bottom:180.030000px;}
.y1d_c01164{bottom:202.350000px;}
.y1c_c01164{bottom:224.670000px;}
.y1b_c01164{bottom:246.990000px;}
.y1a_c01164{bottom:269.310000px;}
.y19_c01164{bottom:291.855000px;}
.y18_c01164{bottom:314.175000px;}
.y17_c01164{bottom:336.495000px;}
.y16_c01164{bottom:358.815000px;}
.y15_c01164{bottom:381.135000px;}
.y14_c01164{bottom:403.455000px;}
.y13_c01164{bottom:425.775000px;}
.y12_c01164{bottom:448.095000px;}
.y11_c01164{bottom:470.415000px;}
.y10_c01164{bottom:492.735000px;}
.yf_c01164{bottom:515.055000px;}
.ye_c01164{bottom:537.555000px;}
.yd_c01164{bottom:559.875000px;}
.yc_c01164{bottom:582.225000px;}
.yb_c01164{bottom:604.545000px;}
.ya_c01164{bottom:626.865000px;}
.y9_c01164{bottom:649.185000px;}
.y8_c01164{bottom:669.345000px;}
.y7_c01164{bottom:686.805000px;}
.y6_c01164{bottom:714.165000px;}
.y21_c01164{bottom:967.455000px;}
.y5_c01164{bottom:1115.070000px;}
.y4_c01164{bottom:1137.420000px;}
.y1_c01164{bottom:1194.660000px;}
.h8_c01164{height:11.880000px;}
.ha_c01164{height:20.160000px;}
.h2_c01164{height:48.062812px;}
.h3_c01164{height:50.229844px;}
.h5_c01164{height:53.428008px;}
.h6_c01164{height:53.573906px;}
.h9_c01164{height:53.953242px;}
.h7_c01164{height:64.546875px;}
.h4_c01164{height:87.859687px;}
.h0_c01164{height:1262.880000px;}
.h1_c01164{height:1263.000000px;}
.w2_c01164{width:21.600000px;}
.w3_c01164{width:307.110000px;}
.w0_c01164{width:892.980000px;}
.w1_c01164{width:893.250000px;}
.x0_c01164{left:0.000000px;}
.x7_c01164{left:10.785000px;}
.x3_c01164{left:127.656000px;}
.x1_c01164{left:169.950000px;}
.x5_c01164{left:447.195000px;}
.x6_c01164{left:500.520000px;}
.x4_c01164{left:696.570000px;}
.x2_c01164{left:740.490000px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls3_c01164{letter-spacing:-0.512000pt;}
.ls2_c01164{letter-spacing:-0.047467pt;}
.ls0_c01164{letter-spacing:0.000000pt;}
.ls1_c01164{letter-spacing:0.133333pt;}
.ws0_c01164{word-spacing:0.000000pt;}
._b_c01164{margin-left:-3.368607pt;}
._a_c01164{margin-left:-2.135393pt;}
._0_c01164{margin-left:-1.236303pt;}
._1_c01164{width:1.215165pt;}
._6_c01164{width:2.560000pt;}
._7_c01164{width:3.776000pt;}
._11_c01164{width:7.895393pt;}
._8_c01164{width:9.044303pt;}
._5_c01164{width:10.368000pt;}
._4_c01164{width:11.264000pt;}
._e_c01164{width:12.992000pt;}
._10_c01164{width:14.037138pt;}
._c_c01164{width:16.320000pt;}
._d_c01164{width:19.392000pt;}
._9_c01164{width:50.922688pt;}
._f_c01164{width:59.328000pt;}
._2_c01164{width:95.630507pt;}
._3_c01164{width:106.859500pt;}
.fs2_c01164{font-size:53.120000pt;}
.fs0_c01164{font-size:58.880000pt;}
.fs3_c01164{font-size:64.000000pt;}
.fs1_c01164{font-size:74.880000pt;}
.y22_c01164{bottom:-1.586667pt;}
.y0_c01164{bottom:0.000000pt;}
.y24_c01164{bottom:5.586667pt;}
.y3_c01164{bottom:51.232000pt;}
.y2_c01164{bottom:69.152000pt;}
.y20_c01164{bottom:120.512000pt;}
.y23_c01164{bottom:127.880000pt;}
.y1f_c01164{bottom:140.186667pt;}
.y1e_c01164{bottom:160.026667pt;}
.y1d_c01164{bottom:179.866667pt;}
.y1c_c01164{bottom:199.706667pt;}
.y1b_c01164{bottom:219.546667pt;}
.y1a_c01164{bottom:239.386667pt;}
.y19_c01164{bottom:259.426667pt;}
.y18_c01164{bottom:279.266667pt;}
.y17_c01164{bottom:299.106667pt;}
.y16_c01164{bottom:318.946667pt;}
.y15_c01164{bottom:338.786667pt;}
.y14_c01164{bottom:358.626667pt;}
.y13_c01164{bottom:378.466667pt;}
.y12_c01164{bottom:398.306667pt;}
.y11_c01164{bottom:418.146667pt;}
.y10_c01164{bottom:437.986667pt;}
.yf_c01164{bottom:457.826667pt;}
.ye_c01164{bottom:477.826667pt;}
.yd_c01164{bottom:497.666667pt;}
.yc_c01164{bottom:517.533333pt;}
.yb_c01164{bottom:537.373333pt;}
.ya_c01164{bottom:557.213333pt;}
.y9_c01164{bottom:577.053333pt;}
.y8_c01164{bottom:594.973333pt;}
.y7_c01164{bottom:610.493333pt;}
.y6_c01164{bottom:634.813333pt;}
.y21_c01164{bottom:859.960000pt;}
.y5_c01164{bottom:991.173333pt;}
.y4_c01164{bottom:1011.040000pt;}
.y1_c01164{bottom:1061.920000pt;}
.h8_c01164{height:10.560000pt;}
.ha_c01164{height:17.920000pt;}
.h2_c01164{height:42.722500pt;}
.h3_c01164{height:44.648750pt;}
.h5_c01164{height:47.491563pt;}
.h6_c01164{height:47.621250pt;}
.h9_c01164{height:47.958438pt;}
.h7_c01164{height:57.375000pt;}
.h4_c01164{height:78.097500pt;}
.h0_c01164{height:1122.560000pt;}
.h1_c01164{height:1122.666667pt;}
.w2_c01164{width:19.200000pt;}
.w3_c01164{width:272.986667pt;}
.w0_c01164{width:793.760000pt;}
.w1_c01164{width:794.000000pt;}
.x0_c01164{left:0.000000pt;}
.x7_c01164{left:9.586667pt;}
.x3_c01164{left:113.472000pt;}
.x1_c01164{left:151.066667pt;}
.x5_c01164{left:397.506667pt;}
.x6_c01164{left:444.906667pt;}
.x4_c01164{left:619.173333pt;}
.x2_c01164{left:658.213333pt;}
}





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

.ir_c01165:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01165;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01165;src:url('chunks/assets/font_d499db00dc30a524981d5812.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01165;src:url('chunks/assets/font_dc9e2ea8e75a5ca780fe4c0e.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01165;src:url('chunks/assets/font_a430cd6b2b7eb67cdf8ad18e.woff2')format("woff");}.ff4_c01165{font-family:ff4_c01165;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.ls1_c01165{letter-spacing:-0.720000px;}
.ls2_c01165{letter-spacing:-0.144000px;}
.ls0_c01165{letter-spacing:0.000000px;}
.sc__c01165{text-shadow:none;}
.sc0_c01165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01165{-webkit-text-stroke:0px transparent;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01165{word-spacing:-20.016000px;}
.ws1_c01165{word-spacing:-19.872000px;}
.ws2_c01165{word-spacing:0.000000px;}
._6_c01165{margin-left:-5.437109px;}
._5_c01165{margin-left:-4.176000px;}
._7_c01165{margin-left:-2.808000px;}
._0_c01165{margin-left:-1.258891px;}
._2_c01165{width:1.740024px;}
._3_c01165{width:2.805782px;}
._4_c01165{width:3.999326px;}
._1_c01165{width:5.112000px;}
._c_c01165{width:7.992000px;}
._d_c01165{width:9.273734px;}
._a_c01165{width:10.368000px;}
._b_c01165{width:11.376000px;}
._e_c01165{width:12.864024px;}
._f_c01165{width:13.870843px;}
._8_c01165{width:15.480000px;}
._9_c01165{width:21.312000px;}
._11_c01165{width:25.125782px;}
._10_c01165{width:26.136000px;}
.fc0_c01165{color:rgb(0,0,0);}
.fs2_c01165{font-size:59.760000px;}
.fs0_c01165{font-size:66.240000px;}
.fs1_c01165{font-size:72.000000px;}
.y0_c01165{bottom:0.000000px;}
.y2a_c01165{bottom:3.075000px;}
.y3_c01165{bottom:57.636000px;}
.y2_c01165{bottom:77.796000px;}
.y28_c01165{bottom:114.696000px;}
.y27_c01165{bottom:137.196000px;}
.y26_c01165{bottom:159.510000px;}
.y25_c01165{bottom:181.830000px;}
.y24_c01165{bottom:204.150000px;}
.y23_c01165{bottom:226.470000px;}
.y22_c01165{bottom:248.790000px;}
.y21_c01165{bottom:271.110000px;}
.y20_c01165{bottom:293.475000px;}
.y1f_c01165{bottom:328.035000px;}
.y1e_c01165{bottom:350.355000px;}
.y1d_c01165{bottom:372.675000px;}
.y1c_c01165{bottom:394.815000px;}
.y1b_c01165{bottom:417.135000px;}
.y1a_c01165{bottom:451.695000px;}
.y29_c01165{bottom:462.480000px;}
.y19_c01165{bottom:482.115000px;}
.y18_c01165{bottom:693.285000px;}
.y17_c01165{bottom:715.425000px;}
.y16_c01165{bottom:737.745000px;}
.y15_c01165{bottom:760.065000px;}
.y14_c01165{bottom:782.565000px;}
.y13_c01165{bottom:804.885000px;}
.y12_c01165{bottom:827.025000px;}
.y11_c01165{bottom:849.390000px;}
.y10_c01165{bottom:871.710000px;}
.yf_c01165{bottom:894.210000px;}
.ye_c01165{bottom:916.530000px;}
.yd_c01165{bottom:939.030000px;}
.yc_c01165{bottom:961.170000px;}
.yb_c01165{bottom:983.490000px;}
.ya_c01165{bottom:1005.810000px;}
.y9_c01165{bottom:1028.130000px;}
.y8_c01165{bottom:1050.450000px;}
.y7_c01165{bottom:1072.950000px;}
.y6_c01165{bottom:1095.270000px;}
.y5_c01165{bottom:1117.410000px;}
.y4_c01165{bottom:1139.940000px;}
.y1_c01165{bottom:1194.660000px;}
.h5_c01165{height:16.920000px;}
.h2_c01165{height:48.062812px;}
.h3_c01165{height:50.229844px;}
.h6_c01165{height:53.428008px;}
.h4_c01165{height:64.546875px;}
.h0_c01165{height:1262.880000px;}
.h1_c01165{height:1263.000000px;}
.w2_c01165{width:394.275000px;}
.w0_c01165{width:892.980000px;}
.w1_c01165{width:893.250000px;}
.x0_c01165{left:0.000000px;}
.x1_c01165{left:127.656000px;}
.x3_c01165{left:272.385000px;}
.x2_c01165{left:619.845000px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls1_c01165{letter-spacing:-0.640000pt;}
.ls2_c01165{letter-spacing:-0.128000pt;}
.ls0_c01165{letter-spacing:0.000000pt;}
.ws0_c01165{word-spacing:-17.792000pt;}
.ws1_c01165{word-spacing:-17.664000pt;}
.ws2_c01165{word-spacing:0.000000pt;}
._6_c01165{margin-left:-4.832986pt;}
._5_c01165{margin-left:-3.712000pt;}
._7_c01165{margin-left:-2.496000pt;}
._0_c01165{margin-left:-1.119014pt;}
._2_c01165{width:1.546688pt;}
._3_c01165{width:2.494029pt;}
._4_c01165{width:3.554957pt;}
._1_c01165{width:4.544000pt;}
._c_c01165{width:7.104000pt;}
._d_c01165{width:8.243319pt;}
._a_c01165{width:9.216000pt;}
._b_c01165{width:10.112000pt;}
._e_c01165{width:11.434688pt;}
._f_c01165{width:12.329638pt;}
._8_c01165{width:13.760000pt;}
._9_c01165{width:18.944000pt;}
._11_c01165{width:22.334029pt;}
._10_c01165{width:23.232000pt;}
.fs2_c01165{font-size:53.120000pt;}
.fs0_c01165{font-size:58.880000pt;}
.fs1_c01165{font-size:64.000000pt;}
.y0_c01165{bottom:0.000000pt;}
.y2a_c01165{bottom:2.733333pt;}
.y3_c01165{bottom:51.232000pt;}
.y2_c01165{bottom:69.152000pt;}
.y28_c01165{bottom:101.952000pt;}
.y27_c01165{bottom:121.952000pt;}
.y26_c01165{bottom:141.786667pt;}
.y25_c01165{bottom:161.626667pt;}
.y24_c01165{bottom:181.466667pt;}
.y23_c01165{bottom:201.306667pt;}
.y22_c01165{bottom:221.146667pt;}
.y21_c01165{bottom:240.986667pt;}
.y20_c01165{bottom:260.866667pt;}
.y1f_c01165{bottom:291.586667pt;}
.y1e_c01165{bottom:311.426667pt;}
.y1d_c01165{bottom:331.266667pt;}
.y1c_c01165{bottom:350.946667pt;}
.y1b_c01165{bottom:370.786667pt;}
.y1a_c01165{bottom:401.506667pt;}
.y29_c01165{bottom:411.093333pt;}
.y19_c01165{bottom:428.546667pt;}
.y18_c01165{bottom:616.253333pt;}
.y17_c01165{bottom:635.933333pt;}
.y16_c01165{bottom:655.773333pt;}
.y15_c01165{bottom:675.613333pt;}
.y14_c01165{bottom:695.613333pt;}
.y13_c01165{bottom:715.453333pt;}
.y12_c01165{bottom:735.133333pt;}
.y11_c01165{bottom:755.013333pt;}
.y10_c01165{bottom:774.853333pt;}
.yf_c01165{bottom:794.853333pt;}
.ye_c01165{bottom:814.693333pt;}
.yd_c01165{bottom:834.693333pt;}
.yc_c01165{bottom:854.373333pt;}
.yb_c01165{bottom:874.213333pt;}
.ya_c01165{bottom:894.053333pt;}
.y9_c01165{bottom:913.893333pt;}
.y8_c01165{bottom:933.733333pt;}
.y7_c01165{bottom:953.733333pt;}
.y6_c01165{bottom:973.573333pt;}
.y5_c01165{bottom:993.253333pt;}
.y4_c01165{bottom:1013.280000pt;}
.y1_c01165{bottom:1061.920000pt;}
.h5_c01165{height:15.040000pt;}
.h2_c01165{height:42.722500pt;}
.h3_c01165{height:44.648750pt;}
.h6_c01165{height:47.491563pt;}
.h4_c01165{height:57.375000pt;}
.h0_c01165{height:1122.560000pt;}
.h1_c01165{height:1122.666667pt;}
.w2_c01165{width:350.466667pt;}
.w0_c01165{width:793.760000pt;}
.w1_c01165{width:794.000000pt;}
.x0_c01165{left:0.000000pt;}
.x1_c01165{left:113.472000pt;}
.x3_c01165{left:242.120000pt;}
.x2_c01165{left:550.973333pt;}
}





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

.ir_c01166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01166;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01166;src:url('chunks/assets/font_c52f601a45404cbd444b024c.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01166;src:url('chunks/assets/font_a964d2461841fb21807ac847.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01166;src:url('chunks/assets/font_1911d48ac4c8e2f39c9eaa6f.woff2')format("woff");}.ff4_c01166{font-family:ff4_c01166;line-height:1.104492;font-style:normal;font-weight: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_c01166;src:url('chunks/assets/font_201fed3c109d43aab5f1d8c9.woff2')format("woff");}.ff5_c01166{font-family:ff5_c01166;line-height:1.575000;font-style:normal;font-weight: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_c01166;src:url('chunks/assets/font_de351d0eb0d7b5e62eaa128d.woff2')format("woff");}.ff6_c01166{font-family:ff6_c01166;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.ls2_c01166{letter-spacing:-0.720000px;}
.ls7_c01166{letter-spacing:-0.247800px;}
.ls5_c01166{letter-spacing:-0.181200px;}
.ls1_c01166{letter-spacing:0.000000px;}
.ls4_c01166{letter-spacing:0.144000px;}
.ls6_c01166{letter-spacing:0.150000px;}
.ls0_c01166{letter-spacing:0.216000px;}
.ls3_c01166{letter-spacing:0.288000px;}
.sc__c01166{text-shadow:none;}
.sc0_c01166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01166{-webkit-text-stroke:0px transparent;}
.sc0_c01166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01166{word-spacing:-20.016000px;}
.ws1_c01166{word-spacing:0.000000px;}
._d_c01166{margin-left:-5.195415px;}
._7_c01166{margin-left:-3.168000px;}
._0_c01166{margin-left:-1.390841px;}
._1_c01166{width:1.367061px;}
._4_c01166{width:2.874572px;}
._6_c01166{width:4.680000px;}
._5_c01166{width:6.168000px;}
._b_c01166{width:11.664000px;}
._c_c01166{width:14.760000px;}
._9_c01166{width:18.670841px;}
._a_c01166{width:21.421159px;}
._3_c01166{width:34.461683px;}
._2_c01166{width:35.496000px;}
._8_c01166{width:1098.300000px;}
.fc0_c01166{color:rgb(0,0,0);}
.fs3_c01166{font-size:38.880000px;}
.fs2_c01166{font-size:48.240000px;}
.fs4_c01166{font-size:59.760000px;}
.fs0_c01166{font-size:66.240000px;}
.fs1_c01166{font-size:72.000000px;}
.y0_c01166{bottom:0.000000px;}
.y23_c01166{bottom:5.940000px;}
.y20_c01166{bottom:18.360000px;}
.y22_c01166{bottom:23.400000px;}
.y1f_c01166{bottom:35.820000px;}
.y3_c01166{bottom:57.636000px;}
.y2_c01166{bottom:77.796000px;}
.y1d_c01166{bottom:109.296000px;}
.y1c_c01166{bottom:127.476000px;}
.y1b_c01166{bottom:145.656000px;}
.y1a_c01166{bottom:150.870000px;}
.y19_c01166{bottom:165.450000px;}
.y18_c01166{bottom:428.475000px;}
.y17_c01166{bottom:449.175000px;}
.y16_c01166{bottom:470.055000px;}
.y15_c01166{bottom:490.575000px;}
.y14_c01166{bottom:511.455000px;}
.y13_c01166{bottom:532.155000px;}
.y12_c01166{bottom:552.855000px;}
.y10_c01166{bottom:573.405000px;}
.y11_c01166{bottom:579.345000px;}
.yf_c01166{bottom:593.925000px;}
.ye_c01166{bottom:614.805000px;}
.y1e_c01166{bottom:631.365000px;}
.y21_c01166{bottom:643.785000px;}
.yd_c01166{bottom:683.385000px;}
.yc_c01166{bottom:961.170000px;}
.yb_c01166{bottom:983.670000px;}
.ya_c01166{bottom:1005.990000px;}
.y9_c01166{bottom:1028.310000px;}
.y8_c01166{bottom:1050.630000px;}
.y7_c01166{bottom:1072.770000px;}
.y6_c01166{bottom:1095.270000px;}
.y5_c01166{bottom:1117.590000px;}
.y4_c01166{bottom:1139.940000px;}
.y1_c01166{bottom:1194.660000px;}
.hb_c01166{height:37.080000px;}
.h7_c01166{height:41.484960px;}
.h6_c01166{height:43.246406px;}
.h2_c01166{height:48.062812px;}
.h9_c01166{height:49.500000px;}
.h3_c01166{height:50.229844px;}
.ha_c01166{height:53.428008px;}
.h8_c01166{height:63.763920px;}
.h4_c01166{height:64.546875px;}
.h5_c01166{height:1262.865000px;}
.h0_c01166{height:1262.880000px;}
.h1_c01166{height:1263.000000px;}
.w3_c01166{width:261.375000px;}
.w4_c01166{width:275.115000px;}
.w2_c01166{width:892.957500px;}
.w0_c01166{width:892.980000px;}
.w1_c01166{width:893.250000px;}
.x0_c01166{left:0.000000px;}
.x3_c01166{left:127.656000px;}
.x8_c01166{left:146.016000px;}
.x1_c01166{left:169.950000px;}
.x9_c01166{left:173.565000px;}
.x5_c01166{left:286.747500px;}
.x6_c01166{left:306.795000px;}
.x7_c01166{left:343.695000px;}
.x4_c01166{left:435.855000px;}
.xa_c01166{left:445.395000px;}
.x2_c01166{left:740.490000px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.ls2_c01166{letter-spacing:-0.640000pt;}
.ls7_c01166{letter-spacing:-0.220267pt;}
.ls5_c01166{letter-spacing:-0.161067pt;}
.ls1_c01166{letter-spacing:0.000000pt;}
.ls4_c01166{letter-spacing:0.128000pt;}
.ls6_c01166{letter-spacing:0.133333pt;}
.ls0_c01166{letter-spacing:0.192000pt;}
.ls3_c01166{letter-spacing:0.256000pt;}
.ws0_c01166{word-spacing:-17.792000pt;}
.ws1_c01166{word-spacing:0.000000pt;}
._d_c01166{margin-left:-4.618147pt;}
._7_c01166{margin-left:-2.816000pt;}
._0_c01166{margin-left:-1.236303pt;}
._1_c01166{width:1.215165pt;}
._4_c01166{width:2.555175pt;}
._6_c01166{width:4.160000pt;}
._5_c01166{width:5.482667pt;}
._b_c01166{width:10.368000pt;}
._c_c01166{width:13.120000pt;}
._9_c01166{width:16.596303pt;}
._a_c01166{width:19.041030pt;}
._3_c01166{width:30.632607pt;}
._2_c01166{width:31.552000pt;}
._8_c01166{width:976.266667pt;}
.fs3_c01166{font-size:34.560000pt;}
.fs2_c01166{font-size:42.880000pt;}
.fs4_c01166{font-size:53.120000pt;}
.fs0_c01166{font-size:58.880000pt;}
.fs1_c01166{font-size:64.000000pt;}
.y0_c01166{bottom:0.000000pt;}
.y23_c01166{bottom:5.280000pt;}
.y20_c01166{bottom:16.320000pt;}
.y22_c01166{bottom:20.800000pt;}
.y1f_c01166{bottom:31.840000pt;}
.y3_c01166{bottom:51.232000pt;}
.y2_c01166{bottom:69.152000pt;}
.y1d_c01166{bottom:97.152000pt;}
.y1c_c01166{bottom:113.312000pt;}
.y1b_c01166{bottom:129.472000pt;}
.y1a_c01166{bottom:134.106667pt;}
.y19_c01166{bottom:147.066667pt;}
.y18_c01166{bottom:380.866667pt;}
.y17_c01166{bottom:399.266667pt;}
.y16_c01166{bottom:417.826667pt;}
.y15_c01166{bottom:436.066667pt;}
.y14_c01166{bottom:454.626667pt;}
.y13_c01166{bottom:473.026667pt;}
.y12_c01166{bottom:491.426667pt;}
.y10_c01166{bottom:509.693333pt;}
.y11_c01166{bottom:514.973333pt;}
.yf_c01166{bottom:527.933333pt;}
.ye_c01166{bottom:546.493333pt;}
.y1e_c01166{bottom:561.213333pt;}
.y21_c01166{bottom:572.253333pt;}
.yd_c01166{bottom:607.453333pt;}
.yc_c01166{bottom:854.373333pt;}
.yb_c01166{bottom:874.373333pt;}
.ya_c01166{bottom:894.213333pt;}
.y9_c01166{bottom:914.053333pt;}
.y8_c01166{bottom:933.893333pt;}
.y7_c01166{bottom:953.573333pt;}
.y6_c01166{bottom:973.573333pt;}
.y5_c01166{bottom:993.413333pt;}
.y4_c01166{bottom:1013.280000pt;}
.y1_c01166{bottom:1061.920000pt;}
.hb_c01166{height:32.960000pt;}
.h7_c01166{height:36.875520pt;}
.h6_c01166{height:38.441250pt;}
.h2_c01166{height:42.722500pt;}
.h9_c01166{height:44.000000pt;}
.h3_c01166{height:44.648750pt;}
.ha_c01166{height:47.491563pt;}
.h8_c01166{height:56.679040pt;}
.h4_c01166{height:57.375000pt;}
.h5_c01166{height:1122.546667pt;}
.h0_c01166{height:1122.560000pt;}
.h1_c01166{height:1122.666667pt;}
.w3_c01166{width:232.333333pt;}
.w4_c01166{width:244.546667pt;}
.w2_c01166{width:793.740000pt;}
.w0_c01166{width:793.760000pt;}
.w1_c01166{width:794.000000pt;}
.x0_c01166{left:0.000000pt;}
.x3_c01166{left:113.472000pt;}
.x8_c01166{left:129.792000pt;}
.x1_c01166{left:151.066667pt;}
.x9_c01166{left:154.280000pt;}
.x5_c01166{left:254.886667pt;}
.x6_c01166{left:272.706667pt;}
.x7_c01166{left:305.506667pt;}
.x4_c01166{left:387.426667pt;}
.xa_c01166{left:395.906667pt;}
.x2_c01166{left:658.213333pt;}
}





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

.ir_c01167:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01167;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01167;src:url('chunks/assets/font_7847b58ff63650f6fdcaabf5.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01167;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01167;src:url('chunks/assets/font_33c9a2e55f159c92d35dc956.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01167{vertical-align:0.000000px;}
.ls1_c01167{letter-spacing:-0.053400px;}
.ls0_c01167{letter-spacing:0.000000px;}
.sc__c01167{text-shadow:none;}
.sc0_c01167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01167{-webkit-text-stroke:0px transparent;}
.sc0_c01167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01167{word-spacing:0.000000px;}
._0_c01167{margin-left:-1.258891px;}
._1_c01167{width:1.364303px;}
.fc0_c01167{color:rgb(0,0,0);}
.fs1_c01167{font-size:59.760000px;}
.fs0_c01167{font-size:66.240000px;}
.fs2_c01167{font-size:72.000000px;}
.y0_c01167{bottom:0.000000px;}
.y3_c01167{bottom:57.636000px;}
.y2_c01167{bottom:77.796000px;}
.ya_c01167{bottom:156.990000px;}
.y9_c01167{bottom:177.150000px;}
.y8_c01167{bottom:194.430000px;}
.y7_c01167{bottom:208.110000px;}
.y6_c01167{bottom:595.725000px;}
.y5_c01167{bottom:629.565000px;}
.y4_c01167{bottom:657.105000px;}
.y1_c01167{bottom:1194.660000px;}
.h2_c01167{height:48.062812px;}
.h3_c01167{height:50.229844px;}
.h5_c01167{height:53.428008px;}
.h4_c01167{height:53.573906px;}
.h6_c01167{height:64.546875px;}
.h0_c01167{height:1262.880000px;}
.h1_c01167{height:1263.000000px;}
.w0_c01167{width:892.980000px;}
.w1_c01167{width:893.250000px;}
.x0_c01167{left:0.000000px;}
.x1_c01167{left:127.656000px;}
.x3_c01167{left:446.475000px;}
.x2_c01167{left:701.970000px;}
@media print{
.v0_c01167{vertical-align:0.000000pt;}
.ls1_c01167{letter-spacing:-0.047467pt;}
.ls0_c01167{letter-spacing:0.000000pt;}
.ws0_c01167{word-spacing:0.000000pt;}
._0_c01167{margin-left:-1.119014pt;}
._1_c01167{width:1.212714pt;}
.fs1_c01167{font-size:53.120000pt;}
.fs0_c01167{font-size:58.880000pt;}
.fs2_c01167{font-size:64.000000pt;}
.y0_c01167{bottom:0.000000pt;}
.y3_c01167{bottom:51.232000pt;}
.y2_c01167{bottom:69.152000pt;}
.ya_c01167{bottom:139.546667pt;}
.y9_c01167{bottom:157.466667pt;}
.y8_c01167{bottom:172.826667pt;}
.y7_c01167{bottom:184.986667pt;}
.y6_c01167{bottom:529.533333pt;}
.y5_c01167{bottom:559.613333pt;}
.y4_c01167{bottom:584.093333pt;}
.y1_c01167{bottom:1061.920000pt;}
.h2_c01167{height:42.722500pt;}
.h3_c01167{height:44.648750pt;}
.h5_c01167{height:47.491563pt;}
.h4_c01167{height:47.621250pt;}
.h6_c01167{height:57.375000pt;}
.h0_c01167{height:1122.560000pt;}
.h1_c01167{height:1122.666667pt;}
.w0_c01167{width:793.760000pt;}
.w1_c01167{width:794.000000pt;}
.x0_c01167{left:0.000000pt;}
.x1_c01167{left:113.472000pt;}
.x3_c01167{left:396.866667pt;}
.x2_c01167{left:623.973333pt;}
}





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

.ir_c01168:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01168;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01168;src:url('chunks/assets/font_fd6a9386fcf0e56c86c3c3d1.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01168;src:url('chunks/assets/font_ba054c8145519cd8760fe5c0.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01168;src:url('chunks/assets/font_d8b5f8ae73be06c237659c0f.woff2')format("woff");}.ff4_c01168{font-family:ff4_c01168;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01168{vertical-align:0.000000px;}
.ls3_c01168{letter-spacing:-0.720000px;}
.ls1_c01168{letter-spacing:0.000000px;}
.ls2_c01168{letter-spacing:0.288000px;}
.ls0_c01168{letter-spacing:1250.886720px;}
.sc__c01168{text-shadow:none;}
.sc0_c01168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01168{-webkit-text-stroke:0px transparent;}
.sc0_c01168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01168{word-spacing:-20.304000px;}
.ws1_c01168{word-spacing:0.000000px;}
._4_c01168{margin-left:-5.040000px;}
._7_c01168{margin-left:-3.960000px;}
._9_c01168{margin-left:-2.448000px;}
._0_c01168{margin-left:-1.390841px;}
._1_c01168{width:1.367061px;}
._6_c01168{width:3.024000px;}
._5_c01168{width:4.104000px;}
._8_c01168{width:6.120000px;}
._c_c01168{width:8.352000px;}
._d_c01168{width:9.504000px;}
._b_c01168{width:10.845683px;}
._a_c01168{width:12.024000px;}
._10_c01168{width:13.320000px;}
._11_c01168{width:14.976000px;}
._3_c01168{width:17.325683px;}
._2_c01168{width:18.648000px;}
._e_c01168{width:22.392000px;}
._f_c01168{width:23.688000px;}
.fc0_c01168{color:rgb(0,0,0);}
.fs2_c01168{font-size:59.760000px;}
.fs0_c01168{font-size:66.240000px;}
.fs1_c01168{font-size:72.000000px;}
.y0_c01168{bottom:0.000000px;}
.y2b_c01168{bottom:7.935000px;}
.y29_c01168{bottom:9.195000px;}
.y27_c01168{bottom:11.520000px;}
.y26_c01168{bottom:28.980000px;}
.y3_c01168{bottom:57.636000px;}
.y2_c01168{bottom:77.796000px;}
.y24_c01168{bottom:124.056000px;}
.y23_c01168{bottom:146.376000px;}
.y22_c01168{bottom:168.690000px;}
.y21_c01168{bottom:191.010000px;}
.y20_c01168{bottom:213.330000px;}
.y1f_c01168{bottom:235.650000px;}
.y1e_c01168{bottom:279.210000px;}
.y28_c01168{bottom:289.860000px;}
.y2a_c01168{bottom:291.120000px;}
.y1d_c01168{bottom:318.495000px;}
.y1c_c01168{bottom:586.185000px;}
.y25_c01168{bottom:600.585000px;}
.y1b_c01168{bottom:606.345000px;}
.y1a_c01168{bottom:648.825000px;}
.y19_c01168{bottom:670.965000px;}
.y18_c01168{bottom:693.105000px;}
.y17_c01168{bottom:715.425000px;}
.y16_c01168{bottom:737.745000px;}
.y15_c01168{bottom:760.065000px;}
.y14_c01168{bottom:782.385000px;}
.y13_c01168{bottom:804.705000px;}
.y12_c01168{bottom:827.025000px;}
.y11_c01168{bottom:849.390000px;}
.y10_c01168{bottom:871.890000px;}
.yf_c01168{bottom:894.210000px;}
.ye_c01168{bottom:916.530000px;}
.yd_c01168{bottom:939.030000px;}
.yc_c01168{bottom:961.170000px;}
.yb_c01168{bottom:983.490000px;}
.ya_c01168{bottom:1005.810000px;}
.y9_c01168{bottom:1028.130000px;}
.y8_c01168{bottom:1050.450000px;}
.y7_c01168{bottom:1072.950000px;}
.y6_c01168{bottom:1095.090000px;}
.y5_c01168{bottom:1117.410000px;}
.y4_c01168{bottom:1139.940000px;}
.y1_c01168{bottom:1194.660000px;}
.h9_c01168{height:21.780000px;}
.h8_c01168{height:23.040000px;}
.h6_c01168{height:42.660000px;}
.h2_c01168{height:48.062812px;}
.h3_c01168{height:50.229844px;}
.h7_c01168{height:53.428008px;}
.h5_c01168{height:53.573906px;}
.h4_c01168{height:64.546875px;}
.h0_c01168{height:1262.880000px;}
.h1_c01168{height:1263.000000px;}
.w2_c01168{width:208.650000px;}
.w3_c01168{width:208.830000px;}
.w4_c01168{width:304.095000px;}
.w0_c01168{width:892.980000px;}
.w1_c01168{width:893.250000px;}
.x0_c01168{left:0.000000px;}
.x3_c01168{left:127.656000px;}
.x8_c01168{left:149.805000px;}
.x1_c01168{left:169.950000px;}
.x4_c01168{left:349.095000px;}
.x5_c01168{left:350.355000px;}
.x7_c01168{left:372.675000px;}
.x6_c01168{left:427.575000px;}
.x9_c01168{left:432.075000px;}
.x2_c01168{left:740.490000px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.ls3_c01168{letter-spacing:-0.640000pt;}
.ls1_c01168{letter-spacing:0.000000pt;}
.ls2_c01168{letter-spacing:0.256000pt;}
.ls0_c01168{letter-spacing:1111.899307pt;}
.ws0_c01168{word-spacing:-18.048000pt;}
.ws1_c01168{word-spacing:0.000000pt;}
._4_c01168{margin-left:-4.480000pt;}
._7_c01168{margin-left:-3.520000pt;}
._9_c01168{margin-left:-2.176000pt;}
._0_c01168{margin-left:-1.236303pt;}
._1_c01168{width:1.215165pt;}
._6_c01168{width:2.688000pt;}
._5_c01168{width:3.648000pt;}
._8_c01168{width:5.440000pt;}
._c_c01168{width:7.424000pt;}
._d_c01168{width:8.448000pt;}
._b_c01168{width:9.640607pt;}
._a_c01168{width:10.688000pt;}
._10_c01168{width:11.840000pt;}
._11_c01168{width:13.312000pt;}
._3_c01168{width:15.400607pt;}
._2_c01168{width:16.576000pt;}
._e_c01168{width:19.904000pt;}
._f_c01168{width:21.056000pt;}
.fs2_c01168{font-size:53.120000pt;}
.fs0_c01168{font-size:58.880000pt;}
.fs1_c01168{font-size:64.000000pt;}
.y0_c01168{bottom:0.000000pt;}
.y2b_c01168{bottom:7.053333pt;}
.y29_c01168{bottom:8.173333pt;}
.y27_c01168{bottom:10.240000pt;}
.y26_c01168{bottom:25.760000pt;}
.y3_c01168{bottom:51.232000pt;}
.y2_c01168{bottom:69.152000pt;}
.y24_c01168{bottom:110.272000pt;}
.y23_c01168{bottom:130.112000pt;}
.y22_c01168{bottom:149.946667pt;}
.y21_c01168{bottom:169.786667pt;}
.y20_c01168{bottom:189.626667pt;}
.y1f_c01168{bottom:209.466667pt;}
.y1e_c01168{bottom:248.186667pt;}
.y28_c01168{bottom:257.653333pt;}
.y2a_c01168{bottom:258.773333pt;}
.y1d_c01168{bottom:283.106667pt;}
.y1c_c01168{bottom:521.053333pt;}
.y25_c01168{bottom:533.853333pt;}
.y1b_c01168{bottom:538.973333pt;}
.y1a_c01168{bottom:576.733333pt;}
.y19_c01168{bottom:596.413333pt;}
.y18_c01168{bottom:616.093333pt;}
.y17_c01168{bottom:635.933333pt;}
.y16_c01168{bottom:655.773333pt;}
.y15_c01168{bottom:675.613333pt;}
.y14_c01168{bottom:695.453333pt;}
.y13_c01168{bottom:715.293333pt;}
.y12_c01168{bottom:735.133333pt;}
.y11_c01168{bottom:755.013333pt;}
.y10_c01168{bottom:775.013333pt;}
.yf_c01168{bottom:794.853333pt;}
.ye_c01168{bottom:814.693333pt;}
.yd_c01168{bottom:834.693333pt;}
.yc_c01168{bottom:854.373333pt;}
.yb_c01168{bottom:874.213333pt;}
.ya_c01168{bottom:894.053333pt;}
.y9_c01168{bottom:913.893333pt;}
.y8_c01168{bottom:933.733333pt;}
.y7_c01168{bottom:953.733333pt;}
.y6_c01168{bottom:973.413333pt;}
.y5_c01168{bottom:993.253333pt;}
.y4_c01168{bottom:1013.280000pt;}
.y1_c01168{bottom:1061.920000pt;}
.h9_c01168{height:19.360000pt;}
.h8_c01168{height:20.480000pt;}
.h6_c01168{height:37.920000pt;}
.h2_c01168{height:42.722500pt;}
.h3_c01168{height:44.648750pt;}
.h7_c01168{height:47.491563pt;}
.h5_c01168{height:47.621250pt;}
.h4_c01168{height:57.375000pt;}
.h0_c01168{height:1122.560000pt;}
.h1_c01168{height:1122.666667pt;}
.w2_c01168{width:185.466667pt;}
.w3_c01168{width:185.626667pt;}
.w4_c01168{width:270.306667pt;}
.w0_c01168{width:793.760000pt;}
.w1_c01168{width:794.000000pt;}
.x0_c01168{left:0.000000pt;}
.x3_c01168{left:113.472000pt;}
.x8_c01168{left:133.160000pt;}
.x1_c01168{left:151.066667pt;}
.x4_c01168{left:310.306667pt;}
.x5_c01168{left:311.426667pt;}
.x7_c01168{left:331.266667pt;}
.x6_c01168{left:380.066667pt;}
.x9_c01168{left:384.066667pt;}
.x2_c01168{left:658.213333pt;}
}





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

.ir_c01169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01169;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01169;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01169;src:url('chunks/assets/font_d4c00554c5796911430b8ba9.woff2')format("woff");}.ff3_c01169{font-family:ff3_c01169;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01169;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff4_c01169{font-family:ff4_c01169;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:ff5_c01169;src:url('chunks/assets/font_2da1b36de3b54e49b81c2825.woff2')format("woff");}.ff5_c01169{font-family:ff5_c01169;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01169{vertical-align:0.000000px;}
.ls3_c01169{letter-spacing:-0.432000px;}
.ls1_c01169{letter-spacing:0.000000px;}
.ls2_c01169{letter-spacing:0.144000px;}
.ls0_c01169{letter-spacing:0.288000px;}
.sc__c01169{text-shadow:none;}
.sc0_c01169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01169{-webkit-text-stroke:0px transparent;}
.sc0_c01169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01169{word-spacing:-20.304000px;}
.ws0_c01169{word-spacing:-20.016000px;}
.ws2_c01169{word-spacing:0.000000px;}
._d_c01169{margin-left:-5.417323px;}
._c_c01169{margin-left:-3.495326px;}
._10_c01169{margin-left:-2.269109px;}
._0_c01169{margin-left:-1.258891px;}
._2_c01169{width:1.392048px;}
._1_c01169{width:2.448000px;}
._6_c01169{width:3.672000px;}
._7_c01169{width:5.484024px;}
._8_c01169{width:7.488000px;}
._9_c01169{width:9.432000px;}
._a_c01169{width:10.643976px;}
._5_c01169{width:11.952000px;}
._4_c01169{width:13.032000px;}
._b_c01169{width:15.240024px;}
._e_c01169{width:24.120000px;}
._f_c01169{width:25.176024px;}
._3_c01169{width:28.368000px;}
.fc0_c01169{color:rgb(0,0,0);}
.fs0_c01169{font-size:66.240000px;}
.fs1_c01169{font-size:72.000000px;}
.fs2_c01169{font-size:84.240000px;}
.y0_c01169{bottom:0.000000px;}
.y2_c01169{bottom:77.796000px;}
.y2c_c01169{bottom:124.416000px;}
.y2b_c01169{bottom:146.736000px;}
.y2a_c01169{bottom:169.050000px;}
.y29_c01169{bottom:191.370000px;}
.y28_c01169{bottom:225.930000px;}
.y27_c01169{bottom:248.070000px;}
.y26_c01169{bottom:270.390000px;}
.y25_c01169{bottom:292.755000px;}
.y24_c01169{bottom:315.075000px;}
.y23_c01169{bottom:337.575000px;}
.y22_c01169{bottom:359.895000px;}
.y21_c01169{bottom:382.395000px;}
.y20_c01169{bottom:404.715000px;}
.y1f_c01169{bottom:426.855000px;}
.y1e_c01169{bottom:449.175000px;}
.y1d_c01169{bottom:483.735000px;}
.y1c_c01169{bottom:505.875000px;}
.y1b_c01169{bottom:528.195000px;}
.y1a_c01169{bottom:550.515000px;}
.y19_c01169{bottom:572.865000px;}
.y18_c01169{bottom:595.185000px;}
.y17_c01169{bottom:617.505000px;}
.y16_c01169{bottom:639.825000px;}
.y15_c01169{bottom:662.325000px;}
.y14_c01169{bottom:684.645000px;}
.y13_c01169{bottom:706.965000px;}
.y12_c01169{bottom:729.285000px;}
.y11_c01169{bottom:751.605000px;}
.y10_c01169{bottom:773.925000px;}
.yf_c01169{bottom:796.245000px;}
.ye_c01169{bottom:818.565000px;}
.yd_c01169{bottom:840.885000px;}
.yc_c01169{bottom:863.250000px;}
.yb_c01169{bottom:885.750000px;}
.ya_c01169{bottom:908.070000px;}
.y9_c01169{bottom:930.390000px;}
.y8_c01169{bottom:952.710000px;}
.y7_c01169{bottom:996.270000px;}
.y6_c01169{bottom:1072.950000px;}
.y5_c01169{bottom:1095.090000px;}
.y4_c01169{bottom:1117.410000px;}
.y3_c01169{bottom:1139.940000px;}
.y1_c01169{bottom:1194.660000px;}
.h2_c01169{height:48.062812px;}
.h3_c01169{height:50.229844px;}
.h4_c01169{height:64.546875px;}
.h5_c01169{height:87.859687px;}
.h0_c01169{height:1262.880000px;}
.h1_c01169{height:1263.000000px;}
.w0_c01169{width:892.980000px;}
.w1_c01169{width:893.250000px;}
.x0_c01169{left:0.000000px;}
.x1_c01169{left:127.656000px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.ls3_c01169{letter-spacing:-0.384000pt;}
.ls1_c01169{letter-spacing:0.000000pt;}
.ls2_c01169{letter-spacing:0.128000pt;}
.ls0_c01169{letter-spacing:0.256000pt;}
.ws1_c01169{word-spacing:-18.048000pt;}
.ws0_c01169{word-spacing:-17.792000pt;}
.ws2_c01169{word-spacing:0.000000pt;}
._d_c01169{margin-left:-4.815398pt;}
._c_c01169{margin-left:-3.106957pt;}
._10_c01169{margin-left:-2.016986pt;}
._0_c01169{margin-left:-1.119014pt;}
._2_c01169{width:1.237376pt;}
._1_c01169{width:2.176000pt;}
._6_c01169{width:3.264000pt;}
._7_c01169{width:4.874688pt;}
._8_c01169{width:6.656000pt;}
._9_c01169{width:8.384000pt;}
._a_c01169{width:9.461312pt;}
._5_c01169{width:10.624000pt;}
._4_c01169{width:11.584000pt;}
._b_c01169{width:13.546688pt;}
._e_c01169{width:21.440000pt;}
._f_c01169{width:22.378688pt;}
._3_c01169{width:25.216000pt;}
.fs0_c01169{font-size:58.880000pt;}
.fs1_c01169{font-size:64.000000pt;}
.fs2_c01169{font-size:74.880000pt;}
.y0_c01169{bottom:0.000000pt;}
.y2_c01169{bottom:69.152000pt;}
.y2c_c01169{bottom:110.592000pt;}
.y2b_c01169{bottom:130.432000pt;}
.y2a_c01169{bottom:150.266667pt;}
.y29_c01169{bottom:170.106667pt;}
.y28_c01169{bottom:200.826667pt;}
.y27_c01169{bottom:220.506667pt;}
.y26_c01169{bottom:240.346667pt;}
.y25_c01169{bottom:260.226667pt;}
.y24_c01169{bottom:280.066667pt;}
.y23_c01169{bottom:300.066667pt;}
.y22_c01169{bottom:319.906667pt;}
.y21_c01169{bottom:339.906667pt;}
.y20_c01169{bottom:359.746667pt;}
.y1f_c01169{bottom:379.426667pt;}
.y1e_c01169{bottom:399.266667pt;}
.y1d_c01169{bottom:429.986667pt;}
.y1c_c01169{bottom:449.666667pt;}
.y1b_c01169{bottom:469.506667pt;}
.y1a_c01169{bottom:489.346667pt;}
.y19_c01169{bottom:509.213333pt;}
.y18_c01169{bottom:529.053333pt;}
.y17_c01169{bottom:548.893333pt;}
.y16_c01169{bottom:568.733333pt;}
.y15_c01169{bottom:588.733333pt;}
.y14_c01169{bottom:608.573333pt;}
.y13_c01169{bottom:628.413333pt;}
.y12_c01169{bottom:648.253333pt;}
.y11_c01169{bottom:668.093333pt;}
.y10_c01169{bottom:687.933333pt;}
.yf_c01169{bottom:707.773333pt;}
.ye_c01169{bottom:727.613333pt;}
.yd_c01169{bottom:747.453333pt;}
.yc_c01169{bottom:767.333333pt;}
.yb_c01169{bottom:787.333333pt;}
.ya_c01169{bottom:807.173333pt;}
.y9_c01169{bottom:827.013333pt;}
.y8_c01169{bottom:846.853333pt;}
.y7_c01169{bottom:885.573333pt;}
.y6_c01169{bottom:953.733333pt;}
.y5_c01169{bottom:973.413333pt;}
.y4_c01169{bottom:993.253333pt;}
.y3_c01169{bottom:1013.280000pt;}
.y1_c01169{bottom:1061.920000pt;}
.h2_c01169{height:42.722500pt;}
.h3_c01169{height:44.648750pt;}
.h4_c01169{height:57.375000pt;}
.h5_c01169{height:78.097500pt;}
.h0_c01169{height:1122.560000pt;}
.h1_c01169{height:1122.666667pt;}
.w0_c01169{width:793.760000pt;}
.w1_c01169{width:794.000000pt;}
.x0_c01169{left:0.000000pt;}
.x1_c01169{left:113.472000pt;}
}





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

.ir_c01170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01170;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01170;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01170;src:url('chunks/assets/font_128cecd9884c35c520bdad2f.woff2')format("woff");}.ff3_c01170{font-family:ff3_c01170;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01170;src:url('chunks/assets/font_d9df0a4c8a06ba464f347ac5.woff2')format("woff");}.ff4_c01170{font-family:ff4_c01170;line-height:1.104492;font-style:normal;font-weight: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_c01170;src:url('chunks/assets/font_d22443802269b5fa3474c8e9.woff2')format("woff");}.ff5_c01170{font-family:ff5_c01170;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01170{vertical-align:0.000000px;}
.ls4_c01170{letter-spacing:-0.247800px;}
.ls2_c01170{letter-spacing:-0.181200px;}
.ls0_c01170{letter-spacing:0.000000px;}
.ls3_c01170{letter-spacing:0.150000px;}
.ls1_c01170{letter-spacing:0.288000px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01170{word-spacing:-20.304000px;}
.ws1_c01170{word-spacing:-20.016000px;}
.ws2_c01170{word-spacing:0.000000px;}
._0_c01170{margin-left:-1.390841px;}
._1_c01170{width:1.367061px;}
._4_c01170{width:2.784024px;}
._5_c01170{width:4.392000px;}
._7_c01170{width:6.143780px;}
._b_c01170{width:8.064000px;}
._a_c01170{width:9.070841px;}
._6_c01170{width:10.080000px;}
._9_c01170{width:13.968000px;}
._8_c01170{width:15.624000px;}
._2_c01170{width:17.256024px;}
._3_c01170{width:18.792000px;}
.fc0_c01170{color:rgb(0,0,0);}
.fs4_c01170{font-size:38.880000px;}
.fs2_c01170{font-size:48.240000px;}
.fs3_c01170{font-size:59.760000px;}
.fs0_c01170{font-size:66.240000px;}
.fs1_c01170{font-size:72.000000px;}
.y0_c01170{bottom:0.000000px;}
.y3_c01170{bottom:57.636000px;}
.y2_c01170{bottom:77.796000px;}
.y1d_c01170{bottom:109.296000px;}
.y1c_c01170{bottom:114.516000px;}
.y1b_c01170{bottom:129.096000px;}
.y1a_c01170{bottom:347.475000px;}
.y19_c01170{bottom:375.195000px;}
.y18_c01170{bottom:679.605000px;}
.y16_c01170{bottom:701.745000px;}
.y17_c01170{bottom:707.685000px;}
.y15_c01170{bottom:724.065000px;}
.y14_c01170{bottom:758.625000px;}
.y13_c01170{bottom:780.765000px;}
.y12_c01170{bottom:803.085000px;}
.y11_c01170{bottom:825.405000px;}
.y10_c01170{bottom:847.770000px;}
.yf_c01170{bottom:870.090000px;}
.ye_c01170{bottom:904.650000px;}
.yd_c01170{bottom:926.790000px;}
.yc_c01170{bottom:949.110000px;}
.yb_c01170{bottom:971.430000px;}
.ya_c01170{bottom:993.750000px;}
.y9_c01170{bottom:1016.070000px;}
.y8_c01170{bottom:1038.570000px;}
.y7_c01170{bottom:1060.890000px;}
.y6_c01170{bottom:1095.270000px;}
.y5_c01170{bottom:1117.410000px;}
.y4_c01170{bottom:1139.940000px;}
.y1_c01170{bottom:1194.660000px;}
.h8_c01170{height:41.484960px;}
.h6_c01170{height:43.246406px;}
.h2_c01170{height:48.062812px;}
.h3_c01170{height:50.229844px;}
.h7_c01170{height:53.428008px;}
.h9_c01170{height:63.763920px;}
.h4_c01170{height:64.546875px;}
.h5_c01170{height:1262.865000px;}
.h0_c01170{height:1262.880000px;}
.h1_c01170{height:1263.000000px;}
.w2_c01170{width:892.957500px;}
.w0_c01170{width:892.980000px;}
.w1_c01170{width:893.250000px;}
.x0_c01170{left:0.000000px;}
.x3_c01170{left:127.656000px;}
.x8_c01170{left:146.016000px;}
.x1_c01170{left:169.950000px;}
.x4_c01170{left:175.687500px;}
.x5_c01170{left:195.690000px;}
.x7_c01170{left:343.695000px;}
.x6_c01170{left:660.705000px;}
.x2_c01170{left:740.490000px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.ls4_c01170{letter-spacing:-0.220267pt;}
.ls2_c01170{letter-spacing:-0.161067pt;}
.ls0_c01170{letter-spacing:0.000000pt;}
.ls3_c01170{letter-spacing:0.133333pt;}
.ls1_c01170{letter-spacing:0.256000pt;}
.ws0_c01170{word-spacing:-18.048000pt;}
.ws1_c01170{word-spacing:-17.792000pt;}
.ws2_c01170{word-spacing:0.000000pt;}
._0_c01170{margin-left:-1.236303pt;}
._1_c01170{width:1.215165pt;}
._4_c01170{width:2.474688pt;}
._5_c01170{width:3.904000pt;}
._7_c01170{width:5.461138pt;}
._b_c01170{width:7.168000pt;}
._a_c01170{width:8.062970pt;}
._6_c01170{width:8.960000pt;}
._9_c01170{width:12.416000pt;}
._8_c01170{width:13.888000pt;}
._2_c01170{width:15.338688pt;}
._3_c01170{width:16.704000pt;}
.fs4_c01170{font-size:34.560000pt;}
.fs2_c01170{font-size:42.880000pt;}
.fs3_c01170{font-size:53.120000pt;}
.fs0_c01170{font-size:58.880000pt;}
.fs1_c01170{font-size:64.000000pt;}
.y0_c01170{bottom:0.000000pt;}
.y3_c01170{bottom:51.232000pt;}
.y2_c01170{bottom:69.152000pt;}
.y1d_c01170{bottom:97.152000pt;}
.y1c_c01170{bottom:101.792000pt;}
.y1b_c01170{bottom:114.752000pt;}
.y1a_c01170{bottom:308.866667pt;}
.y19_c01170{bottom:333.506667pt;}
.y18_c01170{bottom:604.093333pt;}
.y16_c01170{bottom:623.773333pt;}
.y17_c01170{bottom:629.053333pt;}
.y15_c01170{bottom:643.613333pt;}
.y14_c01170{bottom:674.333333pt;}
.y13_c01170{bottom:694.013333pt;}
.y12_c01170{bottom:713.853333pt;}
.y11_c01170{bottom:733.693333pt;}
.y10_c01170{bottom:753.573333pt;}
.yf_c01170{bottom:773.413333pt;}
.ye_c01170{bottom:804.133333pt;}
.yd_c01170{bottom:823.813333pt;}
.yc_c01170{bottom:843.653333pt;}
.yb_c01170{bottom:863.493333pt;}
.ya_c01170{bottom:883.333333pt;}
.y9_c01170{bottom:903.173333pt;}
.y8_c01170{bottom:923.173333pt;}
.y7_c01170{bottom:943.013333pt;}
.y6_c01170{bottom:973.573333pt;}
.y5_c01170{bottom:993.253333pt;}
.y4_c01170{bottom:1013.280000pt;}
.y1_c01170{bottom:1061.920000pt;}
.h8_c01170{height:36.875520pt;}
.h6_c01170{height:38.441250pt;}
.h2_c01170{height:42.722500pt;}
.h3_c01170{height:44.648750pt;}
.h7_c01170{height:47.491563pt;}
.h9_c01170{height:56.679040pt;}
.h4_c01170{height:57.375000pt;}
.h5_c01170{height:1122.546667pt;}
.h0_c01170{height:1122.560000pt;}
.h1_c01170{height:1122.666667pt;}
.w2_c01170{width:793.740000pt;}
.w0_c01170{width:793.760000pt;}
.w1_c01170{width:794.000000pt;}
.x0_c01170{left:0.000000pt;}
.x3_c01170{left:113.472000pt;}
.x8_c01170{left:129.792000pt;}
.x1_c01170{left:151.066667pt;}
.x4_c01170{left:156.166667pt;}
.x5_c01170{left:173.946667pt;}
.x7_c01170{left:305.506667pt;}
.x6_c01170{left:587.293333pt;}
.x2_c01170{left:658.213333pt;}
}





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

.ir_c01171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01171;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01171;src:url('chunks/assets/font_eb1e452bf5e5db3ee4f97a1c.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01171;src:url('chunks/assets/font_09eb17377161897af5b69baf.woff2')format("woff");}.ff3_c01171{font-family:ff3_c01171;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01171;src:url('chunks/assets/font_6507b5e98bc817f225d9c829.woff2')format("woff");}.ff4_c01171{font-family:ff4_c01171;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.ls0_c01171{letter-spacing:0.000000px;}
.sc__c01171{text-shadow:none;}
.sc0_c01171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01171{-webkit-text-stroke:0px transparent;}
.sc0_c01171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01171{word-spacing:0.000000px;}
._8_c01171{margin-left:-5.328000px;}
._5_c01171{margin-left:-3.456000px;}
._6_c01171{margin-left:-2.376000px;}
._0_c01171{margin-left:-1.258891px;}
._4_c01171{width:1.546891px;}
._3_c01171{width:3.168000px;}
._2_c01171{width:15.408000px;}
._1_c01171{width:22.032000px;}
._7_c01171{width:25.920000px;}
.fc0_c01171{color:rgb(0,0,0);}
.fs2_c01171{font-size:59.760000px;}
.fs0_c01171{font-size:66.240000px;}
.fs1_c01171{font-size:72.000000px;}
.y0_c01171{bottom:0.000000px;}
.y3_c01171{bottom:57.636000px;}
.y2_c01171{bottom:77.796000px;}
.y17_c01171{bottom:187.770000px;}
.y16_c01171{bottom:215.490000px;}
.y15_c01171{bottom:513.075000px;}
.y14_c01171{bottom:540.795000px;}
.y13_c01171{bottom:728.565000px;}
.y12_c01171{bottom:762.405000px;}
.y11_c01171{bottom:794.625000px;}
.y10_c01171{bottom:826.845000px;}
.yf_c01171{bottom:860.550000px;}
.ye_c01171{bottom:894.390000px;}
.yd_c01171{bottom:928.050000px;}
.yc_c01171{bottom:961.350000px;}
.yb_c01171{bottom:983.490000px;}
.ya_c01171{bottom:1005.810000px;}
.y9_c01171{bottom:1028.130000px;}
.y8_c01171{bottom:1050.450000px;}
.y7_c01171{bottom:1072.770000px;}
.y6_c01171{bottom:1095.090000px;}
.y5_c01171{bottom:1117.410000px;}
.y4_c01171{bottom:1139.940000px;}
.y1_c01171{bottom:1194.660000px;}
.h2_c01171{height:48.062812px;}
.h3_c01171{height:50.229844px;}
.h5_c01171{height:53.428008px;}
.h4_c01171{height:64.546875px;}
.h0_c01171{height:1262.880000px;}
.h1_c01171{height:1263.000000px;}
.w0_c01171{width:892.980000px;}
.w1_c01171{width:893.250000px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:127.656000px;}
.x7_c01171{left:393.195000px;}
.x5_c01171{left:422.355000px;}
.x2_c01171{left:495.105000px;}
.x4_c01171{left:578.265000px;}
.x6_c01171{left:584.385000px;}
.x3_c01171{left:630.285000px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls0_c01171{letter-spacing:0.000000pt;}
.ws0_c01171{word-spacing:0.000000pt;}
._8_c01171{margin-left:-4.736000pt;}
._5_c01171{margin-left:-3.072000pt;}
._6_c01171{margin-left:-2.112000pt;}
._0_c01171{margin-left:-1.119014pt;}
._4_c01171{width:1.375014pt;}
._3_c01171{width:2.816000pt;}
._2_c01171{width:13.696000pt;}
._1_c01171{width:19.584000pt;}
._7_c01171{width:23.040000pt;}
.fs2_c01171{font-size:53.120000pt;}
.fs0_c01171{font-size:58.880000pt;}
.fs1_c01171{font-size:64.000000pt;}
.y0_c01171{bottom:0.000000pt;}
.y3_c01171{bottom:51.232000pt;}
.y2_c01171{bottom:69.152000pt;}
.y17_c01171{bottom:166.906667pt;}
.y16_c01171{bottom:191.546667pt;}
.y15_c01171{bottom:456.066667pt;}
.y14_c01171{bottom:480.706667pt;}
.y13_c01171{bottom:647.613333pt;}
.y12_c01171{bottom:677.693333pt;}
.y11_c01171{bottom:706.333333pt;}
.y10_c01171{bottom:734.973333pt;}
.yf_c01171{bottom:764.933333pt;}
.ye_c01171{bottom:795.013333pt;}
.yd_c01171{bottom:824.933333pt;}
.yc_c01171{bottom:854.533333pt;}
.yb_c01171{bottom:874.213333pt;}
.ya_c01171{bottom:894.053333pt;}
.y9_c01171{bottom:913.893333pt;}
.y8_c01171{bottom:933.733333pt;}
.y7_c01171{bottom:953.573333pt;}
.y6_c01171{bottom:973.413333pt;}
.y5_c01171{bottom:993.253333pt;}
.y4_c01171{bottom:1013.280000pt;}
.y1_c01171{bottom:1061.920000pt;}
.h2_c01171{height:42.722500pt;}
.h3_c01171{height:44.648750pt;}
.h5_c01171{height:47.491563pt;}
.h4_c01171{height:57.375000pt;}
.h0_c01171{height:1122.560000pt;}
.h1_c01171{height:1122.666667pt;}
.w0_c01171{width:793.760000pt;}
.w1_c01171{width:794.000000pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:113.472000pt;}
.x7_c01171{left:349.506667pt;}
.x5_c01171{left:375.426667pt;}
.x2_c01171{left:440.093333pt;}
.x4_c01171{left:514.013333pt;}
.x6_c01171{left:519.453333pt;}
.x3_c01171{left:560.253333pt;}
}





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

.ir_c01172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01172;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01172;src:url('chunks/assets/font_21b11549a40e605d5790e862.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01172;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01172{font-family:ff3_c01172;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01172;src:url('chunks/assets/font_588b87438a66226d426e33b4.woff2')format("woff");}.ff4_c01172{font-family:ff4_c01172;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01172{vertical-align:0.000000px;}
.ls0_c01172{letter-spacing:0.000000px;}
.sc__c01172{text-shadow:none;}
.sc0_c01172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01172{-webkit-text-stroke:0px transparent;}
.sc0_c01172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01172{word-spacing:0.000000px;}
._0_c01172{margin-left:-1.390841px;}
._1_c01172{width:1.367061px;}
._2_c01172{width:818.945760px;}
._3_c01172{width:849.185760px;}
.fc0_c01172{color:rgb(0,0,0);}
.fs2_c01172{font-size:59.760000px;}
.fs0_c01172{font-size:66.240000px;}
.fs1_c01172{font-size:72.000000px;}
.y0_c01172{bottom:0.000000px;}
.y3_c01172{bottom:57.636000px;}
.y2_c01172{bottom:77.796000px;}
.yc_c01172{bottom:238.890000px;}
.yb_c01172{bottom:272.550000px;}
.ya_c01172{bottom:306.255000px;}
.y9_c01172{bottom:340.095000px;}
.y8_c01172{bottom:373.755000px;}
.y7_c01172{bottom:407.595000px;}
.y6_c01172{bottom:439.995000px;}
.y5_c01172{bottom:467.355000px;}
.y4_c01172{bottom:818.925000px;}
.y1_c01172{bottom:1194.660000px;}
.h2_c01172{height:48.062812px;}
.h3_c01172{height:50.229844px;}
.h5_c01172{height:53.428008px;}
.h4_c01172{height:64.546875px;}
.h0_c01172{height:1262.880000px;}
.h1_c01172{height:1263.000000px;}
.w0_c01172{width:892.980000px;}
.w1_c01172{width:893.250000px;}
.x0_c01172{left:0.000000px;}
.x3_c01172{left:127.656000px;}
.x1_c01172{left:169.950000px;}
.x2_c01172{left:740.490000px;}
.x5_c01172{left:761.010000px;}
.x4_c01172{left:765.330000px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls0_c01172{letter-spacing:0.000000pt;}
.ws0_c01172{word-spacing:0.000000pt;}
._0_c01172{margin-left:-1.236303pt;}
._1_c01172{width:1.215165pt;}
._2_c01172{width:727.951787pt;}
._3_c01172{width:754.831787pt;}
.fs2_c01172{font-size:53.120000pt;}
.fs0_c01172{font-size:58.880000pt;}
.fs1_c01172{font-size:64.000000pt;}
.y0_c01172{bottom:0.000000pt;}
.y3_c01172{bottom:51.232000pt;}
.y2_c01172{bottom:69.152000pt;}
.yc_c01172{bottom:212.346667pt;}
.yb_c01172{bottom:242.266667pt;}
.ya_c01172{bottom:272.226667pt;}
.y9_c01172{bottom:302.306667pt;}
.y8_c01172{bottom:332.226667pt;}
.y7_c01172{bottom:362.306667pt;}
.y6_c01172{bottom:391.106667pt;}
.y5_c01172{bottom:415.426667pt;}
.y4_c01172{bottom:727.933333pt;}
.y1_c01172{bottom:1061.920000pt;}
.h2_c01172{height:42.722500pt;}
.h3_c01172{height:44.648750pt;}
.h5_c01172{height:47.491563pt;}
.h4_c01172{height:57.375000pt;}
.h0_c01172{height:1122.560000pt;}
.h1_c01172{height:1122.666667pt;}
.w0_c01172{width:793.760000pt;}
.w1_c01172{width:794.000000pt;}
.x0_c01172{left:0.000000pt;}
.x3_c01172{left:113.472000pt;}
.x1_c01172{left:151.066667pt;}
.x2_c01172{left:658.213333pt;}
.x5_c01172{left:676.453333pt;}
.x4_c01172{left:680.293333pt;}
}





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

.ir_c01173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01173;src:url('chunks/assets/font_cbe423bc4ff9385ecced807a.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01173;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01173{vertical-align:0.000000px;}
.ls0_c01173{letter-spacing:0.000000px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01173{word-spacing:-0.468000px;}
.ws1_c01173{word-spacing:0.288000px;}
.fc0_c01173{color:rgb(0,0,0);}
.fs0_c01173{font-size:66.240000px;}
.y0_c01173{bottom:0.000000px;}
.y2_c01173{bottom:77.796000px;}
.y1_c01173{bottom:1194.660000px;}
.h2_c01173{height:48.062812px;}
.h3_c01173{height:50.229844px;}
.h0_c01173{height:1262.880000px;}
.h1_c01173{height:1263.000000px;}
.w0_c01173{width:892.980000px;}
.w1_c01173{width:893.250000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:127.656000px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.ls0_c01173{letter-spacing:0.000000pt;}
.ws0_c01173{word-spacing:-0.416000pt;}
.ws1_c01173{word-spacing:0.256000pt;}
.fs0_c01173{font-size:58.880000pt;}
.y0_c01173{bottom:0.000000pt;}
.y2_c01173{bottom:69.152000pt;}
.y1_c01173{bottom:1061.920000pt;}
.h2_c01173{height:42.722500pt;}
.h3_c01173{height:44.648750pt;}
.h0_c01173{height:1122.560000pt;}
.h1_c01173{height:1122.666667pt;}
.w0_c01173{width:793.760000pt;}
.w1_c01173{width:794.000000pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:113.472000pt;}
}





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

.ir_c01174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01174;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01174;src:url('chunks/assets/font_83615653fc4eac5ae86208f4.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01174;src:url('chunks/assets/font_b9ceb88f12e88caef8715899.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:0.987793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01174;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01174{font-family:ff4_c01174;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:ff5_c01174;src:url('chunks/assets/font_ab5567c01a7e3c908de16773.woff2')format("woff");}.ff5_c01174{font-family:ff5_c01174;line-height:0.915039;font-style:normal;font-weight: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_c01174;src:url('chunks/assets/font_53ea331635502d622473cb55.woff2')format("woff");}.ff6_c01174{font-family:ff6_c01174;line-height:1.009766;font-style:normal;font-weight: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_c01174;src:url('chunks/assets/font_f1e0945e0c723dd9892b84c6.woff2')format("woff");}.ff7_c01174{font-family:ff7_c01174;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:ff8_c01174;src:url('chunks/assets/font_9410e37709624cda97cefcc2.woff2')format("woff");}.ff8_c01174{font-family:ff8_c01174;line-height:1.104492;font-style:normal;font-weight: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_c01174;src:url('chunks/assets/font_17979e6589e45d83e43c07dc.woff2')format("woff");}.ff9_c01174{font-family:ff9_c01174;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.ls4_c01174{letter-spacing:-0.540600px;}
.ls5_c01174{letter-spacing:-0.432000px;}
.ls3_c01174{letter-spacing:-0.072000px;}
.ls2_c01174{letter-spacing:0.000000px;}
.ls6_c01174{letter-spacing:0.288000px;}
.ls0_c01174{letter-spacing:20.784000px;}
.ls1_c01174{letter-spacing:20.808000px;}
.sc__c01174{text-shadow:none;}
.sc1_c01174{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01174{-webkit-text-stroke:0px transparent;}
.sc1_c01174{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01174{word-spacing:-23.418720px;}
.ws0_c01174{word-spacing:-20.554560px;}
.ws1_c01174{word-spacing:-18.000000px;}
.ws3_c01174{word-spacing:0.000000px;}
._2_c01174{margin-left:-2.695848px;}
._0_c01174{margin-left:-1.390841px;}
._1_c01174{width:1.244305px;}
._3_c01174{width:2.330764px;}
._4_c01174{width:3.474472px;}
._8_c01174{width:5.782841px;}
._7_c01174{width:7.272000px;}
._5_c01174{width:11.450536px;}
._6_c01174{width:12.936024px;}
._12_c01174{width:18.860524px;}
._e_c01174{width:23.112000px;}
._d_c01174{width:24.408000px;}
._10_c01174{width:31.536000px;}
._11_c01174{width:32.760000px;}
._9_c01174{width:35.712000px;}
._a_c01174{width:37.584000px;}
._c_c01174{width:41.472000px;}
._b_c01174{width:42.840000px;}
._f_c01174{width:77.904000px;}
.fc1_c01174{color:rgb(238,119,0);}
.fc0_c01174{color:rgb(0,0,0);}
.fs4_c01174{font-size:59.760000px;}
.fs0_c01174{font-size:66.240000px;}
.fs2_c01174{font-size:72.000000px;}
.fs3_c01174{font-size:84.240000px;}
.fs1_c01174{font-size:95.760000px;}
.y0_c01174{bottom:0.000000px;}
.y7_c01174{bottom:5.040000px;}
.ya_c01174{bottom:5.055000px;}
.yd_c01174{bottom:9.000000px;}
.y2b_c01174{bottom:9.711000px;}
.y6_c01174{bottom:31.140000px;}
.y11_c01174{bottom:31.170000px;}
.yf_c01174{bottom:31.185000px;}
.yc_c01174{bottom:41.040000px;}
.y2_c01174{bottom:77.796000px;}
.y2a_c01174{bottom:107.325000px;}
.y29_c01174{bottom:130.356000px;}
.y28_c01174{bottom:154.110000px;}
.y27_c01174{bottom:178.050000px;}
.y26_c01174{bottom:201.810000px;}
.y25_c01174{bottom:225.570000px;}
.y24_c01174{bottom:249.330000px;}
.y23_c01174{bottom:273.270000px;}
.y22_c01174{bottom:297.075000px;}
.y21_c01174{bottom:320.835000px;}
.y20_c01174{bottom:344.595000px;}
.y1f_c01174{bottom:368.535000px;}
.y1e_c01174{bottom:392.295000px;}
.y1d_c01174{bottom:416.055000px;}
.y1c_c01174{bottom:439.815000px;}
.y1b_c01174{bottom:463.755000px;}
.y1a_c01174{bottom:487.515000px;}
.y19_c01174{bottom:532.695000px;}
.y18_c01174{bottom:613.005000px;}
.y17_c01174{bottom:636.765000px;}
.y16_c01174{bottom:660.705000px;}
.y15_c01174{bottom:684.465000px;}
.y14_c01174{bottom:708.225000px;}
.y13_c01174{bottom:731.985000px;}
.y12_c01174{bottom:777.345000px;}
.ye_c01174{bottom:839.445000px;}
.y10_c01174{bottom:839.460000px;}
.yb_c01174{bottom:893.850000px;}
.y9_c01174{bottom:958.095000px;}
.y8_c01174{bottom:958.110000px;}
.y5_c01174{bottom:1012.470000px;}
.y4_c01174{bottom:1097.790000px;}
.y3_c01174{bottom:1131.120000px;}
.y1_c01174{bottom:1194.660000px;}
.he_c01174{height:23.580000px;}
.h2_c01174{height:48.062812px;}
.h3_c01174{height:50.229844px;}
.h7_c01174{height:52.382812px;}
.hf_c01174{height:53.428008px;}
.h5_c01174{height:54.345000px;}
.h8_c01174{height:54.351000px;}
.h9_c01174{height:54.360000px;}
.hb_c01174{height:54.382500px;}
.h6_c01174{height:63.550195px;}
.ha_c01174{height:64.245000px;}
.hd_c01174{height:64.546875px;}
.h4_c01174{height:69.575625px;}
.hc_c01174{height:87.859687px;}
.h0_c01174{height:1262.880000px;}
.h1_c01174{height:1263.000000px;}
.w3_c01174{width:230.415000px;}
.w4_c01174{width:230.430000px;}
.w2_c01174{width:403.626000px;}
.w5_c01174{width:410.475000px;}
.w0_c01174{width:892.980000px;}
.w1_c01174{width:893.250000px;}
.x0_c01174{left:0.000000px;}
.x5_c01174{left:10.251000px;}
.x6_c01174{left:31.485000px;}
.x3_c01174{left:127.656000px;}
.x9_c01174{left:130.545000px;}
.x1_c01174{left:169.950000px;}
.x4_c01174{left:191.550000px;}
.x7_c01174{left:531.300000px;}
.x8_c01174{left:550.545000px;}
.x2_c01174{left:740.490000px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.ls4_c01174{letter-spacing:-0.480533pt;}
.ls5_c01174{letter-spacing:-0.384000pt;}
.ls3_c01174{letter-spacing:-0.064000pt;}
.ls2_c01174{letter-spacing:0.000000pt;}
.ls6_c01174{letter-spacing:0.256000pt;}
.ls0_c01174{letter-spacing:18.474667pt;}
.ls1_c01174{letter-spacing:18.496000pt;}
.ws2_c01174{word-spacing:-20.816640pt;}
.ws0_c01174{word-spacing:-18.270720pt;}
.ws1_c01174{word-spacing:-16.000000pt;}
.ws3_c01174{word-spacing:0.000000pt;}
._2_c01174{margin-left:-2.396310pt;}
._0_c01174{margin-left:-1.236303pt;}
._1_c01174{width:1.106049pt;}
._3_c01174{width:2.071790pt;}
._4_c01174{width:3.088420pt;}
._8_c01174{width:5.140303pt;}
._7_c01174{width:6.464000pt;}
._5_c01174{width:10.178254pt;}
._6_c01174{width:11.498688pt;}
._12_c01174{width:16.764910pt;}
._e_c01174{width:20.544000pt;}
._d_c01174{width:21.696000pt;}
._10_c01174{width:28.032000pt;}
._11_c01174{width:29.120000pt;}
._9_c01174{width:31.744000pt;}
._a_c01174{width:33.408000pt;}
._c_c01174{width:36.864000pt;}
._b_c01174{width:38.080000pt;}
._f_c01174{width:69.248000pt;}
.fs4_c01174{font-size:53.120000pt;}
.fs0_c01174{font-size:58.880000pt;}
.fs2_c01174{font-size:64.000000pt;}
.fs3_c01174{font-size:74.880000pt;}
.fs1_c01174{font-size:85.120000pt;}
.y0_c01174{bottom:0.000000pt;}
.y7_c01174{bottom:4.480000pt;}
.ya_c01174{bottom:4.493333pt;}
.yd_c01174{bottom:8.000000pt;}
.y2b_c01174{bottom:8.632000pt;}
.y6_c01174{bottom:27.680000pt;}
.y11_c01174{bottom:27.706667pt;}
.yf_c01174{bottom:27.720000pt;}
.yc_c01174{bottom:36.480000pt;}
.y2_c01174{bottom:69.152000pt;}
.y2a_c01174{bottom:95.400000pt;}
.y29_c01174{bottom:115.872000pt;}
.y28_c01174{bottom:136.986667pt;}
.y27_c01174{bottom:158.266667pt;}
.y26_c01174{bottom:179.386667pt;}
.y25_c01174{bottom:200.506667pt;}
.y24_c01174{bottom:221.626667pt;}
.y23_c01174{bottom:242.906667pt;}
.y22_c01174{bottom:264.066667pt;}
.y21_c01174{bottom:285.186667pt;}
.y20_c01174{bottom:306.306667pt;}
.y1f_c01174{bottom:327.586667pt;}
.y1e_c01174{bottom:348.706667pt;}
.y1d_c01174{bottom:369.826667pt;}
.y1c_c01174{bottom:390.946667pt;}
.y1b_c01174{bottom:412.226667pt;}
.y1a_c01174{bottom:433.346667pt;}
.y19_c01174{bottom:473.506667pt;}
.y18_c01174{bottom:544.893333pt;}
.y17_c01174{bottom:566.013333pt;}
.y16_c01174{bottom:587.293333pt;}
.y15_c01174{bottom:608.413333pt;}
.y14_c01174{bottom:629.533333pt;}
.y13_c01174{bottom:650.653333pt;}
.y12_c01174{bottom:690.973333pt;}
.ye_c01174{bottom:746.173333pt;}
.y10_c01174{bottom:746.186667pt;}
.yb_c01174{bottom:794.533333pt;}
.y9_c01174{bottom:851.640000pt;}
.y8_c01174{bottom:851.653333pt;}
.y5_c01174{bottom:899.973333pt;}
.y4_c01174{bottom:975.813333pt;}
.y3_c01174{bottom:1005.440000pt;}
.y1_c01174{bottom:1061.920000pt;}
.he_c01174{height:20.960000pt;}
.h2_c01174{height:42.722500pt;}
.h3_c01174{height:44.648750pt;}
.h7_c01174{height:46.562500pt;}
.hf_c01174{height:47.491563pt;}
.h5_c01174{height:48.306667pt;}
.h8_c01174{height:48.312000pt;}
.h9_c01174{height:48.320000pt;}
.hb_c01174{height:48.340000pt;}
.h6_c01174{height:56.489062pt;}
.ha_c01174{height:57.106667pt;}
.hd_c01174{height:57.375000pt;}
.h4_c01174{height:61.845000pt;}
.hc_c01174{height:78.097500pt;}
.h0_c01174{height:1122.560000pt;}
.h1_c01174{height:1122.666667pt;}
.w3_c01174{width:204.813333pt;}
.w4_c01174{width:204.826667pt;}
.w2_c01174{width:358.778667pt;}
.w5_c01174{width:364.866667pt;}
.w0_c01174{width:793.760000pt;}
.w1_c01174{width:794.000000pt;}
.x0_c01174{left:0.000000pt;}
.x5_c01174{left:9.112000pt;}
.x6_c01174{left:27.986667pt;}
.x3_c01174{left:113.472000pt;}
.x9_c01174{left:116.040000pt;}
.x1_c01174{left:151.066667pt;}
.x4_c01174{left:170.266667pt;}
.x7_c01174{left:472.266667pt;}
.x8_c01174{left:489.373333pt;}
.x2_c01174{left:658.213333pt;}
}





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

.ir_c01175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01175;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01175;src:url('chunks/assets/font_d499db00dc30a524981d5812.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01175;src:url('chunks/assets/font_8c1df9d95d81d85e3af30a80.woff2')format("woff");}.ff3_c01175{font-family:ff3_c01175;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01175;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01175{font-family:ff4_c01175;line-height:1.113281;font-style:normal;font-weight: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_c01175;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff5_c01175{font-family:ff5_c01175;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:ff6_c01175;src:url('chunks/assets/font_608596074bf25a2f6344ab20.woff2')format("woff");}.ff6_c01175{font-family:ff6_c01175;line-height:1.575000;font-style:normal;font-weight: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_c01175;src:url('chunks/assets/font_d50e6ec8ec35f8a8ac04ba21.woff2')format("woff");}.ff7_c01175{font-family:ff7_c01175;line-height:1.211914;font-style:normal;font-weight: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_c01175;src:url('chunks/assets/font_f0dc1d48c6fb5a3166cea7f1.woff2')format("woff");}.ff8_c01175{font-family:ff8_c01175;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01175{vertical-align:0.000000px;}
.ls5_c01175{letter-spacing:-0.432000px;}
.ls8_c01175{letter-spacing:-0.247800px;}
.ls4_c01175{letter-spacing:-0.181200px;}
.ls3_c01175{letter-spacing:0.000000px;}
.ls0_c01175{letter-spacing:0.144000px;}
.ls7_c01175{letter-spacing:0.150000px;}
.ls6_c01175{letter-spacing:0.288000px;}
.ls2_c01175{letter-spacing:3.420480px;}
.ls1_c01175{letter-spacing:6.300480px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01175{word-spacing:-20.304000px;}
.ws1_c01175{word-spacing:0.000000px;}
._b_c01175{margin-left:-5.437109px;}
._a_c01175{margin-left:-4.032000px;}
._c_c01175{margin-left:-2.308435px;}
._0_c01175{margin-left:-1.258891px;}
._3_c01175{width:1.008000px;}
._4_c01175{width:2.736000px;}
._7_c01175{width:3.888000px;}
._8_c01175{width:5.760000px;}
._11_c01175{width:6.812401px;}
._9_c01175{width:8.047541px;}
._10_c01175{width:9.193378px;}
._6_c01175{width:10.596024px;}
._5_c01175{width:11.664000px;}
._2_c01175{width:12.816000px;}
._1_c01175{width:14.040000px;}
._e_c01175{width:22.498891px;}
._d_c01175{width:23.616000px;}
._f_c01175{width:28.152000px;}
.fc0_c01175{color:rgb(0,0,0);}
.fs4_c01175{font-size:38.880000px;}
.fs3_c01175{font-size:48.240000px;}
.fs5_c01175{font-size:59.760000px;}
.fs0_c01175{font-size:66.240000px;}
.fs1_c01175{font-size:72.000000px;}
.fs2_c01175{font-size:84.240000px;}
.y0_c01175{bottom:0.000000px;}
.y3_c01175{bottom:57.636000px;}
.y2_c01175{bottom:77.796000px;}
.y31_c01175{bottom:109.296000px;}
.y30_c01175{bottom:127.476000px;}
.y2f_c01175{bottom:132.696000px;}
.y2e_c01175{bottom:145.656000px;}
.y2d_c01175{bottom:164.010000px;}
.y2c_c01175{bottom:169.230000px;}
.y2b_c01175{bottom:182.190000px;}
.y2a_c01175{bottom:200.370000px;}
.y29_c01175{bottom:205.590000px;}
.y28_c01175{bottom:220.170000px;}
.y27_c01175{bottom:296.175000px;}
.y26_c01175{bottom:337.575000px;}
.y25_c01175{bottom:376.455000px;}
.y24_c01175{bottom:400.215000px;}
.y23_c01175{bottom:423.975000px;}
.y22_c01175{bottom:447.735000px;}
.y20_c01175{bottom:471.675000px;}
.y21_c01175{bottom:477.615000px;}
.y1f_c01175{bottom:495.435000px;}
.y1e_c01175{bottom:519.195000px;}
.y1d_c01175{bottom:542.955000px;}
.y1c_c01175{bottom:566.925000px;}
.y1a_c01175{bottom:590.685000px;}
.y1b_c01175{bottom:596.625000px;}
.y19_c01175{bottom:614.445000px;}
.y18_c01175{bottom:638.205000px;}
.y17_c01175{bottom:662.145000px;}
.y15_c01175{bottom:700.845000px;}
.y16_c01175{bottom:706.785000px;}
.y14_c01175{bottom:724.605000px;}
.y13_c01175{bottom:748.545000px;}
.y12_c01175{bottom:772.305000px;}
.y11_c01175{bottom:796.065000px;}
.y10_c01175{bottom:819.825000px;}
.yf_c01175{bottom:843.765000px;}
.ye_c01175{bottom:867.570000px;}
.yd_c01175{bottom:888.990000px;}
.yc_c01175{bottom:912.750000px;}
.yb_c01175{bottom:955.590000px;}
.ya_c01175{bottom:996.990000px;}
.y9_c01175{bottom:1020.750000px;}
.y8_c01175{bottom:1044.690000px;}
.y7_c01175{bottom:1068.450000px;}
.y6_c01175{bottom:1092.210000px;}
.y5_c01175{bottom:1115.970000px;}
.y4_c01175{bottom:1139.940000px;}
.y1_c01175{bottom:1194.660000px;}
.h9_c01175{height:41.484960px;}
.h8_c01175{height:43.246406px;}
.h2_c01175{height:48.062812px;}
.h3_c01175{height:50.229844px;}
.ha_c01175{height:63.763920px;}
.h4_c01175{height:64.546875px;}
.h5_c01175{height:76.054570px;}
.h6_c01175{height:87.859687px;}
.h7_c01175{height:1262.865000px;}
.h0_c01175{height:1262.880000px;}
.h1_c01175{height:1263.000000px;}
.w2_c01175{width:892.957500px;}
.w0_c01175{width:892.980000px;}
.w1_c01175{width:893.250000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:127.656000px;}
.x9_c01175{left:146.016000px;}
.x2_c01175{left:205.567500px;}
.x3_c01175{left:225.570000px;}
.x8_c01175{left:343.695000px;}
.x4_c01175{left:524.062500px;}
.x5_c01175{left:544.065000px;}
.x6_c01175{left:668.962500px;}
.x7_c01175{left:688.965000px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.ls5_c01175{letter-spacing:-0.384000pt;}
.ls8_c01175{letter-spacing:-0.220267pt;}
.ls4_c01175{letter-spacing:-0.161067pt;}
.ls3_c01175{letter-spacing:0.000000pt;}
.ls0_c01175{letter-spacing:0.128000pt;}
.ls7_c01175{letter-spacing:0.133333pt;}
.ls6_c01175{letter-spacing:0.256000pt;}
.ls2_c01175{letter-spacing:3.040427pt;}
.ls1_c01175{letter-spacing:5.600427pt;}
.ws0_c01175{word-spacing:-18.048000pt;}
.ws1_c01175{word-spacing:0.000000pt;}
._b_c01175{margin-left:-4.832986pt;}
._a_c01175{margin-left:-3.584000pt;}
._c_c01175{margin-left:-2.051942pt;}
._0_c01175{margin-left:-1.119014pt;}
._3_c01175{width:0.896000pt;}
._4_c01175{width:2.432000pt;}
._7_c01175{width:3.456000pt;}
._8_c01175{width:5.120000pt;}
._11_c01175{width:6.055468pt;}
._9_c01175{width:7.153370pt;}
._10_c01175{width:8.171891pt;}
._6_c01175{width:9.418688pt;}
._5_c01175{width:10.368000pt;}
._2_c01175{width:11.392000pt;}
._1_c01175{width:12.480000pt;}
._e_c01175{width:19.999014pt;}
._d_c01175{width:20.992000pt;}
._f_c01175{width:25.024000pt;}
.fs4_c01175{font-size:34.560000pt;}
.fs3_c01175{font-size:42.880000pt;}
.fs5_c01175{font-size:53.120000pt;}
.fs0_c01175{font-size:58.880000pt;}
.fs1_c01175{font-size:64.000000pt;}
.fs2_c01175{font-size:74.880000pt;}
.y0_c01175{bottom:0.000000pt;}
.y3_c01175{bottom:51.232000pt;}
.y2_c01175{bottom:69.152000pt;}
.y31_c01175{bottom:97.152000pt;}
.y30_c01175{bottom:113.312000pt;}
.y2f_c01175{bottom:117.952000pt;}
.y2e_c01175{bottom:129.472000pt;}
.y2d_c01175{bottom:145.786667pt;}
.y2c_c01175{bottom:150.426667pt;}
.y2b_c01175{bottom:161.946667pt;}
.y2a_c01175{bottom:178.106667pt;}
.y29_c01175{bottom:182.746667pt;}
.y28_c01175{bottom:195.706667pt;}
.y27_c01175{bottom:263.266667pt;}
.y26_c01175{bottom:300.066667pt;}
.y25_c01175{bottom:334.626667pt;}
.y24_c01175{bottom:355.746667pt;}
.y23_c01175{bottom:376.866667pt;}
.y22_c01175{bottom:397.986667pt;}
.y20_c01175{bottom:419.266667pt;}
.y21_c01175{bottom:424.546667pt;}
.y1f_c01175{bottom:440.386667pt;}
.y1e_c01175{bottom:461.506667pt;}
.y1d_c01175{bottom:482.626667pt;}
.y1c_c01175{bottom:503.933333pt;}
.y1a_c01175{bottom:525.053333pt;}
.y1b_c01175{bottom:530.333333pt;}
.y19_c01175{bottom:546.173333pt;}
.y18_c01175{bottom:567.293333pt;}
.y17_c01175{bottom:588.573333pt;}
.y15_c01175{bottom:622.973333pt;}
.y16_c01175{bottom:628.253333pt;}
.y14_c01175{bottom:644.093333pt;}
.y13_c01175{bottom:665.373333pt;}
.y12_c01175{bottom:686.493333pt;}
.y11_c01175{bottom:707.613333pt;}
.y10_c01175{bottom:728.733333pt;}
.yf_c01175{bottom:750.013333pt;}
.ye_c01175{bottom:771.173333pt;}
.yd_c01175{bottom:790.213333pt;}
.yc_c01175{bottom:811.333333pt;}
.yb_c01175{bottom:849.413333pt;}
.ya_c01175{bottom:886.213333pt;}
.y9_c01175{bottom:907.333333pt;}
.y8_c01175{bottom:928.613333pt;}
.y7_c01175{bottom:949.733333pt;}
.y6_c01175{bottom:970.853333pt;}
.y5_c01175{bottom:991.973333pt;}
.y4_c01175{bottom:1013.280000pt;}
.y1_c01175{bottom:1061.920000pt;}
.h9_c01175{height:36.875520pt;}
.h8_c01175{height:38.441250pt;}
.h2_c01175{height:42.722500pt;}
.h3_c01175{height:44.648750pt;}
.ha_c01175{height:56.679040pt;}
.h4_c01175{height:57.375000pt;}
.h5_c01175{height:67.604062pt;}
.h6_c01175{height:78.097500pt;}
.h7_c01175{height:1122.546667pt;}
.h0_c01175{height:1122.560000pt;}
.h1_c01175{height:1122.666667pt;}
.w2_c01175{width:793.740000pt;}
.w0_c01175{width:793.760000pt;}
.w1_c01175{width:794.000000pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:113.472000pt;}
.x9_c01175{left:129.792000pt;}
.x2_c01175{left:182.726667pt;}
.x3_c01175{left:200.506667pt;}
.x8_c01175{left:305.506667pt;}
.x4_c01175{left:465.833333pt;}
.x5_c01175{left:483.613333pt;}
.x6_c01175{left:594.633333pt;}
.x7_c01175{left:612.413333pt;}
}





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

.ir_c01176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01176;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01176;src:url('chunks/assets/font_c52f601a45404cbd444b024c.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01176;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01176;src:url('chunks/assets/font_55782f31a117d4ab60e926a9.woff2')format("woff");}.ff4_c01176{font-family:ff4_c01176;line-height:1.106934;font-style:normal;font-weight: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_c01176;src:url('chunks/assets/font_3807c00fb2927deea031568d.woff2')format("woff");}.ff5_c01176{font-family:ff5_c01176;line-height:1.113281;font-style:normal;font-weight: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_c01176;src:url('chunks/assets/font_85b875f526e5d91d8b13a0cf.woff2')format("woff");}.ff6_c01176{font-family:ff6_c01176;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01176{vertical-align:0.000000px;}
.ls1_c01176{letter-spacing:0.000000px;}
.ls0_c01176{letter-spacing:0.350640px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01176{word-spacing:-20.016000px;}
.ws1_c01176{word-spacing:0.000000px;}
._d_c01176{margin-left:-4.729159px;}
._c_c01176{margin-left:-3.672000px;}
._0_c01176{margin-left:-1.390841px;}
._2_c01176{width:1.329659px;}
._7_c01176{width:2.391500px;}
._11_c01176{width:3.596524px;}
._10_c01176{width:4.608000px;}
._8_c01176{width:5.638841px;}
._5_c01176{width:6.768000px;}
._b_c01176{width:7.992000px;}
._a_c01176{width:9.000000px;}
._f_c01176{width:10.944000px;}
._9_c01176{width:12.240000px;}
._e_c01176{width:15.081659px;}
._6_c01176{width:18.837683px;}
._4_c01176{width:22.680000px;}
._3_c01176{width:24.192000px;}
._1_c01176{width:31.752000px;}
._12_c01176{width:51.192000px;}
.fc1_c01176{color:transparent;}
.fc0_c01176{color:rgb(0,0,0);}
.fs3_c01176{font-size:59.760000px;}
.fs0_c01176{font-size:66.240000px;}
.fs2_c01176{font-size:72.000000px;}
.fs1_c01176{font-size:84.240000px;}
.y39_c01176{bottom:-1.965000px;}
.y0_c01176{bottom:0.000000px;}
.y32_c01176{bottom:3.975000px;}
.y34_c01176{bottom:6.135000px;}
.y37_c01176{bottom:11.715000px;}
.y27_c01176{bottom:21.960000px;}
.y2d_c01176{bottom:21.990000px;}
.y2f_c01176{bottom:23.385000px;}
.y22_c01176{bottom:23.400000px;}
.y30_c01176{bottom:26.085000px;}
.y23_c01176{bottom:26.100000px;}
.y36_c01176{bottom:29.175000px;}
.y25_c01176{bottom:43.020000px;}
.y2b_c01176{bottom:43.050000px;}
.y26_c01176{bottom:45.720000px;}
.y2c_c01176{bottom:45.750000px;}
.y4_c01176{bottom:57.636000px;}
.y3_c01176{bottom:77.796000px;}
.y20_c01176{bottom:113.256000px;}
.y1f_c01176{bottom:137.376000px;}
.y1e_c01176{bottom:161.130000px;}
.y1d_c01176{bottom:184.890000px;}
.y1c_c01176{bottom:208.650000px;}
.y1b_c01176{bottom:232.230000px;}
.y1a_c01176{bottom:256.170000px;}
.y19_c01176{bottom:279.930000px;}
.y18_c01176{bottom:303.735000px;}
.y17_c01176{bottom:342.615000px;}
.y16_c01176{bottom:381.315000px;}
.y35_c01176{bottom:418.920000px;}
.y15_c01176{bottom:420.195000px;}
.y14_c01176{bottom:458.895000px;}
.y13_c01176{bottom:497.775000px;}
.y12_c01176{bottom:536.655000px;}
.y11_c01176{bottom:575.385000px;}
.y10_c01176{bottom:599.145000px;}
.yf_c01176{bottom:623.085000px;}
.ye_c01176{bottom:646.845000px;}
.yd_c01176{bottom:670.605000px;}
.yc_c01176{bottom:694.365000px;}
.yb_c01176{bottom:718.305000px;}
.ya_c01176{bottom:742.065000px;}
.y9_c01176{bottom:765.825000px;}
.y2e_c01176{bottom:796.980000px;}
.y8_c01176{bottom:804.705000px;}
.y2a_c01176{bottom:839.820000px;}
.y7_c01176{bottom:843.405000px;}
.y31_c01176{bottom:877.275000px;}
.y33_c01176{bottom:901.395000px;}
.y29_c01176{bottom:902.310000px;}
.y28_c01176{bottom:945.150000px;}
.y24_c01176{bottom:987.990000px;}
.y38_c01176{bottom:1038.915000px;}
.y21_c01176{bottom:1050.450000px;}
.y6_c01176{bottom:1113.270000px;}
.y5_c01176{bottom:1137.240000px;}
.y2_c01176{bottom:1174.320000px;}
.y1_c01176{bottom:1194.660000px;}
.h12_c01176{height:11.880000px;}
.he_c01176{height:19.980000px;}
.hc_c01176{height:23.580000px;}
.h8_c01176{height:42.825000px;}
.h10_c01176{height:42.840000px;}
.h2_c01176{height:48.062812px;}
.h3_c01176{height:50.229844px;}
.h11_c01176{height:53.428008px;}
.hf_c01176{height:53.953242px;}
.ha_c01176{height:62.445000px;}
.hb_c01176{height:62.481000px;}
.h6_c01176{height:64.546875px;}
.h7_c01176{height:65.003906px;}
.h5_c01176{height:75.093750px;}
.hd_c01176{height:75.314180px;}
.h9_c01176{height:76.054570px;}
.h4_c01176{height:87.859687px;}
.h0_c01176{height:1262.880000px;}
.h1_c01176{height:1263.000000px;}
.w5_c01176{width:-32.017500px;}
.w7_c01176{width:21.600000px;}
.w2_c01176{width:40.125000px;}
.w6_c01176{width:202.350000px;}
.w3_c01176{width:212.595000px;}
.w4_c01176{width:341.850000px;}
.w0_c01176{width:892.980000px;}
.w1_c01176{width:893.250000px;}
.x7_c01176{left:-46.260000px;}
.x0_c01176{left:0.000000px;}
.x5_c01176{left:8.085000px;}
.xa_c01176{left:10.800000px;}
.x2_c01176{left:127.656000px;}
.x1_c01176{left:169.950000px;}
.x9_c01176{left:448.995000px;}
.x4_c01176{left:511.680000px;}
.x6_c01176{left:551.820000px;}
.x8_c01176{left:559.380000px;}
.x3_c01176{left:740.490000px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.ls1_c01176{letter-spacing:0.000000pt;}
.ls0_c01176{letter-spacing:0.311680pt;}
.ws0_c01176{word-spacing:-17.792000pt;}
.ws1_c01176{word-spacing:0.000000pt;}
._d_c01176{margin-left:-4.203697pt;}
._c_c01176{margin-left:-3.264000pt;}
._0_c01176{margin-left:-1.236303pt;}
._2_c01176{width:1.181919pt;}
._7_c01176{width:2.125778pt;}
._11_c01176{width:3.196910pt;}
._10_c01176{width:4.096000pt;}
._8_c01176{width:5.012303pt;}
._5_c01176{width:6.016000pt;}
._b_c01176{width:7.104000pt;}
._a_c01176{width:8.000000pt;}
._f_c01176{width:9.728000pt;}
._9_c01176{width:10.880000pt;}
._e_c01176{width:13.405919pt;}
._6_c01176{width:16.744607pt;}
._4_c01176{width:20.160000pt;}
._3_c01176{width:21.504000pt;}
._1_c01176{width:28.224000pt;}
._12_c01176{width:45.504000pt;}
.fs3_c01176{font-size:53.120000pt;}
.fs0_c01176{font-size:58.880000pt;}
.fs2_c01176{font-size:64.000000pt;}
.fs1_c01176{font-size:74.880000pt;}
.y39_c01176{bottom:-1.746667pt;}
.y0_c01176{bottom:0.000000pt;}
.y32_c01176{bottom:3.533333pt;}
.y34_c01176{bottom:5.453333pt;}
.y37_c01176{bottom:10.413333pt;}
.y27_c01176{bottom:19.520000pt;}
.y2d_c01176{bottom:19.546667pt;}
.y2f_c01176{bottom:20.786667pt;}
.y22_c01176{bottom:20.800000pt;}
.y30_c01176{bottom:23.186667pt;}
.y23_c01176{bottom:23.200000pt;}
.y36_c01176{bottom:25.933333pt;}
.y25_c01176{bottom:38.240000pt;}
.y2b_c01176{bottom:38.266667pt;}
.y26_c01176{bottom:40.640000pt;}
.y2c_c01176{bottom:40.666667pt;}
.y4_c01176{bottom:51.232000pt;}
.y3_c01176{bottom:69.152000pt;}
.y20_c01176{bottom:100.672000pt;}
.y1f_c01176{bottom:122.112000pt;}
.y1e_c01176{bottom:143.226667pt;}
.y1d_c01176{bottom:164.346667pt;}
.y1c_c01176{bottom:185.466667pt;}
.y1b_c01176{bottom:206.426667pt;}
.y1a_c01176{bottom:227.706667pt;}
.y19_c01176{bottom:248.826667pt;}
.y18_c01176{bottom:269.986667pt;}
.y17_c01176{bottom:304.546667pt;}
.y16_c01176{bottom:338.946667pt;}
.y35_c01176{bottom:372.373333pt;}
.y15_c01176{bottom:373.506667pt;}
.y14_c01176{bottom:407.906667pt;}
.y13_c01176{bottom:442.466667pt;}
.y12_c01176{bottom:477.026667pt;}
.y11_c01176{bottom:511.453333pt;}
.y10_c01176{bottom:532.573333pt;}
.yf_c01176{bottom:553.853333pt;}
.ye_c01176{bottom:574.973333pt;}
.yd_c01176{bottom:596.093333pt;}
.yc_c01176{bottom:617.213333pt;}
.yb_c01176{bottom:638.493333pt;}
.ya_c01176{bottom:659.613333pt;}
.y9_c01176{bottom:680.733333pt;}
.y2e_c01176{bottom:708.426667pt;}
.y8_c01176{bottom:715.293333pt;}
.y2a_c01176{bottom:746.506667pt;}
.y7_c01176{bottom:749.693333pt;}
.y31_c01176{bottom:779.800000pt;}
.y33_c01176{bottom:801.240000pt;}
.y29_c01176{bottom:802.053333pt;}
.y28_c01176{bottom:840.133333pt;}
.y24_c01176{bottom:878.213333pt;}
.y38_c01176{bottom:923.480000pt;}
.y21_c01176{bottom:933.733333pt;}
.y6_c01176{bottom:989.573333pt;}
.y5_c01176{bottom:1010.880000pt;}
.y2_c01176{bottom:1043.840000pt;}
.y1_c01176{bottom:1061.920000pt;}
.h12_c01176{height:10.560000pt;}
.he_c01176{height:17.760000pt;}
.hc_c01176{height:20.960000pt;}
.h8_c01176{height:38.066667pt;}
.h10_c01176{height:38.080000pt;}
.h2_c01176{height:42.722500pt;}
.h3_c01176{height:44.648750pt;}
.h11_c01176{height:47.491563pt;}
.hf_c01176{height:47.958438pt;}
.ha_c01176{height:55.506667pt;}
.hb_c01176{height:55.538667pt;}
.h6_c01176{height:57.375000pt;}
.h7_c01176{height:57.781250pt;}
.h5_c01176{height:66.750000pt;}
.hd_c01176{height:66.945937pt;}
.h9_c01176{height:67.604062pt;}
.h4_c01176{height:78.097500pt;}
.h0_c01176{height:1122.560000pt;}
.h1_c01176{height:1122.666667pt;}
.w5_c01176{width:-28.460000pt;}
.w7_c01176{width:19.200000pt;}
.w2_c01176{width:35.666667pt;}
.w6_c01176{width:179.866667pt;}
.w3_c01176{width:188.973333pt;}
.w4_c01176{width:303.866667pt;}
.w0_c01176{width:793.760000pt;}
.w1_c01176{width:794.000000pt;}
.x7_c01176{left:-41.120000pt;}
.x0_c01176{left:0.000000pt;}
.x5_c01176{left:7.186667pt;}
.xa_c01176{left:9.600000pt;}
.x2_c01176{left:113.472000pt;}
.x1_c01176{left:151.066667pt;}
.x9_c01176{left:399.106667pt;}
.x4_c01176{left:454.826667pt;}
.x6_c01176{left:490.506667pt;}
.x8_c01176{left:497.226667pt;}
.x3_c01176{left:658.213333pt;}
}





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

.ir_c01177:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01177;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01177;src:url('chunks/assets/font_7847b58ff63650f6fdcaabf5.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01177;src:url('chunks/assets/font_d18969fd96c52b738f165041.woff2')format("woff");}.ff3_c01177{font-family:ff3_c01177;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01177;src:url('chunks/assets/font_ce345db430159a813e7c14e1.woff2')format("woff");}.ff4_c01177{font-family:ff4_c01177;line-height:1.104492;font-style:normal;font-weight: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_c01177;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01177{font-family:ff5_c01177;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:ff6_c01177;src:url('chunks/assets/font_bdb0c92a603d4ba3b4c2cee4.woff2')format("woff");}.ff6_c01177{font-family:ff6_c01177;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01177{vertical-align:0.000000px;}
.ls2_c01177{letter-spacing:-0.576000px;}
.ls1_c01177{letter-spacing:0.000000px;}
.ls0_c01177{letter-spacing:0.144000px;}
.ls3_c01177{letter-spacing:0.259800px;}
.sc__c01177{text-shadow:none;}
.sc0_c01177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01177{-webkit-text-stroke:0px transparent;}
.sc0_c01177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01177{word-spacing:-16.873080px;}
.ws1_c01177{word-spacing:0.000000px;}
._c_c01177{margin-left:-4.248000px;}
._10_c01177{margin-left:-2.345544px;}
._0_c01177{margin-left:-1.258891px;}
._6_c01177{width:1.128000px;}
._a_c01177{width:2.592000px;}
._b_c01177{width:3.936000px;}
._7_c01177{width:5.544000px;}
._9_c01177{width:7.042891px;}
._8_c01177{width:8.136000px;}
._11_c01177{width:9.144000px;}
._12_c01177{width:10.321109px;}
._5_c01177{width:12.384000px;}
._2_c01177{width:13.536000px;}
._1_c01177{width:14.688000px;}
._f_c01177{width:16.810891px;}
._d_c01177{width:18.504000px;}
._4_c01177{width:40.536000px;}
._3_c01177{width:41.760000px;}
._e_c01177{width:53.424000px;}
.fc0_c01177{color:rgb(0,0,0);}
.fs2_c01177{font-size:59.760000px;}
.fs0_c01177{font-size:66.240000px;}
.fs1_c01177{font-size:72.000000px;}
.y0_c01177{bottom:0.000000px;}
.y24_c01177{bottom:18.360000px;}
.y23_c01177{bottom:35.820000px;}
.y3_c01177{bottom:57.636000px;}
.y2_c01177{bottom:77.796000px;}
.y21_c01177{bottom:344.415000px;}
.y20_c01177{bottom:368.535000px;}
.y1f_c01177{bottom:392.115000px;}
.y1e_c01177{bottom:415.875000px;}
.y1d_c01177{bottom:439.635000px;}
.y1c_c01177{bottom:463.575000px;}
.y1b_c01177{bottom:502.275000px;}
.y1a_c01177{bottom:541.155000px;}
.y19_c01177{bottom:580.065000px;}
.y18_c01177{bottom:603.645000px;}
.y17_c01177{bottom:627.585000px;}
.y16_c01177{bottom:666.285000px;}
.y15_c01177{bottom:705.165000px;}
.y22_c01177{bottom:706.785000px;}
.y14_c01177{bottom:743.865000px;}
.y13_c01177{bottom:782.745000px;}
.y12_c01177{bottom:806.505000px;}
.y11_c01177{bottom:830.265000px;}
.y10_c01177{bottom:854.250000px;}
.yf_c01177{bottom:878.010000px;}
.ye_c01177{bottom:901.770000px;}
.yd_c01177{bottom:925.530000px;}
.yc_c01177{bottom:949.470000px;}
.yb_c01177{bottom:973.410000px;}
.ya_c01177{bottom:997.170000px;}
.y9_c01177{bottom:1020.750000px;}
.y8_c01177{bottom:1044.690000px;}
.y7_c01177{bottom:1068.450000px;}
.y6_c01177{bottom:1092.390000px;}
.y5_c01177{bottom:1116.150000px;}
.y4_c01177{bottom:1139.940000px;}
.y1_c01177{bottom:1194.660000px;}
.h2_c01177{height:48.062812px;}
.h8_c01177{height:49.500000px;}
.h3_c01177{height:50.229844px;}
.h9_c01177{height:53.428008px;}
.h5_c01177{height:64.371094px;}
.h4_c01177{height:64.546875px;}
.h7_c01177{height:65.003906px;}
.h6_c01177{height:75.093750px;}
.h0_c01177{height:1262.880000px;}
.h1_c01177{height:1263.000000px;}
.w2_c01177{width:303.690000px;}
.w0_c01177{width:892.980000px;}
.w1_c01177{width:893.250000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:127.656000px;}
.x2_c01177{left:440.355000px;}
.x3_c01177{left:444.855000px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.ls2_c01177{letter-spacing:-0.512000pt;}
.ls1_c01177{letter-spacing:0.000000pt;}
.ls0_c01177{letter-spacing:0.128000pt;}
.ls3_c01177{letter-spacing:0.230933pt;}
.ws0_c01177{word-spacing:-14.998293pt;}
.ws1_c01177{word-spacing:0.000000pt;}
._c_c01177{margin-left:-3.776000pt;}
._10_c01177{margin-left:-2.084928pt;}
._0_c01177{margin-left:-1.119014pt;}
._6_c01177{width:1.002667pt;}
._a_c01177{width:2.304000pt;}
._b_c01177{width:3.498667pt;}
._7_c01177{width:4.928000pt;}
._9_c01177{width:6.260348pt;}
._8_c01177{width:7.232000pt;}
._11_c01177{width:8.128000pt;}
._12_c01177{width:9.174319pt;}
._5_c01177{width:11.008000pt;}
._2_c01177{width:12.032000pt;}
._1_c01177{width:13.056000pt;}
._f_c01177{width:14.943014pt;}
._d_c01177{width:16.448000pt;}
._4_c01177{width:36.032000pt;}
._3_c01177{width:37.120000pt;}
._e_c01177{width:47.488000pt;}
.fs2_c01177{font-size:53.120000pt;}
.fs0_c01177{font-size:58.880000pt;}
.fs1_c01177{font-size:64.000000pt;}
.y0_c01177{bottom:0.000000pt;}
.y24_c01177{bottom:16.320000pt;}
.y23_c01177{bottom:31.840000pt;}
.y3_c01177{bottom:51.232000pt;}
.y2_c01177{bottom:69.152000pt;}
.y21_c01177{bottom:306.146667pt;}
.y20_c01177{bottom:327.586667pt;}
.y1f_c01177{bottom:348.546667pt;}
.y1e_c01177{bottom:369.666667pt;}
.y1d_c01177{bottom:390.786667pt;}
.y1c_c01177{bottom:412.066667pt;}
.y1b_c01177{bottom:446.466667pt;}
.y1a_c01177{bottom:481.026667pt;}
.y19_c01177{bottom:515.613333pt;}
.y18_c01177{bottom:536.573333pt;}
.y17_c01177{bottom:557.853333pt;}
.y16_c01177{bottom:592.253333pt;}
.y15_c01177{bottom:626.813333pt;}
.y22_c01177{bottom:628.253333pt;}
.y14_c01177{bottom:661.213333pt;}
.y13_c01177{bottom:695.773333pt;}
.y12_c01177{bottom:716.893333pt;}
.y11_c01177{bottom:738.013333pt;}
.y10_c01177{bottom:759.333333pt;}
.yf_c01177{bottom:780.453333pt;}
.ye_c01177{bottom:801.573333pt;}
.yd_c01177{bottom:822.693333pt;}
.yc_c01177{bottom:843.973333pt;}
.yb_c01177{bottom:865.253333pt;}
.ya_c01177{bottom:886.373333pt;}
.y9_c01177{bottom:907.333333pt;}
.y8_c01177{bottom:928.613333pt;}
.y7_c01177{bottom:949.733333pt;}
.y6_c01177{bottom:971.013333pt;}
.y5_c01177{bottom:992.133333pt;}
.y4_c01177{bottom:1013.280000pt;}
.y1_c01177{bottom:1061.920000pt;}
.h2_c01177{height:42.722500pt;}
.h8_c01177{height:44.000000pt;}
.h3_c01177{height:44.648750pt;}
.h9_c01177{height:47.491563pt;}
.h5_c01177{height:57.218750pt;}
.h4_c01177{height:57.375000pt;}
.h7_c01177{height:57.781250pt;}
.h6_c01177{height:66.750000pt;}
.h0_c01177{height:1122.560000pt;}
.h1_c01177{height:1122.666667pt;}
.w2_c01177{width:269.946667pt;}
.w0_c01177{width:793.760000pt;}
.w1_c01177{width:794.000000pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:113.472000pt;}
.x2_c01177{left:391.426667pt;}
.x3_c01177{left:395.426667pt;}
}





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

.ir_c01178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01178;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01178;src:url('chunks/assets/font_fd6a9386fcf0e56c86c3c3d1.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01178;src:url('chunks/assets/font_b3d621665493a141c1c88275.woff2')format("woff");}.ff3_c01178{font-family:ff3_c01178;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01178;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff4_c01178{font-family:ff4_c01178;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:ff5_c01178;src:url('chunks/assets/font_f3115a0e7b0dea243878744c.woff2')format("woff");}.ff5_c01178{font-family:ff5_c01178;line-height:1.113281;font-style:normal;font-weight: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_c01178;src:url('chunks/assets/font_0ab63bba6acac23be40440d2.woff2')format("woff");}.ff6_c01178{font-family:ff6_c01178;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01178{vertical-align:0.000000px;}
.ls2_c01178{letter-spacing:-0.720000px;}
.ls3_c01178{letter-spacing:-0.144000px;}
.ls1_c01178{letter-spacing:0.000000px;}
.ls0_c01178{letter-spacing:0.288000px;}
.sc__c01178{text-shadow:none;}
.sc0_c01178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01178{-webkit-text-stroke:0px transparent;}
.sc0_c01178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01178{word-spacing:-20.304000px;}
.ws2_c01178{word-spacing:-20.016000px;}
.ws0_c01178{word-spacing:-19.872000px;}
.ws3_c01178{word-spacing:0.000000px;}
._d_c01178{margin-left:-5.245492px;}
._b_c01178{margin-left:-3.419254px;}
._6_c01178{margin-left:-2.402317px;}
._0_c01178{margin-left:-1.390841px;}
._3_c01178{width:1.041659px;}
._2_c01178{width:2.088000px;}
._e_c01178{width:3.292683px;}
._f_c01178{width:4.483634px;}
._10_c01178{width:6.408000px;}
._c_c01178{width:9.432000px;}
._4_c01178{width:10.584000px;}
._5_c01178{width:11.595548px;}
._7_c01178{width:21.528000px;}
._9_c01178{width:27.310841px;}
._8_c01178{width:28.512000px;}
._a_c01178{width:30.324000px;}
._1_c01178{width:1539.084000px;}
.fc0_c01178{color:rgb(0,0,0);}
.fs2_c01178{font-size:59.760000px;}
.fs0_c01178{font-size:66.240000px;}
.fs1_c01178{font-size:72.000000px;}
.y0_c01178{bottom:0.000000px;}
.y21_c01178{bottom:4.500000px;}
.y26_c01178{bottom:8.265000px;}
.y23_c01178{bottom:9.720000px;}
.y20_c01178{bottom:21.960000px;}
.y25_c01178{bottom:25.545000px;}
.y1f_c01178{bottom:39.240000px;}
.y4_c01178{bottom:57.636000px;}
.y3_c01178{bottom:77.796000px;}
.y1d_c01178{bottom:160.410000px;}
.y1c_c01178{bottom:184.350000px;}
.y24_c01178{bottom:185.445000px;}
.y1b_c01178{bottom:208.110000px;}
.y1a_c01178{bottom:231.870000px;}
.y19_c01178{bottom:255.810000px;}
.y18_c01178{bottom:279.390000px;}
.y17_c01178{bottom:303.375000px;}
.y16_c01178{bottom:327.135000px;}
.y15_c01178{bottom:350.895000px;}
.y14_c01178{bottom:374.835000px;}
.y13_c01178{bottom:398.595000px;}
.y12_c01178{bottom:422.535000px;}
.y11_c01178{bottom:446.295000px;}
.y10_c01178{bottom:469.875000px;}
.yf_c01178{bottom:493.815000px;}
.ye_c01178{bottom:517.755000px;}
.yd_c01178{bottom:556.275000px;}
.yc_c01178{bottom:580.245000px;}
.yb_c01178{bottom:604.005000px;}
.ya_c01178{bottom:627.765000px;}
.y9_c01178{bottom:651.525000px;}
.y8_c01178{bottom:690.405000px;}
.y7_c01178{bottom:729.105000px;}
.y1e_c01178{bottom:762.945000px;}
.y6_c01178{bottom:767.985000px;}
.y22_c01178{bottom:792.105000px;}
.y5_c01178{bottom:823.605000px;}
.y2_c01178{bottom:1174.320000px;}
.y1_c01178{bottom:1194.660000px;}
.h9_c01178{height:23.580000px;}
.ha_c01178{height:39.240000px;}
.h2_c01178{height:48.062812px;}
.h3_c01178{height:50.229844px;}
.h7_c01178{height:52.920000px;}
.h8_c01178{height:53.428008px;}
.h4_c01178{height:64.546875px;}
.h6_c01178{height:65.003906px;}
.h5_c01178{height:75.093750px;}
.h0_c01178{height:1262.880000px;}
.h1_c01178{height:1263.000000px;}
.w4_c01178{width:134.662500px;}
.w2_c01178{width:217.290000px;}
.w3_c01178{width:398.220000px;}
.w0_c01178{width:892.980000px;}
.w1_c01178{width:893.250000px;}
.x0_c01178{left:0.000000px;}
.x2_c01178{left:127.656000px;}
.x6_c01178{left:141.345000px;}
.x1_c01178{left:169.950000px;}
.x4_c01178{left:363.495000px;}
.x7_c01178{left:367.275000px;}
.x5_c01178{left:568.185000px;}
.x8_c01178{left:630.120000px;}
.x3_c01178{left:740.490000px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.ls2_c01178{letter-spacing:-0.640000pt;}
.ls3_c01178{letter-spacing:-0.128000pt;}
.ls1_c01178{letter-spacing:0.000000pt;}
.ls0_c01178{letter-spacing:0.256000pt;}
.ws1_c01178{word-spacing:-18.048000pt;}
.ws2_c01178{word-spacing:-17.792000pt;}
.ws0_c01178{word-spacing:-17.664000pt;}
.ws3_c01178{word-spacing:0.000000pt;}
._d_c01178{margin-left:-4.662659pt;}
._b_c01178{margin-left:-3.039337pt;}
._6_c01178{margin-left:-2.135393pt;}
._0_c01178{margin-left:-1.236303pt;}
._3_c01178{width:0.925919pt;}
._2_c01178{width:1.856000pt;}
._e_c01178{width:2.926829pt;}
._f_c01178{width:3.985452pt;}
._10_c01178{width:5.696000pt;}
._c_c01178{width:8.384000pt;}
._4_c01178{width:9.408000pt;}
._5_c01178{width:10.307154pt;}
._7_c01178{width:19.136000pt;}
._9_c01178{width:24.276303pt;}
._8_c01178{width:25.344000pt;}
._a_c01178{width:26.954667pt;}
._1_c01178{width:1368.074667pt;}
.fs2_c01178{font-size:53.120000pt;}
.fs0_c01178{font-size:58.880000pt;}
.fs1_c01178{font-size:64.000000pt;}
.y0_c01178{bottom:0.000000pt;}
.y21_c01178{bottom:4.000000pt;}
.y26_c01178{bottom:7.346667pt;}
.y23_c01178{bottom:8.640000pt;}
.y20_c01178{bottom:19.520000pt;}
.y25_c01178{bottom:22.706667pt;}
.y1f_c01178{bottom:34.880000pt;}
.y4_c01178{bottom:51.232000pt;}
.y3_c01178{bottom:69.152000pt;}
.y1d_c01178{bottom:142.586667pt;}
.y1c_c01178{bottom:163.866667pt;}
.y24_c01178{bottom:164.840000pt;}
.y1b_c01178{bottom:184.986667pt;}
.y1a_c01178{bottom:206.106667pt;}
.y19_c01178{bottom:227.386667pt;}
.y18_c01178{bottom:248.346667pt;}
.y17_c01178{bottom:269.666667pt;}
.y16_c01178{bottom:290.786667pt;}
.y15_c01178{bottom:311.906667pt;}
.y14_c01178{bottom:333.186667pt;}
.y13_c01178{bottom:354.306667pt;}
.y12_c01178{bottom:375.586667pt;}
.y11_c01178{bottom:396.706667pt;}
.y10_c01178{bottom:417.666667pt;}
.yf_c01178{bottom:438.946667pt;}
.ye_c01178{bottom:460.226667pt;}
.yd_c01178{bottom:494.466667pt;}
.yc_c01178{bottom:515.773333pt;}
.yb_c01178{bottom:536.893333pt;}
.ya_c01178{bottom:558.013333pt;}
.y9_c01178{bottom:579.133333pt;}
.y8_c01178{bottom:613.693333pt;}
.y7_c01178{bottom:648.093333pt;}
.y1e_c01178{bottom:678.173333pt;}
.y6_c01178{bottom:682.653333pt;}
.y22_c01178{bottom:704.093333pt;}
.y5_c01178{bottom:732.093333pt;}
.y2_c01178{bottom:1043.840000pt;}
.y1_c01178{bottom:1061.920000pt;}
.h9_c01178{height:20.960000pt;}
.ha_c01178{height:34.880000pt;}
.h2_c01178{height:42.722500pt;}
.h3_c01178{height:44.648750pt;}
.h7_c01178{height:47.040000pt;}
.h8_c01178{height:47.491563pt;}
.h4_c01178{height:57.375000pt;}
.h6_c01178{height:57.781250pt;}
.h5_c01178{height:66.750000pt;}
.h0_c01178{height:1122.560000pt;}
.h1_c01178{height:1122.666667pt;}
.w4_c01178{width:119.700000pt;}
.w2_c01178{width:193.146667pt;}
.w3_c01178{width:353.973333pt;}
.w0_c01178{width:793.760000pt;}
.w1_c01178{width:794.000000pt;}
.x0_c01178{left:0.000000pt;}
.x2_c01178{left:113.472000pt;}
.x6_c01178{left:125.640000pt;}
.x1_c01178{left:151.066667pt;}
.x4_c01178{left:323.106667pt;}
.x7_c01178{left:326.466667pt;}
.x5_c01178{left:505.053333pt;}
.x8_c01178{left:560.106667pt;}
.x3_c01178{left:658.213333pt;}
}





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

.ir_c01179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01179;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01179;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01179;src:url('chunks/assets/font_fdf8e9bc595f7f536e6103a1.woff2')format("woff");}.ff3_c01179{font-family:ff3_c01179;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01179;src:url('chunks/assets/font_55be2fa8e178449e3593a5b6.woff2')format("woff");}.ff4_c01179{font-family:ff4_c01179;line-height:1.104492;font-style:normal;font-weight: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_c01179;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01179{font-family:ff5_c01179;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:ff6_c01179;src:url('chunks/assets/font_f7ce28720b4e1e3fd43221d6.woff2')format("woff");}.ff6_c01179{font-family:ff6_c01179;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.ls4_c01179{letter-spacing:-0.720000px;}
.ls2_c01179{letter-spacing:0.000000px;}
.ls3_c01179{letter-spacing:0.144000px;}
.ls1_c01179{letter-spacing:0.216000px;}
.ls5_c01179{letter-spacing:0.288000px;}
.ls0_c01179{letter-spacing:11.664000px;}
.sc__c01179{text-shadow:none;}
.sc0_c01179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01179{-webkit-text-stroke:0px transparent;}
.sc0_c01179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01179{word-spacing:-20.016000px;}
.ws1_c01179{word-spacing:0.000000px;}
._9_c01179{margin-left:-5.474218px;}
._8_c01179{margin-left:-4.248000px;}
._5_c01179{margin-left:-2.406653px;}
._0_c01179{margin-left:-1.258891px;}
._2_c01179{width:1.114891px;}
._a_c01179{width:2.574629px;}
._6_c01179{width:4.104000px;}
._7_c01179{width:6.238891px;}
._1_c01179{width:9.072000px;}
._4_c01179{width:10.728000px;}
._3_c01179{width:12.312000px;}
._b_c01179{width:17.640000px;}
._c_c01179{width:18.684000px;}
.fc0_c01179{color:rgb(0,0,0);}
.fs2_c01179{font-size:59.760000px;}
.fs0_c01179{font-size:66.240000px;}
.fs1_c01179{font-size:72.000000px;}
.y0_c01179{bottom:0.000000px;}
.y21_c01179{bottom:7.905000px;}
.y1d_c01179{bottom:9.720000px;}
.y20_c01179{bottom:25.365000px;}
.y1f_c01179{bottom:42.645000px;}
.y3_c01179{bottom:57.636000px;}
.y2_c01179{bottom:77.796000px;}
.y1e_c01179{bottom:166.365000px;}
.y1b_c01179{bottom:167.610000px;}
.y1a_c01179{bottom:206.490000px;}
.y19_c01179{bottom:245.190000px;}
.y18_c01179{bottom:269.310000px;}
.y17_c01179{bottom:292.935000px;}
.y16_c01179{bottom:316.875000px;}
.y15_c01179{bottom:340.635000px;}
.y14_c01179{bottom:364.575000px;}
.y13_c01179{bottom:388.155000px;}
.y12_c01179{bottom:411.915000px;}
.y11_c01179{bottom:435.675000px;}
.y10_c01179{bottom:474.555000px;}
.yf_c01179{bottom:513.435000px;}
.ye_c01179{bottom:552.135000px;}
.yd_c01179{bottom:575.925000px;}
.yc_c01179{bottom:599.865000px;}
.yb_c01179{bottom:623.805000px;}
.ya_c01179{bottom:647.385000px;}
.y9_c01179{bottom:671.145000px;}
.y8_c01179{bottom:695.265000px;}
.y7_c01179{bottom:719.025000px;}
.y6_c01179{bottom:742.605000px;}
.y5_c01179{bottom:781.485000px;}
.y1c_c01179{bottom:786.705000px;}
.y4_c01179{bottom:816.405000px;}
.y1_c01179{bottom:1194.660000px;}
.h7_c01179{height:23.580000px;}
.h2_c01179{height:48.062812px;}
.h3_c01179{height:50.229844px;}
.h8_c01179{height:53.428008px;}
.h9_c01179{height:56.340000px;}
.h4_c01179{height:64.546875px;}
.h6_c01179{height:65.003906px;}
.h5_c01179{height:75.093750px;}
.h0_c01179{height:1262.880000px;}
.h1_c01179{height:1263.000000px;}
.w3_c01179{width:124.740000px;}
.w2_c01179{width:341.715000px;}
.w0_c01179{width:892.980000px;}
.w1_c01179{width:893.250000px;}
.x0_c01179{left:0.000000px;}
.x1_c01179{left:127.656000px;}
.x5_c01179{left:129.105000px;}
.x4_c01179{left:193.725000px;}
.x3_c01179{left:267.150000px;}
.x2_c01179{left:700.890000px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.ls4_c01179{letter-spacing:-0.640000pt;}
.ls2_c01179{letter-spacing:0.000000pt;}
.ls3_c01179{letter-spacing:0.128000pt;}
.ls1_c01179{letter-spacing:0.192000pt;}
.ls5_c01179{letter-spacing:0.256000pt;}
.ls0_c01179{letter-spacing:10.368000pt;}
.ws0_c01179{word-spacing:-17.792000pt;}
.ws1_c01179{word-spacing:0.000000pt;}
._9_c01179{margin-left:-4.865971pt;}
._8_c01179{margin-left:-3.776000pt;}
._5_c01179{margin-left:-2.139247pt;}
._0_c01179{margin-left:-1.119014pt;}
._2_c01179{width:0.991014pt;}
._a_c01179{width:2.288559pt;}
._6_c01179{width:3.648000pt;}
._7_c01179{width:5.545681pt;}
._1_c01179{width:8.064000pt;}
._4_c01179{width:9.536000pt;}
._3_c01179{width:10.944000pt;}
._b_c01179{width:15.680000pt;}
._c_c01179{width:16.608000pt;}
.fs2_c01179{font-size:53.120000pt;}
.fs0_c01179{font-size:58.880000pt;}
.fs1_c01179{font-size:64.000000pt;}
.y0_c01179{bottom:0.000000pt;}
.y21_c01179{bottom:7.026667pt;}
.y1d_c01179{bottom:8.640000pt;}
.y20_c01179{bottom:22.546667pt;}
.y1f_c01179{bottom:37.906667pt;}
.y3_c01179{bottom:51.232000pt;}
.y2_c01179{bottom:69.152000pt;}
.y1e_c01179{bottom:147.880000pt;}
.y1b_c01179{bottom:148.986667pt;}
.y1a_c01179{bottom:183.546667pt;}
.y19_c01179{bottom:217.946667pt;}
.y18_c01179{bottom:239.386667pt;}
.y17_c01179{bottom:260.386667pt;}
.y16_c01179{bottom:281.666667pt;}
.y15_c01179{bottom:302.786667pt;}
.y14_c01179{bottom:324.066667pt;}
.y13_c01179{bottom:345.026667pt;}
.y12_c01179{bottom:366.146667pt;}
.y11_c01179{bottom:387.266667pt;}
.y10_c01179{bottom:421.826667pt;}
.yf_c01179{bottom:456.386667pt;}
.ye_c01179{bottom:490.786667pt;}
.yd_c01179{bottom:511.933333pt;}
.yc_c01179{bottom:533.213333pt;}
.yb_c01179{bottom:554.493333pt;}
.ya_c01179{bottom:575.453333pt;}
.y9_c01179{bottom:596.573333pt;}
.y8_c01179{bottom:618.013333pt;}
.y7_c01179{bottom:639.133333pt;}
.y6_c01179{bottom:660.093333pt;}
.y5_c01179{bottom:694.653333pt;}
.y1c_c01179{bottom:699.293333pt;}
.y4_c01179{bottom:725.693333pt;}
.y1_c01179{bottom:1061.920000pt;}
.h7_c01179{height:20.960000pt;}
.h2_c01179{height:42.722500pt;}
.h3_c01179{height:44.648750pt;}
.h8_c01179{height:47.491563pt;}
.h9_c01179{height:50.080000pt;}
.h4_c01179{height:57.375000pt;}
.h6_c01179{height:57.781250pt;}
.h5_c01179{height:66.750000pt;}
.h0_c01179{height:1122.560000pt;}
.h1_c01179{height:1122.666667pt;}
.w3_c01179{width:110.880000pt;}
.w2_c01179{width:303.746667pt;}
.w0_c01179{width:793.760000pt;}
.w1_c01179{width:794.000000pt;}
.x0_c01179{left:0.000000pt;}
.x1_c01179{left:113.472000pt;}
.x5_c01179{left:114.760000pt;}
.x4_c01179{left:172.200000pt;}
.x3_c01179{left:237.466667pt;}
.x2_c01179{left:623.013333pt;}
}





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

.ir_c01180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01180;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01180;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01180;src:url('chunks/assets/font_9a89d13b508357389f0638f3.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01180;src:url('chunks/assets/font_b8953e02ec16805fbda51493.woff2')format("woff");}.ff4_c01180{font-family:ff4_c01180;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01180{vertical-align:0.000000px;}
.ls1_c01180{letter-spacing:0.000000px;}
.ls0_c01180{letter-spacing:0.216000px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01180{word-spacing:0.000000px;}
._9_c01180{margin-left:-5.544000px;}
._8_c01180{margin-left:-4.320000px;}
._c_c01180{margin-left:-2.690389px;}
._0_c01180{margin-left:-1.390841px;}
._3_c01180{width:1.884024px;}
._d_c01180{width:3.334841px;}
._7_c01180{width:4.464000px;}
._6_c01180{width:5.760000px;}
._5_c01180{width:9.405659px;}
._4_c01180{width:10.584000px;}
._e_c01180{width:12.129635px;}
._a_c01180{width:24.552000px;}
._b_c01180{width:25.704000px;}
._2_c01180{width:54.144000px;}
._1_c01180{width:55.152000px;}
.fc0_c01180{color:rgb(0,0,0);}
.fs2_c01180{font-size:59.760000px;}
.fs0_c01180{font-size:66.240000px;}
.fs1_c01180{font-size:72.000000px;}
.y1d_c01180{bottom:-10.980000px;}
.y0_c01180{bottom:0.000000px;}
.y26_c01180{bottom:5.565000px;}
.y1c_c01180{bottom:6.480000px;}
.y22_c01180{bottom:6.495000px;}
.y25_c01180{bottom:23.025000px;}
.y21_c01180{bottom:23.955000px;}
.y24_c01180{bottom:40.305000px;}
.y20_c01180{bottom:41.055000px;}
.y4_c01180{bottom:57.636000px;}
.y1f_c01180{bottom:58.335000px;}
.y3_c01180{bottom:77.796000px;}
.y23_c01180{bottom:187.065000px;}
.y1a_c01180{bottom:212.070000px;}
.y19_c01180{bottom:236.010000px;}
.y18_c01180{bottom:259.590000px;}
.y17_c01180{bottom:283.575000px;}
.y16_c01180{bottom:307.515000px;}
.y15_c01180{bottom:331.275000px;}
.y14_c01180{bottom:355.035000px;}
.y13_c01180{bottom:378.795000px;}
.y12_c01180{bottom:402.735000px;}
.y11_c01180{bottom:426.315000px;}
.y10_c01180{bottom:465.195000px;}
.y1e_c01180{bottom:468.240000px;}
.yf_c01180{bottom:503.895000px;}
.ye_c01180{bottom:542.775000px;}
.yd_c01180{bottom:566.745000px;}
.yc_c01180{bottom:590.325000px;}
.yb_c01180{bottom:614.265000px;}
.ya_c01180{bottom:638.205000px;}
.y9_c01180{bottom:661.965000px;}
.y8_c01180{bottom:685.725000px;}
.y7_c01180{bottom:709.305000px;}
.y6_c01180{bottom:748.185000px;}
.y1b_c01180{bottom:761.325000px;}
.y5_c01180{bottom:783.105000px;}
.y2_c01180{bottom:1174.320000px;}
.y1_c01180{bottom:1194.660000px;}
.h5_c01180{height:20.160000px;}
.h2_c01180{height:48.062812px;}
.h3_c01180{height:50.229844px;}
.h6_c01180{height:53.428008px;}
.h8_c01180{height:54.000000px;}
.h4_c01180{height:64.546875px;}
.h7_c01180{height:72.000000px;}
.h0_c01180{height:1262.880000px;}
.h1_c01180{height:1263.000000px;}
.w4_c01180{width:137.160000px;}
.w3_c01180{width:144.022500px;}
.w2_c01180{width:323.880000px;}
.w0_c01180{width:892.980000px;}
.w1_c01180{width:893.250000px;}
.x0_c01180{left:0.000000px;}
.x2_c01180{left:127.656000px;}
.x1_c01180{left:169.950000px;}
.x7_c01180{left:190.665000px;}
.x5_c01180{left:275.070000px;}
.x6_c01180{left:276.150000px;}
.x8_c01180{left:631.560000px;}
.x4_c01180{left:702.150000px;}
.x3_c01180{left:740.490000px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.ls1_c01180{letter-spacing:0.000000pt;}
.ls0_c01180{letter-spacing:0.192000pt;}
.ws0_c01180{word-spacing:0.000000pt;}
._9_c01180{margin-left:-4.928000pt;}
._8_c01180{margin-left:-3.840000pt;}
._c_c01180{margin-left:-2.391457pt;}
._0_c01180{margin-left:-1.236303pt;}
._3_c01180{width:1.674688pt;}
._d_c01180{width:2.964303pt;}
._7_c01180{width:3.968000pt;}
._6_c01180{width:5.120000pt;}
._5_c01180{width:8.360585pt;}
._4_c01180{width:9.408000pt;}
._e_c01180{width:10.781897pt;}
._a_c01180{width:21.824000pt;}
._b_c01180{width:22.848000pt;}
._2_c01180{width:48.128000pt;}
._1_c01180{width:49.024000pt;}
.fs2_c01180{font-size:53.120000pt;}
.fs0_c01180{font-size:58.880000pt;}
.fs1_c01180{font-size:64.000000pt;}
.y1d_c01180{bottom:-9.760000pt;}
.y0_c01180{bottom:0.000000pt;}
.y26_c01180{bottom:4.946667pt;}
.y1c_c01180{bottom:5.760000pt;}
.y22_c01180{bottom:5.773333pt;}
.y25_c01180{bottom:20.466667pt;}
.y21_c01180{bottom:21.293333pt;}
.y24_c01180{bottom:35.826667pt;}
.y20_c01180{bottom:36.493333pt;}
.y4_c01180{bottom:51.232000pt;}
.y1f_c01180{bottom:51.853333pt;}
.y3_c01180{bottom:69.152000pt;}
.y23_c01180{bottom:166.280000pt;}
.y1a_c01180{bottom:188.506667pt;}
.y19_c01180{bottom:209.786667pt;}
.y18_c01180{bottom:230.746667pt;}
.y17_c01180{bottom:252.066667pt;}
.y16_c01180{bottom:273.346667pt;}
.y15_c01180{bottom:294.466667pt;}
.y14_c01180{bottom:315.586667pt;}
.y13_c01180{bottom:336.706667pt;}
.y12_c01180{bottom:357.986667pt;}
.y11_c01180{bottom:378.946667pt;}
.y10_c01180{bottom:413.506667pt;}
.y1e_c01180{bottom:416.213333pt;}
.yf_c01180{bottom:447.906667pt;}
.ye_c01180{bottom:482.466667pt;}
.yd_c01180{bottom:503.773333pt;}
.yc_c01180{bottom:524.733333pt;}
.yb_c01180{bottom:546.013333pt;}
.ya_c01180{bottom:567.293333pt;}
.y9_c01180{bottom:588.413333pt;}
.y8_c01180{bottom:609.533333pt;}
.y7_c01180{bottom:630.493333pt;}
.y6_c01180{bottom:665.053333pt;}
.y1b_c01180{bottom:676.733333pt;}
.y5_c01180{bottom:696.093333pt;}
.y2_c01180{bottom:1043.840000pt;}
.y1_c01180{bottom:1061.920000pt;}
.h5_c01180{height:17.920000pt;}
.h2_c01180{height:42.722500pt;}
.h3_c01180{height:44.648750pt;}
.h6_c01180{height:47.491563pt;}
.h8_c01180{height:48.000000pt;}
.h4_c01180{height:57.375000pt;}
.h7_c01180{height:64.000000pt;}
.h0_c01180{height:1122.560000pt;}
.h1_c01180{height:1122.666667pt;}
.w4_c01180{width:121.920000pt;}
.w3_c01180{width:128.020000pt;}
.w2_c01180{width:287.893333pt;}
.w0_c01180{width:793.760000pt;}
.w1_c01180{width:794.000000pt;}
.x0_c01180{left:0.000000pt;}
.x2_c01180{left:113.472000pt;}
.x1_c01180{left:151.066667pt;}
.x7_c01180{left:169.480000pt;}
.x5_c01180{left:244.506667pt;}
.x6_c01180{left:245.466667pt;}
.x8_c01180{left:561.386667pt;}
.x4_c01180{left:624.133333pt;}
.x3_c01180{left:658.213333pt;}
}





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

.ir_c01181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01181;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01181;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01181;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff3_c01181{font-family:ff3_c01181;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01181;src:url('chunks/assets/font_f7a900378041c9c0baac1ebf.woff2')format("woff");}.ff4_c01181{font-family:ff4_c01181;line-height:1.106934;font-style:normal;font-weight: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_c01181;src:url('chunks/assets/font_7159533e517b6c11d2492da7.woff2')format("woff");}.ff5_c01181{font-family:ff5_c01181;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01181{vertical-align:0.000000px;}
.ls0_c01181{letter-spacing:0.000000px;}
.sc__c01181{text-shadow:none;}
.sc0_c01181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01181{-webkit-text-stroke:0px transparent;}
.sc0_c01181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01181{word-spacing:0.000000px;}
._5_c01181{margin-left:-4.680000px;}
._4_c01181{margin-left:-3.384000px;}
._0_c01181{margin-left:-1.258891px;}
._3_c01181{width:1.117109px;}
._c_c01181{width:2.240698px;}
._8_c01181{width:3.744000px;}
._b_c01181{width:5.616000px;}
._2_c01181{width:6.874891px;}
._1_c01181{width:7.992000px;}
._6_c01181{width:9.084000px;}
._7_c01181{width:11.088000px;}
._d_c01181{width:12.453782px;}
._a_c01181{width:17.362915px;}
._9_c01181{width:18.504000px;}
.fc0_c01181{color:rgb(0,0,0);}
.fs3_c01181{font-size:59.760000px;}
.fs0_c01181{font-size:66.240000px;}
.fs2_c01181{font-size:72.000000px;}
.fs1_c01181{font-size:84.240000px;}
.y0_c01181{bottom:0.000000px;}
.y19_c01181{bottom:29.340000px;}
.y2_c01181{bottom:77.796000px;}
.y17_c01181{bottom:125.136000px;}
.y16_c01181{bottom:148.896000px;}
.y15_c01181{bottom:172.650000px;}
.y14_c01181{bottom:211.530000px;}
.y13_c01181{bottom:235.290000px;}
.y12_c01181{bottom:259.230000px;}
.y11_c01181{bottom:283.035000px;}
.y10_c01181{bottom:306.795000px;}
.yf_c01181{bottom:345.675000px;}
.ye_c01181{bottom:369.435000px;}
.yd_c01181{bottom:393.195000px;}
.yc_c01181{bottom:416.955000px;}
.yb_c01181{bottom:440.895000px;}
.ya_c01181{bottom:464.655000px;}
.y9_c01181{bottom:488.415000px;}
.y8_c01181{bottom:512.175000px;}
.y7_c01181{bottom:536.295000px;}
.y6_c01181{bottom:559.875000px;}
.y5_c01181{bottom:583.665000px;}
.y4_c01181{bottom:607.425000px;}
.y3_c01181{bottom:652.605000px;}
.y18_c01181{bottom:730.185000px;}
.y1_c01181{bottom:1194.660000px;}
.h6_c01181{height:43.200000px;}
.h2_c01181{height:48.062812px;}
.h3_c01181{height:50.229844px;}
.h7_c01181{height:53.428008px;}
.h5_c01181{height:64.546875px;}
.h4_c01181{height:87.859687px;}
.h0_c01181{height:1262.880000px;}
.h1_c01181{height:1263.000000px;}
.w2_c01181{width:477.075000px;}
.w0_c01181{width:892.980000px;}
.w1_c01181{width:893.250000px;}
.x0_c01181{left:0.000000px;}
.x1_c01181{left:127.656000px;}
.x2_c01181{left:196.425000px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.ls0_c01181{letter-spacing:0.000000pt;}
.ws0_c01181{word-spacing:0.000000pt;}
._5_c01181{margin-left:-4.160000pt;}
._4_c01181{margin-left:-3.008000pt;}
._0_c01181{margin-left:-1.119014pt;}
._3_c01181{width:0.992986pt;}
._c_c01181{width:1.991731pt;}
._8_c01181{width:3.328000pt;}
._b_c01181{width:4.992000pt;}
._2_c01181{width:6.111014pt;}
._1_c01181{width:7.104000pt;}
._6_c01181{width:8.074667pt;}
._7_c01181{width:9.856000pt;}
._d_c01181{width:11.070029pt;}
._a_c01181{width:15.433702pt;}
._9_c01181{width:16.448000pt;}
.fs3_c01181{font-size:53.120000pt;}
.fs0_c01181{font-size:58.880000pt;}
.fs2_c01181{font-size:64.000000pt;}
.fs1_c01181{font-size:74.880000pt;}
.y0_c01181{bottom:0.000000pt;}
.y19_c01181{bottom:26.080000pt;}
.y2_c01181{bottom:69.152000pt;}
.y17_c01181{bottom:111.232000pt;}
.y16_c01181{bottom:132.352000pt;}
.y15_c01181{bottom:153.466667pt;}
.y14_c01181{bottom:188.026667pt;}
.y13_c01181{bottom:209.146667pt;}
.y12_c01181{bottom:230.426667pt;}
.y11_c01181{bottom:251.586667pt;}
.y10_c01181{bottom:272.706667pt;}
.yf_c01181{bottom:307.266667pt;}
.ye_c01181{bottom:328.386667pt;}
.yd_c01181{bottom:349.506667pt;}
.yc_c01181{bottom:370.626667pt;}
.yb_c01181{bottom:391.906667pt;}
.ya_c01181{bottom:413.026667pt;}
.y9_c01181{bottom:434.146667pt;}
.y8_c01181{bottom:455.266667pt;}
.y7_c01181{bottom:476.706667pt;}
.y6_c01181{bottom:497.666667pt;}
.y5_c01181{bottom:518.813333pt;}
.y4_c01181{bottom:539.933333pt;}
.y3_c01181{bottom:580.093333pt;}
.y18_c01181{bottom:649.053333pt;}
.y1_c01181{bottom:1061.920000pt;}
.h6_c01181{height:38.400000pt;}
.h2_c01181{height:42.722500pt;}
.h3_c01181{height:44.648750pt;}
.h7_c01181{height:47.491563pt;}
.h5_c01181{height:57.375000pt;}
.h4_c01181{height:78.097500pt;}
.h0_c01181{height:1122.560000pt;}
.h1_c01181{height:1122.666667pt;}
.w2_c01181{width:424.066667pt;}
.w0_c01181{width:793.760000pt;}
.w1_c01181{width:794.000000pt;}
.x0_c01181{left:0.000000pt;}
.x1_c01181{left:113.472000pt;}
.x2_c01181{left:174.600000pt;}
}





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

.ir_c01182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01182;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01182;src:url('chunks/assets/font_6bd82c748232e33526780f3a.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01182;src:url('chunks/assets/font_392763bbf9d5662ac46c4b4c.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01182;src:url('chunks/assets/font_cb930b0f573d0213a860ae08.woff2')format("woff");}.ff4_c01182{font-family:ff4_c01182;line-height:1.575000;font-style:normal;font-weight: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_c01182;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01182{font-family:ff5_c01182;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.ls6_c01182{letter-spacing:-0.292200px;}
.ls3_c01182{letter-spacing:-0.181200px;}
.ls0_c01182{letter-spacing:0.000000px;}
.ls4_c01182{letter-spacing:0.144000px;}
.ls5_c01182{letter-spacing:0.150000px;}
.ls2_c01182{letter-spacing:0.288000px;}
.ls1_c01182{letter-spacing:0.504000px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01182{word-spacing:-21.035520px;}
.ws0_c01182{word-spacing:-20.520000px;}
.ws2_c01182{word-spacing:0.000000px;}
._6_c01182{margin-left:-2.520000px;}
._0_c01182{margin-left:-1.390841px;}
._5_c01182{width:1.004236px;}
._1_c01182{width:2.028024px;}
._c_c01182{width:3.528000px;}
._8_c01182{width:4.680000px;}
._f_c01182{width:5.691764px;}
._e_c01182{width:6.696000px;}
._7_c01182{width:8.064000px;}
._4_c01182{width:9.144000px;}
._3_c01182{width:10.224000px;}
._d_c01182{width:12.024000px;}
._2_c01182{width:13.824000px;}
._b_c01182{width:21.024000px;}
._a_c01182{width:27.936000px;}
._9_c01182{width:29.304000px;}
.fc0_c01182{color:rgb(0,0,0);}
.fs3_c01182{font-size:41.760000px;}
.fs2_c01182{font-size:48.240000px;}
.fs4_c01182{font-size:59.760000px;}
.fs0_c01182{font-size:66.240000px;}
.fs1_c01182{font-size:72.000000px;}
.fs5_c01182{font-size:84.240000px;}
.y0_c01182{bottom:0.000000px;}
.y4_c01182{bottom:57.636000px;}
.y3_c01182{bottom:77.796000px;}
.y2c_c01182{bottom:110.196000px;}
.y2b_c01182{bottom:145.296000px;}
.y2a_c01182{bottom:168.150000px;}
.y29_c01182{bottom:174.090000px;}
.y28_c01182{bottom:188.310000px;}
.y26_c01182{bottom:294.195000px;}
.y27_c01182{bottom:300.135000px;}
.y25_c01182{bottom:318.135000px;}
.y24_c01182{bottom:341.895000px;}
.y23_c01182{bottom:365.655000px;}
.y22_c01182{bottom:389.415000px;}
.y21_c01182{bottom:428.295000px;}
.y20_c01182{bottom:452.055000px;}
.y1f_c01182{bottom:475.815000px;}
.y1e_c01182{bottom:499.755000px;}
.y1d_c01182{bottom:538.455000px;}
.y1c_c01182{bottom:562.215000px;}
.y1b_c01182{bottom:586.185000px;}
.y1a_c01182{bottom:609.945000px;}
.y19_c01182{bottom:633.705000px;}
.y18_c01182{bottom:657.465000px;}
.y17_c01182{bottom:681.405000px;}
.y16_c01182{bottom:705.165000px;}
.y15_c01182{bottom:743.865000px;}
.y14_c01182{bottom:767.805000px;}
.y13_c01182{bottom:791.565000px;}
.y12_c01182{bottom:815.325000px;}
.y11_c01182{bottom:839.085000px;}
.y10_c01182{bottom:863.070000px;}
.yf_c01182{bottom:886.830000px;}
.ye_c01182{bottom:910.590000px;}
.yd_c01182{bottom:949.470000px;}
.yc_c01182{bottom:973.230000px;}
.yb_c01182{bottom:996.990000px;}
.ya_c01182{bottom:1020.750000px;}
.y9_c01182{bottom:1044.690000px;}
.y8_c01182{bottom:1068.450000px;}
.y7_c01182{bottom:1092.210000px;}
.y6_c01182{bottom:1115.970000px;}
.y5_c01182{bottom:1139.940000px;}
.y2_c01182{bottom:1174.320000px;}
.y1_c01182{bottom:1194.660000px;}
.h7_c01182{height:31.666641px;}
.h6_c01182{height:43.246406px;}
.ha_c01182{height:45.316055px;}
.h2_c01182{height:48.062812px;}
.h3_c01182{height:50.229844px;}
.h8_c01182{height:63.763920px;}
.h4_c01182{height:64.546875px;}
.h9_c01182{height:76.054570px;}
.h5_c01182{height:1262.865000px;}
.h0_c01182{height:1262.880000px;}
.h1_c01182{height:1263.000000px;}
.w2_c01182{width:892.957500px;}
.w0_c01182{width:892.980000px;}
.w1_c01182{width:893.250000px;}
.x0_c01182{left:0.000000px;}
.x2_c01182{left:127.656000px;}
.x7_c01182{left:143.316000px;}
.x1_c01182{left:169.950000px;}
.x6_c01182{left:343.695000px;}
.x4_c01182{left:475.072500px;}
.x5_c01182{left:495.105000px;}
.x3_c01182{left:740.490000px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.ls6_c01182{letter-spacing:-0.259733pt;}
.ls3_c01182{letter-spacing:-0.161067pt;}
.ls0_c01182{letter-spacing:0.000000pt;}
.ls4_c01182{letter-spacing:0.128000pt;}
.ls5_c01182{letter-spacing:0.133333pt;}
.ls2_c01182{letter-spacing:0.256000pt;}
.ls1_c01182{letter-spacing:0.448000pt;}
.ws1_c01182{word-spacing:-18.698240pt;}
.ws0_c01182{word-spacing:-18.240000pt;}
.ws2_c01182{word-spacing:0.000000pt;}
._6_c01182{margin-left:-2.240000pt;}
._0_c01182{margin-left:-1.236303pt;}
._5_c01182{width:0.892654pt;}
._1_c01182{width:1.802688pt;}
._c_c01182{width:3.136000pt;}
._8_c01182{width:4.160000pt;}
._f_c01182{width:5.059346pt;}
._e_c01182{width:5.952000pt;}
._7_c01182{width:7.168000pt;}
._4_c01182{width:8.128000pt;}
._3_c01182{width:9.088000pt;}
._d_c01182{width:10.688000pt;}
._2_c01182{width:12.288000pt;}
._b_c01182{width:18.688000pt;}
._a_c01182{width:24.832000pt;}
._9_c01182{width:26.048000pt;}
.fs3_c01182{font-size:37.120000pt;}
.fs2_c01182{font-size:42.880000pt;}
.fs4_c01182{font-size:53.120000pt;}
.fs0_c01182{font-size:58.880000pt;}
.fs1_c01182{font-size:64.000000pt;}
.fs5_c01182{font-size:74.880000pt;}
.y0_c01182{bottom:0.000000pt;}
.y4_c01182{bottom:51.232000pt;}
.y3_c01182{bottom:69.152000pt;}
.y2c_c01182{bottom:97.952000pt;}
.y2b_c01182{bottom:129.152000pt;}
.y2a_c01182{bottom:149.466667pt;}
.y29_c01182{bottom:154.746667pt;}
.y28_c01182{bottom:167.386667pt;}
.y26_c01182{bottom:261.506667pt;}
.y27_c01182{bottom:266.786667pt;}
.y25_c01182{bottom:282.786667pt;}
.y24_c01182{bottom:303.906667pt;}
.y23_c01182{bottom:325.026667pt;}
.y22_c01182{bottom:346.146667pt;}
.y21_c01182{bottom:380.706667pt;}
.y20_c01182{bottom:401.826667pt;}
.y1f_c01182{bottom:422.946667pt;}
.y1e_c01182{bottom:444.226667pt;}
.y1d_c01182{bottom:478.626667pt;}
.y1c_c01182{bottom:499.746667pt;}
.y1b_c01182{bottom:521.053333pt;}
.y1a_c01182{bottom:542.173333pt;}
.y19_c01182{bottom:563.293333pt;}
.y18_c01182{bottom:584.413333pt;}
.y17_c01182{bottom:605.693333pt;}
.y16_c01182{bottom:626.813333pt;}
.y15_c01182{bottom:661.213333pt;}
.y14_c01182{bottom:682.493333pt;}
.y13_c01182{bottom:703.613333pt;}
.y12_c01182{bottom:724.733333pt;}
.y11_c01182{bottom:745.853333pt;}
.y10_c01182{bottom:767.173333pt;}
.yf_c01182{bottom:788.293333pt;}
.ye_c01182{bottom:809.413333pt;}
.yd_c01182{bottom:843.973333pt;}
.yc_c01182{bottom:865.093333pt;}
.yb_c01182{bottom:886.213333pt;}
.ya_c01182{bottom:907.333333pt;}
.y9_c01182{bottom:928.613333pt;}
.y8_c01182{bottom:949.733333pt;}
.y7_c01182{bottom:970.853333pt;}
.y6_c01182{bottom:991.973333pt;}
.y5_c01182{bottom:1013.280000pt;}
.y2_c01182{bottom:1043.840000pt;}
.y1_c01182{bottom:1061.920000pt;}
.h7_c01182{height:28.148125pt;}
.h6_c01182{height:38.441250pt;}
.ha_c01182{height:40.280938pt;}
.h2_c01182{height:42.722500pt;}
.h3_c01182{height:44.648750pt;}
.h8_c01182{height:56.679040pt;}
.h4_c01182{height:57.375000pt;}
.h9_c01182{height:67.604062pt;}
.h5_c01182{height:1122.546667pt;}
.h0_c01182{height:1122.560000pt;}
.h1_c01182{height:1122.666667pt;}
.w2_c01182{width:793.740000pt;}
.w0_c01182{width:793.760000pt;}
.w1_c01182{width:794.000000pt;}
.x0_c01182{left:0.000000pt;}
.x2_c01182{left:113.472000pt;}
.x7_c01182{left:127.392000pt;}
.x1_c01182{left:151.066667pt;}
.x6_c01182{left:305.506667pt;}
.x4_c01182{left:422.286667pt;}
.x5_c01182{left:440.093333pt;}
.x3_c01182{left:658.213333pt;}
}





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

.ir_c01183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01183;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01183;src:url('chunks/assets/font_cd66a8b371d449171745a518.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01183;src:url('chunks/assets/font_356331b4be287e4438bd9869.woff2')format("woff");}.ff3_c01183{font-family:ff3_c01183;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01183;src:url('chunks/assets/font_3cee7f7ba65118ade79e7368.woff2')format("woff");}.ff4_c01183{font-family:ff4_c01183;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01183{vertical-align:0.000000px;}
.ls0_c01183{letter-spacing:0.000000px;}
.sc__c01183{text-shadow:none;}
.sc0_c01183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01183{-webkit-text-stroke:0px transparent;}
.sc0_c01183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01183{word-spacing:0.000000px;}
._0_c01183{margin-left:-1.258891px;}
._7_c01183{width:1.008000px;}
._3_c01183{width:7.776000px;}
._6_c01183{width:9.144000px;}
._5_c01183{width:15.802891px;}
._4_c01183{width:17.352000px;}
._1_c01183{width:43.848000px;}
._8_c01183{width:51.192000px;}
._2_c01183{width:64.872000px;}
.fc0_c01183{color:rgb(0,0,0);}
.fs2_c01183{font-size:59.760000px;}
.fs0_c01183{font-size:66.240000px;}
.fs1_c01183{font-size:72.000000px;}
.y0_c01183{bottom:0.000000px;}
.y3_c01183{bottom:57.636000px;}
.y2_c01183{bottom:77.796000px;}
.y11_c01183{bottom:94.155000px;}
.yf_c01183{bottom:834.045000px;}
.ye_c01183{bottom:871.890000px;}
.y10_c01183{bottom:894.015000px;}
.yd_c01183{bottom:910.590000px;}
.yc_c01183{bottom:949.470000px;}
.yb_c01183{bottom:973.230000px;}
.ya_c01183{bottom:996.990000px;}
.y9_c01183{bottom:1020.750000px;}
.y8_c01183{bottom:1044.690000px;}
.y7_c01183{bottom:1068.450000px;}
.y6_c01183{bottom:1092.210000px;}
.y5_c01183{bottom:1115.970000px;}
.y4_c01183{bottom:1139.940000px;}
.y1_c01183{bottom:1194.660000px;}
.h2_c01183{height:48.062812px;}
.h3_c01183{height:50.229844px;}
.h6_c01183{height:53.428008px;}
.h4_c01183{height:64.546875px;}
.h5_c01183{height:108.000000px;}
.h0_c01183{height:1262.880000px;}
.h1_c01183{height:1263.000000px;}
.w2_c01183{width:371.235000px;}
.w0_c01183{width:892.980000px;}
.w1_c01183{width:893.250000px;}
.x0_c01183{left:0.000000px;}
.x1_c01183{left:127.656000px;}
.x4_c01183{left:132.885000px;}
.x3_c01183{left:515.265000px;}
.x2_c01183{left:516.525000px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls0_c01183{letter-spacing:0.000000pt;}
.ws0_c01183{word-spacing:0.000000pt;}
._0_c01183{margin-left:-1.119014pt;}
._7_c01183{width:0.896000pt;}
._3_c01183{width:6.912000pt;}
._6_c01183{width:8.128000pt;}
._5_c01183{width:14.047014pt;}
._4_c01183{width:15.424000pt;}
._1_c01183{width:38.976000pt;}
._8_c01183{width:45.504000pt;}
._2_c01183{width:57.664000pt;}
.fs2_c01183{font-size:53.120000pt;}
.fs0_c01183{font-size:58.880000pt;}
.fs1_c01183{font-size:64.000000pt;}
.y0_c01183{bottom:0.000000pt;}
.y3_c01183{bottom:51.232000pt;}
.y2_c01183{bottom:69.152000pt;}
.y11_c01183{bottom:83.693333pt;}
.yf_c01183{bottom:741.373333pt;}
.ye_c01183{bottom:775.013333pt;}
.y10_c01183{bottom:794.680000pt;}
.yd_c01183{bottom:809.413333pt;}
.yc_c01183{bottom:843.973333pt;}
.yb_c01183{bottom:865.093333pt;}
.ya_c01183{bottom:886.213333pt;}
.y9_c01183{bottom:907.333333pt;}
.y8_c01183{bottom:928.613333pt;}
.y7_c01183{bottom:949.733333pt;}
.y6_c01183{bottom:970.853333pt;}
.y5_c01183{bottom:991.973333pt;}
.y4_c01183{bottom:1013.280000pt;}
.y1_c01183{bottom:1061.920000pt;}
.h2_c01183{height:42.722500pt;}
.h3_c01183{height:44.648750pt;}
.h6_c01183{height:47.491563pt;}
.h4_c01183{height:57.375000pt;}
.h5_c01183{height:96.000000pt;}
.h0_c01183{height:1122.560000pt;}
.h1_c01183{height:1122.666667pt;}
.w2_c01183{width:329.986667pt;}
.w0_c01183{width:793.760000pt;}
.w1_c01183{width:794.000000pt;}
.x0_c01183{left:0.000000pt;}
.x1_c01183{left:113.472000pt;}
.x4_c01183{left:118.120000pt;}
.x3_c01183{left:458.013333pt;}
.x2_c01183{left:459.133333pt;}
}





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

.ir_c01184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01184;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01184;src:url('chunks/assets/font_949fc26bcf17b85c86fd38c1.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01184;src:url('chunks/assets/font_6422b3d2735c34ab41a96c88.woff2')format("woff");}.ff3_c01184{font-family:ff3_c01184;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01184;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01184{font-family:ff4_c01184;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:ff5_c01184;src:url('chunks/assets/font_253f5afdd9d405659bd5a3f7.woff2')format("woff");}.ff5_c01184{font-family:ff5_c01184;line-height:0.915039;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_af958468a13ad597b189c467.woff2')format("woff");}.ff6_c01184{font-family:ff6_c01184;line-height:1.009766;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff7_c01184{font-family:ff7_c01184;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:ff8_c01184;src:url('chunks/assets/font_5ee3d9bb1578232d4c52f732.woff2')format("woff");}.ff8_c01184{font-family:ff8_c01184;line-height:1.106934;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_d93c2d8173a6390be4935702.woff2')format("woff");}.ff9_c01184{font-family:ff9_c01184;line-height:1.575000;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_91bc1657b7f69178344d7c84.woff2')format("woff");}.ffa_c01184{font-family:ffa_c01184;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01184{vertical-align:0.000000px;}
.ls4_c01184{letter-spacing:-0.540600px;}
.ls6_c01184{letter-spacing:-0.181200px;}
.ls8_c01184{letter-spacing:-0.152400px;}
.ls3_c01184{letter-spacing:-0.072000px;}
.ls7_c01184{letter-spacing:-0.017400px;}
.ls2_c01184{letter-spacing:0.000000px;}
.ls5_c01184{letter-spacing:0.288000px;}
.ls0_c01184{letter-spacing:20.784000px;}
.ls1_c01184{letter-spacing:20.808000px;}
.sc__c01184{text-shadow:none;}
.sc1_c01184{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01184{-webkit-text-stroke:0px transparent;}
.sc1_c01184{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01184{word-spacing:-20.554560px;}
.ws2_c01184{word-spacing:-18.288000px;}
.ws1_c01184{word-spacing:-18.000000px;}
.ws3_c01184{word-spacing:0.000000px;}
._6_c01184{margin-left:-5.458140px;}
._5_c01184{margin-left:-4.034772px;}
._2_c01184{margin-left:-2.695848px;}
._0_c01184{margin-left:-1.390841px;}
._1_c01184{width:1.367061px;}
._4_c01184{width:2.648488px;}
._3_c01184{width:4.119512px;}
._d_c01184{width:6.243696px;}
._b_c01184{width:7.796304px;}
._a_c01184{width:9.432000px;}
._c_c01184{width:11.736000px;}
._e_c01184{width:13.176000px;}
._9_c01184{width:14.472000px;}
._8_c01184{width:15.840000px;}
._f_c01184{width:16.871780px;}
._7_c01184{width:21.672939px;}
.fc1_c01184{color:rgb(238,119,0);}
.fc0_c01184{color:rgb(0,0,0);}
.fs5_c01184{font-size:38.880000px;}
.fs4_c01184{font-size:48.240000px;}
.fs6_c01184{font-size:59.760000px;}
.fs0_c01184{font-size:66.240000px;}
.fs2_c01184{font-size:72.000000px;}
.fs3_c01184{font-size:84.240000px;}
.fs1_c01184{font-size:95.760000px;}
.y0_c01184{bottom:0.000000px;}
.y6_c01184{bottom:5.040000px;}
.ya_c01184{bottom:5.055000px;}
.yf_c01184{bottom:5.220000px;}
.y11_c01184{bottom:5.235000px;}
.yd_c01184{bottom:8.820000px;}
.y8_c01184{bottom:31.140000px;}
.y5_c01184{bottom:31.320000px;}
.yc_c01184{bottom:40.860000px;}
.y2_c01184{bottom:77.796000px;}
.y31_c01184{bottom:109.296000px;}
.y30_c01184{bottom:127.656000px;}
.y2f_c01184{bottom:132.156000px;}
.y2e_c01184{bottom:168.870000px;}
.y2d_c01184{bottom:191.370000px;}
.y2c_c01184{bottom:213.690000px;}
.y2b_c01184{bottom:236.010000px;}
.y2a_c01184{bottom:258.330000px;}
.y29_c01184{bottom:292.935000px;}
.y28_c01184{bottom:315.075000px;}
.y27_c01184{bottom:337.395000px;}
.y26_c01184{bottom:359.715000px;}
.y25_c01184{bottom:382.035000px;}
.y24_c01184{bottom:404.355000px;}
.y23_c01184{bottom:426.675000px;}
.y22_c01184{bottom:448.995000px;}
.y21_c01184{bottom:471.315000px;}
.y20_c01184{bottom:493.635000px;}
.y1f_c01184{bottom:516.135000px;}
.y1e_c01184{bottom:538.455000px;}
.y1d_c01184{bottom:560.775000px;}
.y1b_c01184{bottom:595.185000px;}
.y1c_c01184{bottom:601.125000px;}
.y1a_c01184{bottom:617.505000px;}
.y19_c01184{bottom:639.825000px;}
.y18_c01184{bottom:662.145000px;}
.y17_c01184{bottom:684.465000px;}
.y16_c01184{bottom:706.785000px;}
.y15_c01184{bottom:729.105000px;}
.y14_c01184{bottom:751.425000px;}
.y13_c01184{bottom:773.745000px;}
.y12_c01184{bottom:817.485000px;}
.y10_c01184{bottom:874.755000px;}
.ye_c01184{bottom:874.770000px;}
.yb_c01184{bottom:929.310000px;}
.y9_c01184{bottom:993.375000px;}
.y7_c01184{bottom:993.390000px;}
.y4_c01184{bottom:1047.750000px;}
.y3_c01184{bottom:1131.120000px;}
.y1_c01184{bottom:1194.660000px;}
.h12_c01184{height:34.855313px;}
.h11_c01184{height:43.246406px;}
.h2_c01184{height:48.062812px;}
.h3_c01184{height:50.229844px;}
.h7_c01184{height:52.382812px;}
.h8_c01184{height:54.345000px;}
.h9_c01184{height:54.351000px;}
.ha_c01184{height:54.360000px;}
.h5_c01184{height:54.525000px;}
.hc_c01184{height:54.531000px;}
.hd_c01184{height:54.540000px;}
.h6_c01184{height:63.550195px;}
.h13_c01184{height:63.763920px;}
.hb_c01184{height:64.065000px;}
.hf_c01184{height:64.546875px;}
.h4_c01184{height:69.575625px;}
.he_c01184{height:87.859687px;}
.h10_c01184{height:1262.865000px;}
.h0_c01184{height:1262.880000px;}
.h1_c01184{height:1263.000000px;}
.w3_c01184{width:230.415000px;}
.w4_c01184{width:230.430000px;}
.w2_c01184{width:403.626000px;}
.w5_c01184{width:892.957500px;}
.w0_c01184{width:892.980000px;}
.w1_c01184{width:893.250000px;}
.x0_c01184{left:0.000000px;}
.x4_c01184{left:10.251000px;}
.x5_c01184{left:31.485000px;}
.x3_c01184{left:127.656000px;}
.x9_c01184{left:143.856000px;}
.x1_c01184{left:169.950000px;}
.x6_c01184{left:531.300000px;}
.x7_c01184{left:556.102500px;}
.x8_c01184{left:576.105000px;}
.x2_c01184{left:740.490000px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls4_c01184{letter-spacing:-0.480533pt;}
.ls6_c01184{letter-spacing:-0.161067pt;}
.ls8_c01184{letter-spacing:-0.135467pt;}
.ls3_c01184{letter-spacing:-0.064000pt;}
.ls7_c01184{letter-spacing:-0.015467pt;}
.ls2_c01184{letter-spacing:0.000000pt;}
.ls5_c01184{letter-spacing:0.256000pt;}
.ls0_c01184{letter-spacing:18.474667pt;}
.ls1_c01184{letter-spacing:18.496000pt;}
.ws0_c01184{word-spacing:-18.270720pt;}
.ws2_c01184{word-spacing:-16.256000pt;}
.ws1_c01184{word-spacing:-16.000000pt;}
.ws3_c01184{word-spacing:0.000000pt;}
._6_c01184{margin-left:-4.851680pt;}
._5_c01184{margin-left:-3.586464pt;}
._2_c01184{margin-left:-2.396310pt;}
._0_c01184{margin-left:-1.236303pt;}
._1_c01184{width:1.215165pt;}
._4_c01184{width:2.354212pt;}
._3_c01184{width:3.661788pt;}
._d_c01184{width:5.549952pt;}
._b_c01184{width:6.930048pt;}
._a_c01184{width:8.384000pt;}
._c_c01184{width:10.432000pt;}
._e_c01184{width:11.712000pt;}
._9_c01184{width:12.864000pt;}
._8_c01184{width:14.080000pt;}
._f_c01184{width:14.997138pt;}
._7_c01184{width:19.264835pt;}
.fs5_c01184{font-size:34.560000pt;}
.fs4_c01184{font-size:42.880000pt;}
.fs6_c01184{font-size:53.120000pt;}
.fs0_c01184{font-size:58.880000pt;}
.fs2_c01184{font-size:64.000000pt;}
.fs3_c01184{font-size:74.880000pt;}
.fs1_c01184{font-size:85.120000pt;}
.y0_c01184{bottom:0.000000pt;}
.y6_c01184{bottom:4.480000pt;}
.ya_c01184{bottom:4.493333pt;}
.yf_c01184{bottom:4.640000pt;}
.y11_c01184{bottom:4.653333pt;}
.yd_c01184{bottom:7.840000pt;}
.y8_c01184{bottom:27.680000pt;}
.y5_c01184{bottom:27.840000pt;}
.yc_c01184{bottom:36.320000pt;}
.y2_c01184{bottom:69.152000pt;}
.y31_c01184{bottom:97.152000pt;}
.y30_c01184{bottom:113.472000pt;}
.y2f_c01184{bottom:117.472000pt;}
.y2e_c01184{bottom:150.106667pt;}
.y2d_c01184{bottom:170.106667pt;}
.y2c_c01184{bottom:189.946667pt;}
.y2b_c01184{bottom:209.786667pt;}
.y2a_c01184{bottom:229.626667pt;}
.y29_c01184{bottom:260.386667pt;}
.y28_c01184{bottom:280.066667pt;}
.y27_c01184{bottom:299.906667pt;}
.y26_c01184{bottom:319.746667pt;}
.y25_c01184{bottom:339.586667pt;}
.y24_c01184{bottom:359.426667pt;}
.y23_c01184{bottom:379.266667pt;}
.y22_c01184{bottom:399.106667pt;}
.y21_c01184{bottom:418.946667pt;}
.y20_c01184{bottom:438.786667pt;}
.y1f_c01184{bottom:458.786667pt;}
.y1e_c01184{bottom:478.626667pt;}
.y1d_c01184{bottom:498.466667pt;}
.y1b_c01184{bottom:529.053333pt;}
.y1c_c01184{bottom:534.333333pt;}
.y1a_c01184{bottom:548.893333pt;}
.y19_c01184{bottom:568.733333pt;}
.y18_c01184{bottom:588.573333pt;}
.y17_c01184{bottom:608.413333pt;}
.y16_c01184{bottom:628.253333pt;}
.y15_c01184{bottom:648.093333pt;}
.y14_c01184{bottom:667.933333pt;}
.y13_c01184{bottom:687.773333pt;}
.y12_c01184{bottom:726.653333pt;}
.y10_c01184{bottom:777.560000pt;}
.ye_c01184{bottom:777.573333pt;}
.yb_c01184{bottom:826.053333pt;}
.y9_c01184{bottom:883.000000pt;}
.y7_c01184{bottom:883.013333pt;}
.y4_c01184{bottom:931.333333pt;}
.y3_c01184{bottom:1005.440000pt;}
.y1_c01184{bottom:1061.920000pt;}
.h12_c01184{height:30.982500pt;}
.h11_c01184{height:38.441250pt;}
.h2_c01184{height:42.722500pt;}
.h3_c01184{height:44.648750pt;}
.h7_c01184{height:46.562500pt;}
.h8_c01184{height:48.306667pt;}
.h9_c01184{height:48.312000pt;}
.ha_c01184{height:48.320000pt;}
.h5_c01184{height:48.466667pt;}
.hc_c01184{height:48.472000pt;}
.hd_c01184{height:48.480000pt;}
.h6_c01184{height:56.489062pt;}
.h13_c01184{height:56.679040pt;}
.hb_c01184{height:56.946667pt;}
.hf_c01184{height:57.375000pt;}
.h4_c01184{height:61.845000pt;}
.he_c01184{height:78.097500pt;}
.h10_c01184{height:1122.546667pt;}
.h0_c01184{height:1122.560000pt;}
.h1_c01184{height:1122.666667pt;}
.w3_c01184{width:204.813333pt;}
.w4_c01184{width:204.826667pt;}
.w2_c01184{width:358.778667pt;}
.w5_c01184{width:793.740000pt;}
.w0_c01184{width:793.760000pt;}
.w1_c01184{width:794.000000pt;}
.x0_c01184{left:0.000000pt;}
.x4_c01184{left:9.112000pt;}
.x5_c01184{left:27.986667pt;}
.x3_c01184{left:113.472000pt;}
.x9_c01184{left:127.872000pt;}
.x1_c01184{left:151.066667pt;}
.x6_c01184{left:472.266667pt;}
.x7_c01184{left:494.313333pt;}
.x8_c01184{left:512.093333pt;}
.x2_c01184{left:658.213333pt;}
}





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

.ir_c01185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01185;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01185;src:url('chunks/assets/font_2dc50ceea5ec127359966749.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01185;src:url('chunks/assets/font_57e72b81dc466be2170956c3.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01185;src:url('chunks/assets/font_ab195af16577336a5b385fc6.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01185;src:url('chunks/assets/font_4b7c7ee126bf5473294e330f.woff2')format("woff");}.ff5_c01185{font-family:ff5_c01185;line-height:1.181152;font-style:normal;font-weight: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_c01185;src:url('chunks/assets/font_193a86e88fc9962749cabcfd.woff2')format("woff");}.ff6_c01185{font-family:ff6_c01185;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01185{vertical-align:0.000000px;}
.ls7_c01185{letter-spacing:-0.272400px;}
.ls5_c01185{letter-spacing:-0.181200px;}
.ls8_c01185{letter-spacing:-0.106800px;}
.ls4_c01185{letter-spacing:0.000000px;}
.ls0_c01185{letter-spacing:0.144000px;}
.ls6_c01185{letter-spacing:0.150000px;}
.ls3_c01185{letter-spacing:0.152400px;}
.ls2_c01185{letter-spacing:0.205680px;}
.ls1_c01185{letter-spacing:0.894240px;}
.sc__c01185{text-shadow:none;}
.sc0_c01185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01185{-webkit-text-stroke:0px transparent;}
.sc0_c01185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01185{word-spacing:-21.187920px;}
.ws1_c01185{word-spacing:0.000000px;}
._a_c01185{margin-left:-5.811350px;}
._6_c01185{margin-left:-4.052650px;}
._5_c01185{margin-left:-2.378218px;}
._0_c01185{margin-left:-1.258891px;}
._2_c01185{width:1.643976px;}
._9_c01185{width:3.610915px;}
._1_c01185{width:5.112000px;}
._b_c01185{width:6.984000px;}
._8_c01185{width:11.299565px;}
._7_c01185{width:12.456000px;}
._4_c01185{width:28.584000px;}
._3_c01185{width:29.664000px;}
._c_c01185{width:1307.964000px;}
.fc0_c01185{color:rgb(0,0,0);}
.fs3_c01185{font-size:38.880000px;}
.fs2_c01185{font-size:48.240000px;}
.fs4_c01185{font-size:59.760000px;}
.fs0_c01185{font-size:66.240000px;}
.fs1_c01185{font-size:72.000000px;}
.y0_c01185{bottom:0.000000px;}
.y2a_c01185{bottom:7.050000px;}
.y2c_c01185{bottom:24.330000px;}
.y29_c01185{bottom:24.510000px;}
.y4_c01185{bottom:57.636000px;}
.y3_c01185{bottom:77.796000px;}
.y27_c01185{bottom:122.976000px;}
.y26_c01185{bottom:142.416000px;}
.y25_c01185{bottom:162.930000px;}
.y24_c01185{bottom:168.150000px;}
.y23_c01185{bottom:182.730000px;}
.y22_c01185{bottom:257.430000px;}
.y2b_c01185{bottom:279.225000px;}
.y28_c01185{bottom:279.405000px;}
.y21_c01185{bottom:292.035000px;}
.y20_c01185{bottom:322.455000px;}
.y1f_c01185{bottom:569.625000px;}
.y1e_c01185{bottom:591.765000px;}
.y1d_c01185{bottom:614.085000px;}
.y1c_c01185{bottom:636.405000px;}
.y1b_c01185{bottom:658.725000px;}
.y1a_c01185{bottom:681.045000px;}
.y19_c01185{bottom:703.365000px;}
.y18_c01185{bottom:725.685000px;}
.y17_c01185{bottom:748.005000px;}
.y16_c01185{bottom:770.325000px;}
.y15_c01185{bottom:792.645000px;}
.y14_c01185{bottom:815.145000px;}
.y12_c01185{bottom:849.570000px;}
.y13_c01185{bottom:855.510000px;}
.y11_c01185{bottom:871.710000px;}
.y10_c01185{bottom:894.210000px;}
.yf_c01185{bottom:916.530000px;}
.ye_c01185{bottom:938.850000px;}
.yd_c01185{bottom:961.170000px;}
.yc_c01185{bottom:983.490000px;}
.yb_c01185{bottom:1005.810000px;}
.ya_c01185{bottom:1028.130000px;}
.y9_c01185{bottom:1050.450000px;}
.y8_c01185{bottom:1072.770000px;}
.y7_c01185{bottom:1095.090000px;}
.y6_c01185{bottom:1117.410000px;}
.y5_c01185{bottom:1139.940000px;}
.y2_c01185{bottom:1174.320000px;}
.y1_c01185{bottom:1194.660000px;}
.h7_c01185{height:29.482734px;}
.h9_c01185{height:38.182500px;}
.h6_c01185{height:43.246406px;}
.h2_c01185{height:48.062812px;}
.h3_c01185{height:50.229844px;}
.ha_c01185{height:53.428008px;}
.h8_c01185{height:63.763920px;}
.h4_c01185{height:64.546875px;}
.h5_c01185{height:1262.865000px;}
.h0_c01185{height:1262.880000px;}
.h1_c01185{height:1263.000000px;}
.w3_c01185{width:262.110000px;}
.w4_c01185{width:285.735000px;}
.w2_c01185{width:892.957500px;}
.w0_c01185{width:892.980000px;}
.w1_c01185{width:893.250000px;}
.x0_c01185{left:0.000000px;}
.x1_c01185{left:127.656000px;}
.x7_c01185{left:142.236000px;}
.x6_c01185{left:343.695000px;}
.x4_c01185{left:421.275000px;}
.x8_c01185{left:426.495000px;}
.x2_c01185{left:553.942500px;}
.x3_c01185{left:573.945000px;}
.x5_c01185{left:725.730000px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.ls7_c01185{letter-spacing:-0.242133pt;}
.ls5_c01185{letter-spacing:-0.161067pt;}
.ls8_c01185{letter-spacing:-0.094933pt;}
.ls4_c01185{letter-spacing:0.000000pt;}
.ls0_c01185{letter-spacing:0.128000pt;}
.ls6_c01185{letter-spacing:0.133333pt;}
.ls3_c01185{letter-spacing:0.135467pt;}
.ls2_c01185{letter-spacing:0.182827pt;}
.ls1_c01185{letter-spacing:0.794880pt;}
.ws0_c01185{word-spacing:-18.833707pt;}
.ws1_c01185{word-spacing:0.000000pt;}
._a_c01185{margin-left:-5.165645pt;}
._6_c01185{margin-left:-3.602355pt;}
._5_c01185{margin-left:-2.113971pt;}
._0_c01185{margin-left:-1.119014pt;}
._2_c01185{width:1.461312pt;}
._9_c01185{width:3.209702pt;}
._1_c01185{width:4.544000pt;}
._b_c01185{width:6.208000pt;}
._8_c01185{width:10.044058pt;}
._7_c01185{width:11.072000pt;}
._4_c01185{width:25.408000pt;}
._3_c01185{width:26.368000pt;}
._c_c01185{width:1162.634667pt;}
.fs3_c01185{font-size:34.560000pt;}
.fs2_c01185{font-size:42.880000pt;}
.fs4_c01185{font-size:53.120000pt;}
.fs0_c01185{font-size:58.880000pt;}
.fs1_c01185{font-size:64.000000pt;}
.y0_c01185{bottom:0.000000pt;}
.y2a_c01185{bottom:6.266667pt;}
.y2c_c01185{bottom:21.626667pt;}
.y29_c01185{bottom:21.786667pt;}
.y4_c01185{bottom:51.232000pt;}
.y3_c01185{bottom:69.152000pt;}
.y27_c01185{bottom:109.312000pt;}
.y26_c01185{bottom:126.592000pt;}
.y25_c01185{bottom:144.826667pt;}
.y24_c01185{bottom:149.466667pt;}
.y23_c01185{bottom:162.426667pt;}
.y22_c01185{bottom:228.826667pt;}
.y2b_c01185{bottom:248.200000pt;}
.y28_c01185{bottom:248.360000pt;}
.y21_c01185{bottom:259.586667pt;}
.y20_c01185{bottom:286.626667pt;}
.y1f_c01185{bottom:506.333333pt;}
.y1e_c01185{bottom:526.013333pt;}
.y1d_c01185{bottom:545.853333pt;}
.y1c_c01185{bottom:565.693333pt;}
.y1b_c01185{bottom:585.533333pt;}
.y1a_c01185{bottom:605.373333pt;}
.y19_c01185{bottom:625.213333pt;}
.y18_c01185{bottom:645.053333pt;}
.y17_c01185{bottom:664.893333pt;}
.y16_c01185{bottom:684.733333pt;}
.y15_c01185{bottom:704.573333pt;}
.y14_c01185{bottom:724.573333pt;}
.y12_c01185{bottom:755.173333pt;}
.y13_c01185{bottom:760.453333pt;}
.y11_c01185{bottom:774.853333pt;}
.y10_c01185{bottom:794.853333pt;}
.yf_c01185{bottom:814.693333pt;}
.ye_c01185{bottom:834.533333pt;}
.yd_c01185{bottom:854.373333pt;}
.yc_c01185{bottom:874.213333pt;}
.yb_c01185{bottom:894.053333pt;}
.ya_c01185{bottom:913.893333pt;}
.y9_c01185{bottom:933.733333pt;}
.y8_c01185{bottom:953.573333pt;}
.y7_c01185{bottom:973.413333pt;}
.y6_c01185{bottom:993.253333pt;}
.y5_c01185{bottom:1013.280000pt;}
.y2_c01185{bottom:1043.840000pt;}
.y1_c01185{bottom:1061.920000pt;}
.h7_c01185{height:26.206875pt;}
.h9_c01185{height:33.940000pt;}
.h6_c01185{height:38.441250pt;}
.h2_c01185{height:42.722500pt;}
.h3_c01185{height:44.648750pt;}
.ha_c01185{height:47.491563pt;}
.h8_c01185{height:56.679040pt;}
.h4_c01185{height:57.375000pt;}
.h5_c01185{height:1122.546667pt;}
.h0_c01185{height:1122.560000pt;}
.h1_c01185{height:1122.666667pt;}
.w3_c01185{width:232.986667pt;}
.w4_c01185{width:253.986667pt;}
.w2_c01185{width:793.740000pt;}
.w0_c01185{width:793.760000pt;}
.w1_c01185{width:794.000000pt;}
.x0_c01185{left:0.000000pt;}
.x1_c01185{left:113.472000pt;}
.x7_c01185{left:126.432000pt;}
.x6_c01185{left:305.506667pt;}
.x4_c01185{left:374.466667pt;}
.x8_c01185{left:379.106667pt;}
.x2_c01185{left:492.393333pt;}
.x3_c01185{left:510.173333pt;}
.x5_c01185{left:645.093333pt;}
}





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

.ir_c01186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01186;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01186;src:url('chunks/assets/font_81742ec25d656e87e14d5476.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01186;src:url('chunks/assets/font_f766904cf78f6c071c7556b4.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01186;src:url('chunks/assets/font_a1f1251f198ce1cd436e2e15.woff2')format("woff");}.ff4_c01186{font-family:ff4_c01186;line-height:0.767578;font-style:normal;font-weight: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_c01186;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff5_c01186{font-family:ff5_c01186;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:ff6_c01186;src:url('chunks/assets/font_a3ad9cafcead0c8406098a9d.woff2')format("woff");}.ff6_c01186{font-family:ff6_c01186;line-height:1.575000;font-style:normal;font-weight: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_c01186;src:url('chunks/assets/font_51a235e53bceb5f86569f994.woff2')format("woff");}.ff7_c01186{font-family:ff7_c01186;line-height:1.181152;font-style:normal;font-weight: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_c01186;src:url('chunks/assets/font_1f648ab651adb344a7a6ba09.woff2')format("woff");}.ff8_c01186{font-family:ff8_c01186;line-height:1.211914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01186{vertical-align:0.000000px;}
.ls8_c01186{letter-spacing:-0.247800px;}
.ls6_c01186{letter-spacing:-0.181200px;}
.ls5_c01186{letter-spacing:-0.144000px;}
.ls4_c01186{letter-spacing:0.000000px;}
.ls1_c01186{letter-spacing:0.144000px;}
.ls7_c01186{letter-spacing:0.150000px;}
.ls3_c01186{letter-spacing:0.152400px;}
.ls0_c01186{letter-spacing:0.288000px;}
.ls2_c01186{letter-spacing:6.300480px;}
.sc__c01186{text-shadow:none;}
.sc0_c01186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01186{-webkit-text-stroke:0px transparent;}
.sc0_c01186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01186{word-spacing:-21.187920px;}
.ws0_c01186{word-spacing:-19.872000px;}
.ws2_c01186{word-spacing:0.000000px;}
._3_c01186{margin-left:-5.184000px;}
._2_c01186{margin-left:-3.816000px;}
._8_c01186{margin-left:-2.635148px;}
._0_c01186{margin-left:-1.390841px;}
._1_c01186{width:1.367061px;}
._9_c01186{width:2.424523px;}
._4_c01186{width:3.432000px;}
._5_c01186{width:4.476915px;}
._d_c01186{width:5.566841px;}
._c_c01186{width:6.840000px;}
._e_c01186{width:8.208000px;}
._b_c01186{width:9.599976px;}
._a_c01186{width:11.424024px;}
._f_c01186{width:13.152024px;}
._7_c01186{width:25.067828px;}
._6_c01186{width:26.856000px;}
.fc1_c01186{color:rgb(68,84,106);}
.fc0_c01186{color:rgb(0,0,0);}
.fs5_c01186{font-size:38.880000px;}
.fs2_c01186{font-size:48.240000px;}
.fs3_c01186{font-size:54.000000px;}
.fs6_c01186{font-size:59.760000px;}
.fs0_c01186{font-size:66.240000px;}
.fs1_c01186{font-size:72.000000px;}
.fs4_c01186{font-size:84.240000px;}
.y0_c01186{bottom:0.000000px;}
.y4_c01186{bottom:57.636000px;}
.y3_c01186{bottom:77.796000px;}
.y34_c01186{bottom:109.296000px;}
.y33_c01186{bottom:127.476000px;}
.y32_c01186{bottom:132.696000px;}
.y31_c01186{bottom:145.656000px;}
.y30_c01186{bottom:164.010000px;}
.y2f_c01186{bottom:169.230000px;}
.y2e_c01186{bottom:183.810000px;}
.y2d_c01186{bottom:291.675000px;}
.y2c_c01186{bottom:313.995000px;}
.y2b_c01186{bottom:336.315000px;}
.y2a_c01186{bottom:358.635000px;}
.y29_c01186{bottom:380.955000px;}
.y27_c01186{bottom:403.275000px;}
.y28_c01186{bottom:409.215000px;}
.y26_c01186{bottom:425.775000px;}
.y25_c01186{bottom:448.095000px;}
.y24_c01186{bottom:470.415000px;}
.y23_c01186{bottom:491.835000px;}
.y22_c01186{bottom:513.975000px;}
.y21_c01186{bottom:551.055000px;}
.y20_c01186{bottom:586.725000px;}
.y1f_c01186{bottom:607.425000px;}
.y1e_c01186{bottom:628.125000px;}
.y1d_c01186{bottom:648.825000px;}
.y1c_c01186{bottom:669.525000px;}
.y1b_c01186{bottom:690.225000px;}
.y1a_c01186{bottom:710.925000px;}
.y19_c01186{bottom:731.625000px;}
.y18_c01186{bottom:752.325000px;}
.y17_c01186{bottom:773.025000px;}
.y16_c01186{bottom:793.725000px;}
.y15_c01186{bottom:814.425000px;}
.y13_c01186{bottom:850.110000px;}
.y14_c01186{bottom:856.050000px;}
.y12_c01186{bottom:870.990000px;}
.y11_c01186{bottom:891.690000px;}
.y10_c01186{bottom:912.390000px;}
.yf_c01186{bottom:933.090000px;}
.ye_c01186{bottom:953.790000px;}
.yd_c01186{bottom:974.490000px;}
.yc_c01186{bottom:995.190000px;}
.yb_c01186{bottom:1015.890000px;}
.ya_c01186{bottom:1036.590000px;}
.y9_c01186{bottom:1057.290000px;}
.y8_c01186{bottom:1077.990000px;}
.y7_c01186{bottom:1098.690000px;}
.y6_c01186{bottom:1119.390000px;}
.y5_c01186{bottom:1140.120000px;}
.y2_c01186{bottom:1174.320000px;}
.y1_c01186{bottom:1194.660000px;}
.h8_c01186{height:41.484960px;}
.h6_c01186{height:43.246406px;}
.h2_c01186{height:48.062812px;}
.h3_c01186{height:50.229844px;}
.h9_c01186{height:63.763920px;}
.h4_c01186{height:64.546875px;}
.h7_c01186{height:87.859687px;}
.h5_c01186{height:1262.865000px;}
.h0_c01186{height:1262.880000px;}
.h1_c01186{height:1263.000000px;}
.w2_c01186{width:892.957500px;}
.w0_c01186{width:892.980000px;}
.w1_c01186{width:893.250000px;}
.x0_c01186{left:0.000000px;}
.x2_c01186{left:127.656000px;}
.x9_c01186{left:146.016000px;}
.x1_c01186{left:169.950000px;}
.x6_c01186{left:284.227500px;}
.x7_c01186{left:304.275000px;}
.x8_c01186{left:343.695000px;}
.x4_c01186{left:643.942500px;}
.x5_c01186{left:663.945000px;}
.x3_c01186{left:740.490000px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls8_c01186{letter-spacing:-0.220267pt;}
.ls6_c01186{letter-spacing:-0.161067pt;}
.ls5_c01186{letter-spacing:-0.128000pt;}
.ls4_c01186{letter-spacing:0.000000pt;}
.ls1_c01186{letter-spacing:0.128000pt;}
.ls7_c01186{letter-spacing:0.133333pt;}
.ls3_c01186{letter-spacing:0.135467pt;}
.ls0_c01186{letter-spacing:0.256000pt;}
.ls2_c01186{letter-spacing:5.600427pt;}
.ws1_c01186{word-spacing:-18.833707pt;}
.ws0_c01186{word-spacing:-17.664000pt;}
.ws2_c01186{word-spacing:0.000000pt;}
._3_c01186{margin-left:-4.608000pt;}
._2_c01186{margin-left:-3.392000pt;}
._8_c01186{margin-left:-2.342354pt;}
._0_c01186{margin-left:-1.236303pt;}
._1_c01186{width:1.215165pt;}
._9_c01186{width:2.155132pt;}
._4_c01186{width:3.050667pt;}
._5_c01186{width:3.979480pt;}
._d_c01186{width:4.948303pt;}
._c_c01186{width:6.080000pt;}
._e_c01186{width:7.296000pt;}
._b_c01186{width:8.533312pt;}
._a_c01186{width:10.154688pt;}
._f_c01186{width:11.690688pt;}
._7_c01186{width:22.282514pt;}
._6_c01186{width:23.872000pt;}
.fs5_c01186{font-size:34.560000pt;}
.fs2_c01186{font-size:42.880000pt;}
.fs3_c01186{font-size:48.000000pt;}
.fs6_c01186{font-size:53.120000pt;}
.fs0_c01186{font-size:58.880000pt;}
.fs1_c01186{font-size:64.000000pt;}
.fs4_c01186{font-size:74.880000pt;}
.y0_c01186{bottom:0.000000pt;}
.y4_c01186{bottom:51.232000pt;}
.y3_c01186{bottom:69.152000pt;}
.y34_c01186{bottom:97.152000pt;}
.y33_c01186{bottom:113.312000pt;}
.y32_c01186{bottom:117.952000pt;}
.y31_c01186{bottom:129.472000pt;}
.y30_c01186{bottom:145.786667pt;}
.y2f_c01186{bottom:150.426667pt;}
.y2e_c01186{bottom:163.386667pt;}
.y2d_c01186{bottom:259.266667pt;}
.y2c_c01186{bottom:279.106667pt;}
.y2b_c01186{bottom:298.946667pt;}
.y2a_c01186{bottom:318.786667pt;}
.y29_c01186{bottom:338.626667pt;}
.y27_c01186{bottom:358.466667pt;}
.y28_c01186{bottom:363.746667pt;}
.y26_c01186{bottom:378.466667pt;}
.y25_c01186{bottom:398.306667pt;}
.y24_c01186{bottom:418.146667pt;}
.y23_c01186{bottom:437.186667pt;}
.y22_c01186{bottom:456.866667pt;}
.y21_c01186{bottom:489.826667pt;}
.y20_c01186{bottom:521.533333pt;}
.y1f_c01186{bottom:539.933333pt;}
.y1e_c01186{bottom:558.333333pt;}
.y1d_c01186{bottom:576.733333pt;}
.y1c_c01186{bottom:595.133333pt;}
.y1b_c01186{bottom:613.533333pt;}
.y1a_c01186{bottom:631.933333pt;}
.y19_c01186{bottom:650.333333pt;}
.y18_c01186{bottom:668.733333pt;}
.y17_c01186{bottom:687.133333pt;}
.y16_c01186{bottom:705.533333pt;}
.y15_c01186{bottom:723.933333pt;}
.y13_c01186{bottom:755.653333pt;}
.y14_c01186{bottom:760.933333pt;}
.y12_c01186{bottom:774.213333pt;}
.y11_c01186{bottom:792.613333pt;}
.y10_c01186{bottom:811.013333pt;}
.yf_c01186{bottom:829.413333pt;}
.ye_c01186{bottom:847.813333pt;}
.yd_c01186{bottom:866.213333pt;}
.yc_c01186{bottom:884.613333pt;}
.yb_c01186{bottom:903.013333pt;}
.ya_c01186{bottom:921.413333pt;}
.y9_c01186{bottom:939.813333pt;}
.y8_c01186{bottom:958.213333pt;}
.y7_c01186{bottom:976.613333pt;}
.y6_c01186{bottom:995.013333pt;}
.y5_c01186{bottom:1013.440000pt;}
.y2_c01186{bottom:1043.840000pt;}
.y1_c01186{bottom:1061.920000pt;}
.h8_c01186{height:36.875520pt;}
.h6_c01186{height:38.441250pt;}
.h2_c01186{height:42.722500pt;}
.h3_c01186{height:44.648750pt;}
.h9_c01186{height:56.679040pt;}
.h4_c01186{height:57.375000pt;}
.h7_c01186{height:78.097500pt;}
.h5_c01186{height:1122.546667pt;}
.h0_c01186{height:1122.560000pt;}
.h1_c01186{height:1122.666667pt;}
.w2_c01186{width:793.740000pt;}
.w0_c01186{width:793.760000pt;}
.w1_c01186{width:794.000000pt;}
.x0_c01186{left:0.000000pt;}
.x2_c01186{left:113.472000pt;}
.x9_c01186{left:129.792000pt;}
.x1_c01186{left:151.066667pt;}
.x6_c01186{left:252.646667pt;}
.x7_c01186{left:270.466667pt;}
.x8_c01186{left:305.506667pt;}
.x4_c01186{left:572.393333pt;}
.x5_c01186{left:590.173333pt;}
.x3_c01186{left:658.213333pt;}
}





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

.ir_c01187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01187;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01187;src:url('chunks/assets/font_e67e574997b0df8983c44159.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01187;src:url('chunks/assets/font_4065a79b77a887283362970f.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01187;src:url('chunks/assets/font_10643eeaf1eaa7b5a2c6a93c.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:1.575000;font-style:normal;font-weight: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_c01187;src:url('chunks/assets/font_ea17084b7df6574fcb57e194.woff2')format("woff");}.ff5_c01187{font-family:ff5_c01187;line-height:1.181152;font-style:normal;font-weight: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_c01187;src:url('chunks/assets/font_abb7d49f803a19cc1315af7e.woff2')format("woff");}.ff6_c01187{font-family:ff6_c01187;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01187{vertical-align:0.000000px;}
.ls2_c01187{letter-spacing:-0.432000px;}
.ls5_c01187{letter-spacing:-0.292200px;}
.ls3_c01187{letter-spacing:-0.181200px;}
.ls1_c01187{letter-spacing:0.000000px;}
.ls4_c01187{letter-spacing:0.150000px;}
.ls6_c01187{letter-spacing:0.567600px;}
.ls0_c01187{letter-spacing:4.469760px;}
.sc__c01187{text-shadow:none;}
.sc0_c01187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01187{-webkit-text-stroke:0px transparent;}
.sc0_c01187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01187{word-spacing:-19.584000px;}
.ws1_c01187{word-spacing:0.000000px;}
._7_c01187{margin-left:-3.600000px;}
._6_c01187{margin-left:-2.592000px;}
._0_c01187{margin-left:-1.258891px;}
._3_c01187{width:1.164024px;}
._8_c01187{width:2.376000px;}
._d_c01187{width:3.888000px;}
._c_c01187{width:5.256000px;}
._b_c01187{width:6.552000px;}
._13_c01187{width:7.632000px;}
._14_c01187{width:8.771976px;}
._f_c01187{width:10.690891px;}
._2_c01187{width:11.808000px;}
._1_c01187{width:12.888000px;}
._e_c01187{width:14.015952px;}
._5_c01187{width:15.983928px;}
._4_c01187{width:17.256024px;}
._12_c01187{width:18.970891px;}
._a_c01187{width:21.778891px;}
._9_c01187{width:22.896000px;}
._11_c01187{width:32.469782px;}
._10_c01187{width:34.200000px;}
.fc0_c01187{color:rgb(0,0,0);}
.fs3_c01187{font-size:41.760000px;}
.fs2_c01187{font-size:48.240000px;}
.fs4_c01187{font-size:59.760000px;}
.fs0_c01187{font-size:66.240000px;}
.fs1_c01187{font-size:72.000000px;}
.y0_c01187{bottom:0.000000px;}
.y32_c01187{bottom:3.795000px;}
.y34_c01187{bottom:8.100000px;}
.y31_c01187{bottom:21.255000px;}
.y4_c01187{bottom:57.636000px;}
.y3_c01187{bottom:77.796000px;}
.y2f_c01187{bottom:122.976000px;}
.y2e_c01187{bottom:144.036000px;}
.y2d_c01187{bottom:149.976000px;}
.y2c_c01187{bottom:164.190000px;}
.y30_c01187{bottom:284.280000px;}
.y2a_c01187{bottom:289.515000px;}
.y2b_c01187{bottom:295.455000px;}
.y29_c01187{bottom:311.655000px;}
.y28_c01187{bottom:333.975000px;}
.y27_c01187{bottom:356.295000px;}
.y26_c01187{bottom:378.615000px;}
.y25_c01187{bottom:400.935000px;}
.y24_c01187{bottom:423.255000px;}
.y23_c01187{bottom:445.575000px;}
.y22_c01187{bottom:468.075000px;}
.y21_c01187{bottom:490.395000px;}
.y20_c01187{bottom:512.715000px;}
.y1f_c01187{bottom:535.035000px;}
.y1e_c01187{bottom:557.355000px;}
.y1d_c01187{bottom:579.705000px;}
.y1c_c01187{bottom:602.025000px;}
.y1b_c01187{bottom:624.345000px;}
.y1a_c01187{bottom:646.665000px;}
.y19_c01187{bottom:668.985000px;}
.y18_c01187{bottom:703.545000px;}
.y17_c01187{bottom:725.685000px;}
.y16_c01187{bottom:748.005000px;}
.y15_c01187{bottom:770.325000px;}
.y14_c01187{bottom:792.645000px;}
.y13_c01187{bottom:827.205000px;}
.y33_c01187{bottom:829.545000px;}
.y12_c01187{bottom:849.390000px;}
.y11_c01187{bottom:871.710000px;}
.y10_c01187{bottom:894.210000px;}
.yf_c01187{bottom:916.530000px;}
.ye_c01187{bottom:938.850000px;}
.yd_c01187{bottom:961.170000px;}
.yc_c01187{bottom:983.490000px;}
.yb_c01187{bottom:1005.810000px;}
.ya_c01187{bottom:1028.130000px;}
.y9_c01187{bottom:1050.450000px;}
.y8_c01187{bottom:1072.770000px;}
.y7_c01187{bottom:1095.090000px;}
.y6_c01187{bottom:1117.410000px;}
.y5_c01187{bottom:1139.940000px;}
.y2_c01187{bottom:1174.320000px;}
.y1_c01187{bottom:1194.660000px;}
.hb_c01187{height:21.982500px;}
.h7_c01187{height:31.666641px;}
.h9_c01187{height:34.920000px;}
.h6_c01187{height:43.246406px;}
.h2_c01187{height:48.062812px;}
.h3_c01187{height:50.229844px;}
.ha_c01187{height:53.428008px;}
.h8_c01187{height:63.763920px;}
.h4_c01187{height:64.546875px;}
.h5_c01187{height:1262.865000px;}
.h0_c01187{height:1262.880000px;}
.h1_c01187{height:1263.000000px;}
.w4_c01187{width:172.110000px;}
.w3_c01187{width:257.070000px;}
.w2_c01187{width:892.957500px;}
.w0_c01187{width:892.980000px;}
.w1_c01187{width:893.250000px;}
.x0_c01187{left:0.000000px;}
.x1_c01187{left:127.656000px;}
.x5_c01187{left:143.316000px;}
.x2_c01187{left:208.627500px;}
.x3_c01187{left:228.630000px;}
.x4_c01187{left:343.695000px;}
.x6_c01187{left:494.760000px;}
.x7_c01187{left:549.120000px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.ls2_c01187{letter-spacing:-0.384000pt;}
.ls5_c01187{letter-spacing:-0.259733pt;}
.ls3_c01187{letter-spacing:-0.161067pt;}
.ls1_c01187{letter-spacing:0.000000pt;}
.ls4_c01187{letter-spacing:0.133333pt;}
.ls6_c01187{letter-spacing:0.504533pt;}
.ls0_c01187{letter-spacing:3.973120pt;}
.ws0_c01187{word-spacing:-17.408000pt;}
.ws1_c01187{word-spacing:0.000000pt;}
._7_c01187{margin-left:-3.200000pt;}
._6_c01187{margin-left:-2.304000pt;}
._0_c01187{margin-left:-1.119014pt;}
._3_c01187{width:1.034688pt;}
._8_c01187{width:2.112000pt;}
._d_c01187{width:3.456000pt;}
._c_c01187{width:4.672000pt;}
._b_c01187{width:5.824000pt;}
._13_c01187{width:6.784000pt;}
._14_c01187{width:7.797312pt;}
._f_c01187{width:9.503014pt;}
._2_c01187{width:10.496000pt;}
._1_c01187{width:11.456000pt;}
._e_c01187{width:12.458624pt;}
._5_c01187{width:14.207936pt;}
._4_c01187{width:15.338688pt;}
._12_c01187{width:16.863014pt;}
._a_c01187{width:19.359014pt;}
._9_c01187{width:20.352000pt;}
._11_c01187{width:28.862029pt;}
._10_c01187{width:30.400000pt;}
.fs3_c01187{font-size:37.120000pt;}
.fs2_c01187{font-size:42.880000pt;}
.fs4_c01187{font-size:53.120000pt;}
.fs0_c01187{font-size:58.880000pt;}
.fs1_c01187{font-size:64.000000pt;}
.y0_c01187{bottom:0.000000pt;}
.y32_c01187{bottom:3.373333pt;}
.y34_c01187{bottom:7.200000pt;}
.y31_c01187{bottom:18.893333pt;}
.y4_c01187{bottom:51.232000pt;}
.y3_c01187{bottom:69.152000pt;}
.y2f_c01187{bottom:109.312000pt;}
.y2e_c01187{bottom:128.032000pt;}
.y2d_c01187{bottom:133.312000pt;}
.y2c_c01187{bottom:145.946667pt;}
.y30_c01187{bottom:252.693333pt;}
.y2a_c01187{bottom:257.346667pt;}
.y2b_c01187{bottom:262.626667pt;}
.y29_c01187{bottom:277.026667pt;}
.y28_c01187{bottom:296.866667pt;}
.y27_c01187{bottom:316.706667pt;}
.y26_c01187{bottom:336.546667pt;}
.y25_c01187{bottom:356.386667pt;}
.y24_c01187{bottom:376.226667pt;}
.y23_c01187{bottom:396.066667pt;}
.y22_c01187{bottom:416.066667pt;}
.y21_c01187{bottom:435.906667pt;}
.y20_c01187{bottom:455.746667pt;}
.y1f_c01187{bottom:475.586667pt;}
.y1e_c01187{bottom:495.426667pt;}
.y1d_c01187{bottom:515.293333pt;}
.y1c_c01187{bottom:535.133333pt;}
.y1b_c01187{bottom:554.973333pt;}
.y1a_c01187{bottom:574.813333pt;}
.y19_c01187{bottom:594.653333pt;}
.y18_c01187{bottom:625.373333pt;}
.y17_c01187{bottom:645.053333pt;}
.y16_c01187{bottom:664.893333pt;}
.y15_c01187{bottom:684.733333pt;}
.y14_c01187{bottom:704.573333pt;}
.y13_c01187{bottom:735.293333pt;}
.y33_c01187{bottom:737.373333pt;}
.y12_c01187{bottom:755.013333pt;}
.y11_c01187{bottom:774.853333pt;}
.y10_c01187{bottom:794.853333pt;}
.yf_c01187{bottom:814.693333pt;}
.ye_c01187{bottom:834.533333pt;}
.yd_c01187{bottom:854.373333pt;}
.yc_c01187{bottom:874.213333pt;}
.yb_c01187{bottom:894.053333pt;}
.ya_c01187{bottom:913.893333pt;}
.y9_c01187{bottom:933.733333pt;}
.y8_c01187{bottom:953.573333pt;}
.y7_c01187{bottom:973.413333pt;}
.y6_c01187{bottom:993.253333pt;}
.y5_c01187{bottom:1013.280000pt;}
.y2_c01187{bottom:1043.840000pt;}
.y1_c01187{bottom:1061.920000pt;}
.hb_c01187{height:19.540000pt;}
.h7_c01187{height:28.148125pt;}
.h9_c01187{height:31.040000pt;}
.h6_c01187{height:38.441250pt;}
.h2_c01187{height:42.722500pt;}
.h3_c01187{height:44.648750pt;}
.ha_c01187{height:47.491563pt;}
.h8_c01187{height:56.679040pt;}
.h4_c01187{height:57.375000pt;}
.h5_c01187{height:1122.546667pt;}
.h0_c01187{height:1122.560000pt;}
.h1_c01187{height:1122.666667pt;}
.w4_c01187{width:152.986667pt;}
.w3_c01187{width:228.506667pt;}
.w2_c01187{width:793.740000pt;}
.w0_c01187{width:793.760000pt;}
.w1_c01187{width:794.000000pt;}
.x0_c01187{left:0.000000pt;}
.x1_c01187{left:113.472000pt;}
.x5_c01187{left:127.392000pt;}
.x2_c01187{left:185.446667pt;}
.x3_c01187{left:203.226667pt;}
.x4_c01187{left:305.506667pt;}
.x6_c01187{left:439.786667pt;}
.x7_c01187{left:488.106667pt;}
}





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

.ir_c01188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01188;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01188;src:url('chunks/assets/font_f11ad47134174c8b62bba642.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01188;src:url('chunks/assets/font_0826f31da1d4cbc7087c148c.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01188;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff4_c01188{font-family:ff4_c01188;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:ff5_c01188;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff5_c01188{font-family:ff5_c01188;line-height:1.113281;font-style:normal;font-weight: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_c01188;src:url('chunks/assets/font_903c450f9ee6b48e6f9b03fe.woff2')format("woff");}.ff6_c01188{font-family:ff6_c01188;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01188{vertical-align:0.000000px;}
.ls0_c01188{letter-spacing:0.000000px;}
.ls1_c01188{letter-spacing:0.144000px;}
.sc__c01188{text-shadow:none;}
.sc0_c01188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01188{-webkit-text-stroke:0px transparent;}
.sc0_c01188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01188{word-spacing:0.000000px;}
._9_c01188{margin-left:-4.176000px;}
._8_c01188{margin-left:-2.664000px;}
._0_c01188{margin-left:-1.390841px;}
._1_c01188{width:1.367061px;}
._3_c01188{width:3.595487px;}
._5_c01188{width:6.108987px;}
._4_c01188{width:7.416000px;}
._7_c01188{width:8.456328px;}
._6_c01188{width:9.576000px;}
._d_c01188{width:10.822841px;}
._c_c01188{width:12.024000px;}
._f_c01188{width:14.256000px;}
._e_c01188{width:15.336000px;}
._11_c01188{width:27.432000px;}
._10_c01188{width:29.572635px;}
._b_c01188{width:31.221683px;}
._a_c01188{width:32.400000px;}
._2_c01188{width:1062.300000px;}
.fc0_c01188{color:rgb(0,0,0);}
.fs3_c01188{font-size:59.760000px;}
.fs0_c01188{font-size:66.240000px;}
.fs1_c01188{font-size:72.000000px;}
.fs2_c01188{font-size:84.240000px;}
.y0_c01188{bottom:0.000000px;}
.y23_c01188{bottom:3.075000px;}
.y26_c01188{bottom:5.775000px;}
.y25_c01188{bottom:23.055000px;}
.y4_c01188{bottom:57.636000px;}
.y3_c01188{bottom:77.796000px;}
.y21_c01188{bottom:140.076000px;}
.y20_c01188{bottom:178.050000px;}
.y1f_c01188{bottom:216.210000px;}
.y1e_c01188{bottom:254.190000px;}
.y1d_c01188{bottom:292.395000px;}
.y1c_c01188{bottom:330.375000px;}
.y1b_c01188{bottom:368.535000px;}
.y1a_c01188{bottom:405.435000px;}
.y19_c01188{bottom:427.575000px;}
.y18_c01188{bottom:449.895000px;}
.y17_c01188{bottom:472.395000px;}
.y16_c01188{bottom:506.775000px;}
.y15_c01188{bottom:528.915000px;}
.y14_c01188{bottom:551.415000px;}
.y13_c01188{bottom:573.765000px;}
.y12_c01188{bottom:596.085000px;}
.y11_c01188{bottom:618.405000px;}
.y10_c01188{bottom:640.725000px;}
.yf_c01188{bottom:663.045000px;}
.ye_c01188{bottom:685.365000px;}
.yd_c01188{bottom:707.685000px;}
.yc_c01188{bottom:730.005000px;}
.yb_c01188{bottom:752.325000px;}
.ya_c01188{bottom:774.645000px;}
.y9_c01188{bottom:796.065000px;}
.y8_c01188{bottom:818.385000px;}
.y7_c01188{bottom:855.510000px;}
.y24_c01188{bottom:881.055000px;}
.y6_c01188{bottom:889.890000px;}
.y22_c01188{bottom:901.035000px;}
.y5_c01188{bottom:920.310000px;}
.y2_c01188{bottom:1174.320000px;}
.y1_c01188{bottom:1194.660000px;}
.h7_c01188{height:16.920000px;}
.h9_c01188{height:36.720000px;}
.h2_c01188{height:48.062812px;}
.h3_c01188{height:50.229844px;}
.h8_c01188{height:53.428008px;}
.h4_c01188{height:64.546875px;}
.h6_c01188{height:76.054570px;}
.h5_c01188{height:87.859687px;}
.h0_c01188{height:1262.880000px;}
.h1_c01188{height:1263.000000px;}
.w2_c01188{width:221.790000px;}
.w3_c01188{width:232.095000px;}
.w0_c01188{width:892.980000px;}
.w1_c01188{width:893.250000px;}
.x0_c01188{left:0.000000px;}
.x2_c01188{left:127.656000px;}
.x6_c01188{left:139.185000px;}
.x1_c01188{left:169.950000px;}
.x5_c01188{left:425.415000px;}
.x4_c01188{left:477.615000px;}
.x7_c01188{left:488.775000px;}
.x3_c01188{left:740.490000px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls0_c01188{letter-spacing:0.000000pt;}
.ls1_c01188{letter-spacing:0.128000pt;}
.ws0_c01188{word-spacing:0.000000pt;}
._9_c01188{margin-left:-3.712000pt;}
._8_c01188{margin-left:-2.368000pt;}
._0_c01188{margin-left:-1.236303pt;}
._1_c01188{width:1.215165pt;}
._3_c01188{width:3.195988pt;}
._5_c01188{width:5.430211pt;}
._4_c01188{width:6.592000pt;}
._7_c01188{width:7.516736pt;}
._6_c01188{width:8.512000pt;}
._d_c01188{width:9.620303pt;}
._c_c01188{width:10.688000pt;}
._f_c01188{width:12.672000pt;}
._e_c01188{width:13.632000pt;}
._11_c01188{width:24.384000pt;}
._10_c01188{width:26.286787pt;}
._b_c01188{width:27.752607pt;}
._a_c01188{width:28.800000pt;}
._2_c01188{width:944.266667pt;}
.fs3_c01188{font-size:53.120000pt;}
.fs0_c01188{font-size:58.880000pt;}
.fs1_c01188{font-size:64.000000pt;}
.fs2_c01188{font-size:74.880000pt;}
.y0_c01188{bottom:0.000000pt;}
.y23_c01188{bottom:2.733333pt;}
.y26_c01188{bottom:5.133333pt;}
.y25_c01188{bottom:20.493333pt;}
.y4_c01188{bottom:51.232000pt;}
.y3_c01188{bottom:69.152000pt;}
.y21_c01188{bottom:124.512000pt;}
.y20_c01188{bottom:158.266667pt;}
.y1f_c01188{bottom:192.186667pt;}
.y1e_c01188{bottom:225.946667pt;}
.y1d_c01188{bottom:259.906667pt;}
.y1c_c01188{bottom:293.666667pt;}
.y1b_c01188{bottom:327.586667pt;}
.y1a_c01188{bottom:360.386667pt;}
.y19_c01188{bottom:380.066667pt;}
.y18_c01188{bottom:399.906667pt;}
.y17_c01188{bottom:419.906667pt;}
.y16_c01188{bottom:450.466667pt;}
.y15_c01188{bottom:470.146667pt;}
.y14_c01188{bottom:490.146667pt;}
.y13_c01188{bottom:510.013333pt;}
.y12_c01188{bottom:529.853333pt;}
.y11_c01188{bottom:549.693333pt;}
.y10_c01188{bottom:569.533333pt;}
.yf_c01188{bottom:589.373333pt;}
.ye_c01188{bottom:609.213333pt;}
.yd_c01188{bottom:629.053333pt;}
.yc_c01188{bottom:648.893333pt;}
.yb_c01188{bottom:668.733333pt;}
.ya_c01188{bottom:688.573333pt;}
.y9_c01188{bottom:707.613333pt;}
.y8_c01188{bottom:727.453333pt;}
.y7_c01188{bottom:760.453333pt;}
.y24_c01188{bottom:783.160000pt;}
.y6_c01188{bottom:791.013333pt;}
.y22_c01188{bottom:800.920000pt;}
.y5_c01188{bottom:818.053333pt;}
.y2_c01188{bottom:1043.840000pt;}
.y1_c01188{bottom:1061.920000pt;}
.h7_c01188{height:15.040000pt;}
.h9_c01188{height:32.640000pt;}
.h2_c01188{height:42.722500pt;}
.h3_c01188{height:44.648750pt;}
.h8_c01188{height:47.491563pt;}
.h4_c01188{height:57.375000pt;}
.h6_c01188{height:67.604062pt;}
.h5_c01188{height:78.097500pt;}
.h0_c01188{height:1122.560000pt;}
.h1_c01188{height:1122.666667pt;}
.w2_c01188{width:197.146667pt;}
.w3_c01188{width:206.306667pt;}
.w0_c01188{width:793.760000pt;}
.w1_c01188{width:794.000000pt;}
.x0_c01188{left:0.000000pt;}
.x2_c01188{left:113.472000pt;}
.x6_c01188{left:123.720000pt;}
.x1_c01188{left:151.066667pt;}
.x5_c01188{left:378.146667pt;}
.x4_c01188{left:424.546667pt;}
.x7_c01188{left:434.466667pt;}
.x3_c01188{left:658.213333pt;}
}





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

.ir_c01189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01189;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01189;src:url('chunks/assets/font_eb1e452bf5e5db3ee4f97a1c.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01189;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01189;src:url('chunks/assets/font_1cc86e921f34bc77ea667fef.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:1.106934;font-style:normal;font-weight: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_c01189;src:url('chunks/assets/font_4a139f018eeb0181bbc3d6a3.woff2')format("woff");}.ff5_c01189{font-family:ff5_c01189;line-height:1.104492;font-style:normal;font-weight: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_c01189;src:url('chunks/assets/font_96cc38f4525fbbe93f0171e7.woff2')format("woff");}.ff6_c01189{font-family:ff6_c01189;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.ls0_c01189{letter-spacing:0.000000px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01189{word-spacing:0.000000px;}
._0_c01189{margin-left:-1.258891px;}
._5_c01189{width:1.114891px;}
._7_c01189{width:2.304000px;}
._6_c01189{width:3.384000px;}
._9_c01189{width:12.312000px;}
._8_c01189{width:13.608000px;}
._4_c01189{width:28.656000px;}
._3_c01189{width:30.024000px;}
._2_c01189{width:46.584000px;}
._1_c01189{width:1026.324000px;}
.fc1_c01189{color:transparent;}
.fc0_c01189{color:rgb(0,0,0);}
.fs3_c01189{font-size:59.760000px;}
.fs0_c01189{font-size:66.240000px;}
.fs2_c01189{font-size:72.000000px;}
.fs1_c01189{font-size:84.240000px;}
.y1f_c01189{bottom:-1.785000px;}
.y0_c01189{bottom:0.000000px;}
.yb_c01189{bottom:4.140000px;}
.y1d_c01189{bottom:5.400000px;}
.y1b_c01189{bottom:12.060000px;}
.ye_c01189{bottom:24.660000px;}
.ya_c01189{bottom:24.840000px;}
.y4_c01189{bottom:57.636000px;}
.y3_c01189{bottom:77.796000px;}
.y19_c01189{bottom:345.675000px;}
.y18_c01189{bottom:367.995000px;}
.y17_c01189{bottom:390.315000px;}
.y16_c01189{bottom:412.635000px;}
.y15_c01189{bottom:447.195000px;}
.y14_c01189{bottom:469.335000px;}
.y13_c01189{bottom:491.655000px;}
.y12_c01189{bottom:513.975000px;}
.y11_c01189{bottom:548.535000px;}
.y10_c01189{bottom:565.125000px;}
.yf_c01189{bottom:585.825000px;}
.yd_c01189{bottom:627.225000px;}
.yc_c01189{bottom:668.445000px;}
.y9_c01189{bottom:709.845000px;}
.y8_c01189{bottom:769.065000px;}
.y1a_c01189{bottom:770.325000px;}
.y1c_c01189{bottom:779.145000px;}
.y7_c01189{bottom:799.485000px;}
.y1e_c01189{bottom:882.675000px;}
.y6_c01189{bottom:1115.070000px;}
.y5_c01189{bottom:1137.420000px;}
.y2_c01189{bottom:1174.320000px;}
.y1_c01189{bottom:1194.660000px;}
.he_c01189{height:11.880000px;}
.hd_c01189{height:19.260000px;}
.ha_c01189{height:20.700000px;}
.hb_c01189{height:25.920000px;}
.h9_c01189{height:41.215500px;}
.h8_c01189{height:41.220000px;}
.h7_c01189{height:41.395500px;}
.h6_c01189{height:41.400000px;}
.h2_c01189{height:48.062812px;}
.h3_c01189{height:50.229844px;}
.hc_c01189{height:53.428008px;}
.hf_c01189{height:53.953242px;}
.h5_c01189{height:64.546875px;}
.h4_c01189{height:87.859687px;}
.h0_c01189{height:1262.880000px;}
.h1_c01189{height:1263.000000px;}
.w9_c01189{width:21.600000px;}
.w2_c01189{width:31.491000px;}
.w4_c01189{width:32.040000px;}
.w8_c01189{width:237.450000px;}
.w7_c01189{width:285.690000px;}
.w5_c01189{width:286.620000px;}
.w3_c01189{width:286.935000px;}
.w6_c01189{width:286.950000px;}
.w0_c01189{width:892.980000px;}
.w1_c01189{width:893.250000px;}
.x0_c01189{left:0.000000px;}
.x4_c01189{left:8.091000px;}
.xa_c01189{left:10.800000px;}
.x1_c01189{left:127.656000px;}
.x5_c01189{left:159.165000px;}
.x9_c01189{left:419.655000px;}
.x3_c01189{left:426.855000px;}
.x6_c01189{left:446.115000px;}
.x7_c01189{left:478.155000px;}
.x2_c01189{left:492.225000px;}
.x8_c01189{left:499.620000px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls0_c01189{letter-spacing:0.000000pt;}
.ws0_c01189{word-spacing:0.000000pt;}
._0_c01189{margin-left:-1.119014pt;}
._5_c01189{width:0.991014pt;}
._7_c01189{width:2.048000pt;}
._6_c01189{width:3.008000pt;}
._9_c01189{width:10.944000pt;}
._8_c01189{width:12.096000pt;}
._4_c01189{width:25.472000pt;}
._3_c01189{width:26.688000pt;}
._2_c01189{width:41.408000pt;}
._1_c01189{width:912.288000pt;}
.fs3_c01189{font-size:53.120000pt;}
.fs0_c01189{font-size:58.880000pt;}
.fs2_c01189{font-size:64.000000pt;}
.fs1_c01189{font-size:74.880000pt;}
.y1f_c01189{bottom:-1.586667pt;}
.y0_c01189{bottom:0.000000pt;}
.yb_c01189{bottom:3.680000pt;}
.y1d_c01189{bottom:4.800000pt;}
.y1b_c01189{bottom:10.720000pt;}
.ye_c01189{bottom:21.920000pt;}
.ya_c01189{bottom:22.080000pt;}
.y4_c01189{bottom:51.232000pt;}
.y3_c01189{bottom:69.152000pt;}
.y19_c01189{bottom:307.266667pt;}
.y18_c01189{bottom:327.106667pt;}
.y17_c01189{bottom:346.946667pt;}
.y16_c01189{bottom:366.786667pt;}
.y15_c01189{bottom:397.506667pt;}
.y14_c01189{bottom:417.186667pt;}
.y13_c01189{bottom:437.026667pt;}
.y12_c01189{bottom:456.866667pt;}
.y11_c01189{bottom:487.586667pt;}
.y10_c01189{bottom:502.333333pt;}
.yf_c01189{bottom:520.733333pt;}
.yd_c01189{bottom:557.533333pt;}
.yc_c01189{bottom:594.173333pt;}
.y9_c01189{bottom:630.973333pt;}
.y8_c01189{bottom:683.613333pt;}
.y1a_c01189{bottom:684.733333pt;}
.y1c_c01189{bottom:692.573333pt;}
.y7_c01189{bottom:710.653333pt;}
.y1e_c01189{bottom:784.600000pt;}
.y6_c01189{bottom:991.173333pt;}
.y5_c01189{bottom:1011.040000pt;}
.y2_c01189{bottom:1043.840000pt;}
.y1_c01189{bottom:1061.920000pt;}
.he_c01189{height:10.560000pt;}
.hd_c01189{height:17.120000pt;}
.ha_c01189{height:18.400000pt;}
.hb_c01189{height:23.040000pt;}
.h9_c01189{height:36.636000pt;}
.h8_c01189{height:36.640000pt;}
.h7_c01189{height:36.796000pt;}
.h6_c01189{height:36.800000pt;}
.h2_c01189{height:42.722500pt;}
.h3_c01189{height:44.648750pt;}
.hc_c01189{height:47.491563pt;}
.hf_c01189{height:47.958438pt;}
.h5_c01189{height:57.375000pt;}
.h4_c01189{height:78.097500pt;}
.h0_c01189{height:1122.560000pt;}
.h1_c01189{height:1122.666667pt;}
.w9_c01189{width:19.200000pt;}
.w2_c01189{width:27.992000pt;}
.w4_c01189{width:28.480000pt;}
.w8_c01189{width:211.066667pt;}
.w7_c01189{width:253.946667pt;}
.w5_c01189{width:254.773333pt;}
.w3_c01189{width:255.053333pt;}
.w6_c01189{width:255.066667pt;}
.w0_c01189{width:793.760000pt;}
.w1_c01189{width:794.000000pt;}
.x0_c01189{left:0.000000pt;}
.x4_c01189{left:7.192000pt;}
.xa_c01189{left:9.600000pt;}
.x1_c01189{left:113.472000pt;}
.x5_c01189{left:141.480000pt;}
.x9_c01189{left:373.026667pt;}
.x3_c01189{left:379.426667pt;}
.x6_c01189{left:396.546667pt;}
.x7_c01189{left:425.026667pt;}
.x2_c01189{left:437.533333pt;}
.x8_c01189{left:444.106667pt;}
}





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

.ir_c01190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01190;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01190;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01190;src:url('chunks/assets/font_d3367a01703539e3f12c505f.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01190;src:url('chunks/assets/font_66cd296852a6163fcb206327.woff2')format("woff");}.ff4_c01190{font-family:ff4_c01190;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01190;src:url('chunks/assets/font_c4255fc9cbb0e19caaf0bd92.woff2')format("woff");}.ff5_c01190{font-family:ff5_c01190;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01190{vertical-align:0.000000px;}
.ls0_c01190{letter-spacing:0.000000px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01190{word-spacing:0.000000px;}
._f_c01190{margin-left:-2.747563px;}
._0_c01190{margin-left:-1.390841px;}
._1_c01190{width:1.367061px;}
._5_c01190{width:4.104000px;}
._9_c01190{width:6.048000px;}
._3_c01190{width:7.272000px;}
._4_c01190{width:10.008000px;}
._10_c01190{width:11.135560px;}
._c_c01190{width:12.528000px;}
._b_c01190{width:13.728024px;}
._14_c01190{width:15.912000px;}
._a_c01190{width:17.136000px;}
._11_c01190{width:18.912024px;}
._12_c01190{width:21.096000px;}
._13_c01190{width:22.357682px;}
._7_c01190{width:28.236024px;}
._6_c01190{width:29.664000px;}
._8_c01190{width:38.736000px;}
._d_c01190{width:43.560000px;}
._e_c01190{width:44.712000px;}
._2_c01190{width:1199.964000px;}
.fc0_c01190{color:rgb(0,0,0);}
.fs2_c01190{font-size:59.760000px;}
.fs0_c01190{font-size:66.240000px;}
.fs1_c01190{font-size:72.000000px;}
.y0_c01190{bottom:0.000000px;}
.y21_c01190{bottom:1.965000px;}
.y23_c01190{bottom:3.060000px;}
.y26_c01190{bottom:12.435000px;}
.y25_c01190{bottom:29.895000px;}
.y4_c01190{bottom:57.636000px;}
.y3_c01190{bottom:77.796000px;}
.y1f_c01190{bottom:129.816000px;}
.y1e_c01190{bottom:152.130000px;}
.y1d_c01190{bottom:174.450000px;}
.y1c_c01190{bottom:196.770000px;}
.y1b_c01190{bottom:219.090000px;}
.y1a_c01190{bottom:241.410000px;}
.y19_c01190{bottom:263.910000px;}
.y18_c01190{bottom:298.335000px;}
.y24_c01190{bottom:310.920000px;}
.y17_c01190{bottom:332.715000px;}
.y16_c01190{bottom:367.095000px;}
.y15_c01190{bottom:401.475000px;}
.y14_c01190{bottom:423.615000px;}
.y13_c01190{bottom:445.935000px;}
.y12_c01190{bottom:468.255000px;}
.y11_c01190{bottom:490.575000px;}
.y10_c01190{bottom:512.895000px;}
.yf_c01190{bottom:535.215000px;}
.ye_c01190{bottom:557.535000px;}
.yd_c01190{bottom:579.885000px;}
.yc_c01190{bottom:602.205000px;}
.yb_c01190{bottom:624.705000px;}
.ya_c01190{bottom:647.025000px;}
.y9_c01190{bottom:669.345000px;}
.y8_c01190{bottom:703.725000px;}
.y7_c01190{bottom:738.105000px;}
.y6_c01190{bottom:772.485000px;}
.y22_c01190{bottom:782.565000px;}
.y20_c01190{bottom:783.300000px;}
.y5_c01190{bottom:802.905000px;}
.y2_c01190{bottom:1174.320000px;}
.y1_c01190{bottom:1194.660000px;}
.h6_c01190{height:15.840000px;}
.h8_c01190{height:16.920000px;}
.h9_c01190{height:43.560000px;}
.h2_c01190{height:48.062812px;}
.h3_c01190{height:50.229844px;}
.h7_c01190{height:53.428008px;}
.h4_c01190{height:64.546875px;}
.h5_c01190{height:65.003906px;}
.h0_c01190{height:1262.880000px;}
.h1_c01190{height:1263.000000px;}
.w2_c01190{width:247.530000px;}
.w4_c01190{width:258.330000px;}
.w3_c01190{width:291.315000px;}
.w0_c01190{width:892.980000px;}
.w1_c01190{width:893.250000px;}
.x0_c01190{left:0.000000px;}
.x2_c01190{left:127.656000px;}
.x6_c01190{left:141.705000px;}
.x1_c01190{left:169.950000px;}
.x5_c01190{left:402.735000px;}
.x4_c01190{left:445.035000px;}
.x7_c01190{left:453.315000px;}
.x8_c01190{left:506.820000px;}
.x3_c01190{left:740.490000px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls0_c01190{letter-spacing:0.000000pt;}
.ws0_c01190{word-spacing:0.000000pt;}
._f_c01190{margin-left:-2.442278pt;}
._0_c01190{margin-left:-1.236303pt;}
._1_c01190{width:1.215165pt;}
._5_c01190{width:3.648000pt;}
._9_c01190{width:5.376000pt;}
._3_c01190{width:6.464000pt;}
._4_c01190{width:8.896000pt;}
._10_c01190{width:9.898276pt;}
._c_c01190{width:11.136000pt;}
._b_c01190{width:12.202688pt;}
._14_c01190{width:14.144000pt;}
._a_c01190{width:15.232000pt;}
._11_c01190{width:16.810688pt;}
._12_c01190{width:18.752000pt;}
._13_c01190{width:19.873495pt;}
._7_c01190{width:25.098688pt;}
._6_c01190{width:26.368000pt;}
._8_c01190{width:34.432000pt;}
._d_c01190{width:38.720000pt;}
._e_c01190{width:39.744000pt;}
._2_c01190{width:1066.634667pt;}
.fs2_c01190{font-size:53.120000pt;}
.fs0_c01190{font-size:58.880000pt;}
.fs1_c01190{font-size:64.000000pt;}
.y0_c01190{bottom:0.000000pt;}
.y21_c01190{bottom:1.746667pt;}
.y23_c01190{bottom:2.720000pt;}
.y26_c01190{bottom:11.053333pt;}
.y25_c01190{bottom:26.573333pt;}
.y4_c01190{bottom:51.232000pt;}
.y3_c01190{bottom:69.152000pt;}
.y1f_c01190{bottom:115.392000pt;}
.y1e_c01190{bottom:135.226667pt;}
.y1d_c01190{bottom:155.066667pt;}
.y1c_c01190{bottom:174.906667pt;}
.y1b_c01190{bottom:194.746667pt;}
.y1a_c01190{bottom:214.586667pt;}
.y19_c01190{bottom:234.586667pt;}
.y18_c01190{bottom:265.186667pt;}
.y24_c01190{bottom:276.373333pt;}
.y17_c01190{bottom:295.746667pt;}
.y16_c01190{bottom:326.306667pt;}
.y15_c01190{bottom:356.866667pt;}
.y14_c01190{bottom:376.546667pt;}
.y13_c01190{bottom:396.386667pt;}
.y12_c01190{bottom:416.226667pt;}
.y11_c01190{bottom:436.066667pt;}
.y10_c01190{bottom:455.906667pt;}
.yf_c01190{bottom:475.746667pt;}
.ye_c01190{bottom:495.586667pt;}
.yd_c01190{bottom:515.453333pt;}
.yc_c01190{bottom:535.293333pt;}
.yb_c01190{bottom:555.293333pt;}
.ya_c01190{bottom:575.133333pt;}
.y9_c01190{bottom:594.973333pt;}
.y8_c01190{bottom:625.533333pt;}
.y7_c01190{bottom:656.093333pt;}
.y6_c01190{bottom:686.653333pt;}
.y22_c01190{bottom:695.613333pt;}
.y20_c01190{bottom:696.266667pt;}
.y5_c01190{bottom:713.693333pt;}
.y2_c01190{bottom:1043.840000pt;}
.y1_c01190{bottom:1061.920000pt;}
.h6_c01190{height:14.080000pt;}
.h8_c01190{height:15.040000pt;}
.h9_c01190{height:38.720000pt;}
.h2_c01190{height:42.722500pt;}
.h3_c01190{height:44.648750pt;}
.h7_c01190{height:47.491563pt;}
.h4_c01190{height:57.375000pt;}
.h5_c01190{height:57.781250pt;}
.h0_c01190{height:1122.560000pt;}
.h1_c01190{height:1122.666667pt;}
.w2_c01190{width:220.026667pt;}
.w4_c01190{width:229.626667pt;}
.w3_c01190{width:258.946667pt;}
.w0_c01190{width:793.760000pt;}
.w1_c01190{width:794.000000pt;}
.x0_c01190{left:0.000000pt;}
.x2_c01190{left:113.472000pt;}
.x6_c01190{left:125.960000pt;}
.x1_c01190{left:151.066667pt;}
.x5_c01190{left:357.986667pt;}
.x4_c01190{left:395.586667pt;}
.x7_c01190{left:402.946667pt;}
.x8_c01190{left:450.506667pt;}
.x3_c01190{left:658.213333pt;}
}





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

.ir_c01191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01191;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01191;src:url('chunks/assets/font_eb1e452bf5e5db3ee4f97a1c.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01191;src:url('chunks/assets/font_3779ae9da373e92a1da8bbbc.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01191;src:url('chunks/assets/font_9c13e8a6c4d37d25febad885.woff2')format("woff");}.ff4_c01191{font-family:ff4_c01191;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01191{vertical-align:0.000000px;}
.ls0_c01191{letter-spacing:0.000000px;}
.ls1_c01191{letter-spacing:0.259800px;}
.sc__c01191{text-shadow:none;}
.sc0_c01191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01191{-webkit-text-stroke:0px transparent;}
.sc0_c01191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01191{word-spacing:0.000000px;}
._3_c01191{margin-left:-3.776674px;}
._1_c01191{margin-left:-2.415326px;}
._0_c01191{margin-left:-1.258891px;}
._2_c01191{width:1.163088px;}
._7_c01191{width:2.952000px;}
._8_c01191{width:3.960000px;}
._5_c01191{width:5.616000px;}
._4_c01191{width:6.768000px;}
._6_c01191{width:21.300912px;}
._9_c01191{width:1227.324000px;}
.fc0_c01191{color:rgb(0,0,0);}
.fs2_c01191{font-size:59.760000px;}
.fs0_c01191{font-size:66.240000px;}
.fs1_c01191{font-size:72.000000px;}
.y0_c01191{bottom:0.000000px;}
.y18_c01191{bottom:11.895000px;}
.y16_c01191{bottom:12.795000px;}
.y15_c01191{bottom:30.075000px;}
.y4_c01191{bottom:57.636000px;}
.y3_c01191{bottom:77.796000px;}
.y13_c01191{bottom:347.295000px;}
.y14_c01191{bottom:349.260000px;}
.y17_c01191{bottom:364.920000px;}
.y12_c01191{bottom:394.455000px;}
.y11_c01191{bottom:871.890000px;}
.y10_c01191{bottom:894.210000px;}
.yf_c01191{bottom:916.530000px;}
.ye_c01191{bottom:938.850000px;}
.yd_c01191{bottom:961.170000px;}
.yc_c01191{bottom:983.490000px;}
.yb_c01191{bottom:1005.810000px;}
.ya_c01191{bottom:1028.130000px;}
.y9_c01191{bottom:1050.450000px;}
.y8_c01191{bottom:1072.770000px;}
.y7_c01191{bottom:1095.090000px;}
.y6_c01191{bottom:1117.410000px;}
.y5_c01191{bottom:1139.940000px;}
.y2_c01191{bottom:1174.320000px;}
.y1_c01191{bottom:1194.660000px;}
.h7_c01191{height:25.740000px;}
.h5_c01191{height:43.740000px;}
.h2_c01191{height:48.062812px;}
.h3_c01191{height:50.229844px;}
.h6_c01191{height:53.428008px;}
.h4_c01191{height:64.546875px;}
.h0_c01191{height:1262.880000px;}
.h1_c01191{height:1263.000000px;}
.w3_c01191{width:295.275000px;}
.w2_c01191{width:303.150000px;}
.w0_c01191{width:892.980000px;}
.w1_c01191{width:893.250000px;}
.x0_c01191{left:0.000000px;}
.x4_c01191{left:126.225000px;}
.x1_c01191{left:127.656000px;}
.x2_c01191{left:434.595000px;}
.x5_c01191{left:441.795000px;}
.x3_c01191{left:443.415000px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls0_c01191{letter-spacing:0.000000pt;}
.ls1_c01191{letter-spacing:0.230933pt;}
.ws0_c01191{word-spacing:0.000000pt;}
._3_c01191{margin-left:-3.357043pt;}
._1_c01191{margin-left:-2.146957pt;}
._0_c01191{margin-left:-1.119014pt;}
._2_c01191{width:1.033856pt;}
._7_c01191{width:2.624000pt;}
._8_c01191{width:3.520000pt;}
._5_c01191{width:4.992000pt;}
._4_c01191{width:6.016000pt;}
._6_c01191{width:18.934144pt;}
._9_c01191{width:1090.954667pt;}
.fs2_c01191{font-size:53.120000pt;}
.fs0_c01191{font-size:58.880000pt;}
.fs1_c01191{font-size:64.000000pt;}
.y0_c01191{bottom:0.000000pt;}
.y18_c01191{bottom:10.573333pt;}
.y16_c01191{bottom:11.373333pt;}
.y15_c01191{bottom:26.733333pt;}
.y4_c01191{bottom:51.232000pt;}
.y3_c01191{bottom:69.152000pt;}
.y13_c01191{bottom:308.706667pt;}
.y14_c01191{bottom:310.453333pt;}
.y17_c01191{bottom:324.373333pt;}
.y12_c01191{bottom:350.626667pt;}
.y11_c01191{bottom:775.013333pt;}
.y10_c01191{bottom:794.853333pt;}
.yf_c01191{bottom:814.693333pt;}
.ye_c01191{bottom:834.533333pt;}
.yd_c01191{bottom:854.373333pt;}
.yc_c01191{bottom:874.213333pt;}
.yb_c01191{bottom:894.053333pt;}
.ya_c01191{bottom:913.893333pt;}
.y9_c01191{bottom:933.733333pt;}
.y8_c01191{bottom:953.573333pt;}
.y7_c01191{bottom:973.413333pt;}
.y6_c01191{bottom:993.253333pt;}
.y5_c01191{bottom:1013.280000pt;}
.y2_c01191{bottom:1043.840000pt;}
.y1_c01191{bottom:1061.920000pt;}
.h7_c01191{height:22.880000pt;}
.h5_c01191{height:38.880000pt;}
.h2_c01191{height:42.722500pt;}
.h3_c01191{height:44.648750pt;}
.h6_c01191{height:47.491563pt;}
.h4_c01191{height:57.375000pt;}
.h0_c01191{height:1122.560000pt;}
.h1_c01191{height:1122.666667pt;}
.w3_c01191{width:262.466667pt;}
.w2_c01191{width:269.466667pt;}
.w0_c01191{width:793.760000pt;}
.w1_c01191{width:794.000000pt;}
.x0_c01191{left:0.000000pt;}
.x4_c01191{left:112.200000pt;}
.x1_c01191{left:113.472000pt;}
.x2_c01191{left:386.306667pt;}
.x5_c01191{left:392.706667pt;}
.x3_c01191{left:394.146667pt;}
}





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

.ir_c01192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01192;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01192;src:url('chunks/assets/font_eb1e452bf5e5db3ee4f97a1c.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01192;src:url('chunks/assets/font_9865413d784e774e308aa7c9.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01192;src:url('chunks/assets/font_b7fdf8f0fe11c24676f4ddfc.woff2')format("woff");}.ff4_c01192{font-family:ff4_c01192;line-height:1.104492;font-style:normal;font-weight: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_c01192;src:url('chunks/assets/font_a55c0b13a3de5d2989e8a6c2.woff2')format("woff");}.ff5_c01192{font-family:ff5_c01192;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01192{vertical-align:0.000000px;}
.ls2_c01192{letter-spacing:-0.720000px;}
.ls1_c01192{letter-spacing:-0.576000px;}
.ls3_c01192{letter-spacing:-0.053400px;}
.ls0_c01192{letter-spacing:0.000000px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:-20.016000px;}
.ws1_c01192{word-spacing:0.000000px;}
._4_c01192{margin-left:-4.896000px;}
._3_c01192{margin-left:-3.744000px;}
._7_c01192{margin-left:-2.639281px;}
._0_c01192{margin-left:-1.390841px;}
._1_c01192{width:1.367061px;}
._c_c01192{width:2.376000px;}
._6_c01192{width:3.600000px;}
._e_c01192{width:4.608000px;}
._2_c01192{width:5.688000px;}
._9_c01192{width:11.088000px;}
._8_c01192{width:12.384000px;}
._5_c01192{width:13.752000px;}
._d_c01192{width:21.600000px;}
._f_c01192{width:23.904000px;}
._b_c01192{width:29.520000px;}
._a_c01192{width:35.640000px;}
.fc0_c01192{color:rgb(0,0,0);}
.fs2_c01192{font-size:59.760000px;}
.fs0_c01192{font-size:66.240000px;}
.fs1_c01192{font-size:72.000000px;}
.y0_c01192{bottom:0.000000px;}
.y22_c01192{bottom:6.480000px;}
.y4_c01192{bottom:57.636000px;}
.y3_c01192{bottom:77.796000px;}
.y20_c01192{bottom:128.376000px;}
.y1f_c01192{bottom:162.030000px;}
.y1e_c01192{bottom:195.870000px;}
.y1d_c01192{bottom:229.710000px;}
.y1c_c01192{bottom:257.430000px;}
.y1b_c01192{bottom:612.645000px;}
.y1a_c01192{bottom:634.785000px;}
.y19_c01192{bottom:657.105000px;}
.y18_c01192{bottom:679.425000px;}
.y17_c01192{bottom:701.745000px;}
.y16_c01192{bottom:724.065000px;}
.y15_c01192{bottom:758.625000px;}
.y14_c01192{bottom:792.825000px;}
.y21_c01192{bottom:820.545000px;}
.y13_c01192{bottom:827.205000px;}
.y12_c01192{bottom:849.390000px;}
.y11_c01192{bottom:871.710000px;}
.y10_c01192{bottom:894.210000px;}
.yf_c01192{bottom:916.530000px;}
.ye_c01192{bottom:938.850000px;}
.yd_c01192{bottom:961.170000px;}
.yc_c01192{bottom:983.490000px;}
.yb_c01192{bottom:1005.990000px;}
.ya_c01192{bottom:1028.130000px;}
.y9_c01192{bottom:1050.450000px;}
.y8_c01192{bottom:1072.770000px;}
.y7_c01192{bottom:1095.090000px;}
.y6_c01192{bottom:1117.410000px;}
.y5_c01192{bottom:1139.940000px;}
.y2_c01192{bottom:1174.320000px;}
.y1_c01192{bottom:1194.660000px;}
.h7_c01192{height:20.340000px;}
.h2_c01192{height:48.062812px;}
.h3_c01192{height:50.229844px;}
.h6_c01192{height:53.428008px;}
.h4_c01192{height:64.546875px;}
.h5_c01192{height:65.003906px;}
.h0_c01192{height:1262.880000px;}
.h1_c01192{height:1263.000000px;}
.w2_c01192{width:187.035000px;}
.w0_c01192{width:892.980000px;}
.w1_c01192{width:893.250000px;}
.x0_c01192{left:0.000000px;}
.x2_c01192{left:127.656000px;}
.x1_c01192{left:169.950000px;}
.x5_c01192{left:549.660000px;}
.x4_c01192{left:698.550000px;}
.x3_c01192{left:740.490000px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls2_c01192{letter-spacing:-0.640000pt;}
.ls1_c01192{letter-spacing:-0.512000pt;}
.ls3_c01192{letter-spacing:-0.047467pt;}
.ls0_c01192{letter-spacing:0.000000pt;}
.ws0_c01192{word-spacing:-17.792000pt;}
.ws1_c01192{word-spacing:0.000000pt;}
._4_c01192{margin-left:-4.352000pt;}
._3_c01192{margin-left:-3.328000pt;}
._7_c01192{margin-left:-2.346028pt;}
._0_c01192{margin-left:-1.236303pt;}
._1_c01192{width:1.215165pt;}
._c_c01192{width:2.112000pt;}
._6_c01192{width:3.200000pt;}
._e_c01192{width:4.096000pt;}
._2_c01192{width:5.056000pt;}
._9_c01192{width:9.856000pt;}
._8_c01192{width:11.008000pt;}
._5_c01192{width:12.224000pt;}
._d_c01192{width:19.200000pt;}
._f_c01192{width:21.248000pt;}
._b_c01192{width:26.240000pt;}
._a_c01192{width:31.680000pt;}
.fs2_c01192{font-size:53.120000pt;}
.fs0_c01192{font-size:58.880000pt;}
.fs1_c01192{font-size:64.000000pt;}
.y0_c01192{bottom:0.000000pt;}
.y22_c01192{bottom:5.760000pt;}
.y4_c01192{bottom:51.232000pt;}
.y3_c01192{bottom:69.152000pt;}
.y20_c01192{bottom:114.112000pt;}
.y1f_c01192{bottom:144.026667pt;}
.y1e_c01192{bottom:174.106667pt;}
.y1d_c01192{bottom:204.186667pt;}
.y1c_c01192{bottom:228.826667pt;}
.y1b_c01192{bottom:544.573333pt;}
.y1a_c01192{bottom:564.253333pt;}
.y19_c01192{bottom:584.093333pt;}
.y18_c01192{bottom:603.933333pt;}
.y17_c01192{bottom:623.773333pt;}
.y16_c01192{bottom:643.613333pt;}
.y15_c01192{bottom:674.333333pt;}
.y14_c01192{bottom:704.733333pt;}
.y21_c01192{bottom:729.373333pt;}
.y13_c01192{bottom:735.293333pt;}
.y12_c01192{bottom:755.013333pt;}
.y11_c01192{bottom:774.853333pt;}
.y10_c01192{bottom:794.853333pt;}
.yf_c01192{bottom:814.693333pt;}
.ye_c01192{bottom:834.533333pt;}
.yd_c01192{bottom:854.373333pt;}
.yc_c01192{bottom:874.213333pt;}
.yb_c01192{bottom:894.213333pt;}
.ya_c01192{bottom:913.893333pt;}
.y9_c01192{bottom:933.733333pt;}
.y8_c01192{bottom:953.573333pt;}
.y7_c01192{bottom:973.413333pt;}
.y6_c01192{bottom:993.253333pt;}
.y5_c01192{bottom:1013.280000pt;}
.y2_c01192{bottom:1043.840000pt;}
.y1_c01192{bottom:1061.920000pt;}
.h7_c01192{height:18.080000pt;}
.h2_c01192{height:42.722500pt;}
.h3_c01192{height:44.648750pt;}
.h6_c01192{height:47.491563pt;}
.h4_c01192{height:57.375000pt;}
.h5_c01192{height:57.781250pt;}
.h0_c01192{height:1122.560000pt;}
.h1_c01192{height:1122.666667pt;}
.w2_c01192{width:166.253333pt;}
.w0_c01192{width:793.760000pt;}
.w1_c01192{width:794.000000pt;}
.x0_c01192{left:0.000000pt;}
.x2_c01192{left:113.472000pt;}
.x1_c01192{left:151.066667pt;}
.x5_c01192{left:488.586667pt;}
.x4_c01192{left:620.933333pt;}
.x3_c01192{left:658.213333pt;}
}





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

.ir_c01193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01193;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01193;src:url('chunks/assets/font_8e02877238998f76a15363fc.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01193;src:url('chunks/assets/font_ceb85aae96b16a5fdf817a14.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01193;src:url('chunks/assets/font_977b44ecac9128f65a28c8c2.woff2')format("woff");}.ff4_c01193{font-family:ff4_c01193;line-height:1.106934;font-style:normal;font-weight: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_c01193;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01193{font-family:ff5_c01193;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:ff6_c01193;src:url('chunks/assets/font_b63fb8caf756847dd3a7803e.woff2')format("woff");}.ff6_c01193{font-family:ff6_c01193;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01193{vertical-align:0.000000px;}
.ls1_c01193{letter-spacing:-0.576000px;}
.ls4_c01193{letter-spacing:-0.432000px;}
.ls3_c01193{letter-spacing:-0.144000px;}
.ls0_c01193{letter-spacing:0.000000px;}
.ls2_c01193{letter-spacing:0.288000px;}
.sc__c01193{text-shadow:none;}
.sc0_c01193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01193{-webkit-text-stroke:0px transparent;}
.sc0_c01193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01193{word-spacing:-19.872000px;}
.ws1_c01193{word-spacing:0.000000px;}
._10_c01193{margin-left:-6.120000px;}
._f_c01193{margin-left:-4.176000px;}
._11_c01193{margin-left:-3.063226px;}
._0_c01193{margin-left:-1.258891px;}
._6_c01193{width:1.161806px;}
._b_c01193{width:2.304000px;}
._c_c01193{width:3.736411px;}
._8_c01193{width:5.112000px;}
._9_c01193{width:6.254194px;}
._7_c01193{width:10.584000px;}
._4_c01193{width:12.312000px;}
._3_c01193{width:13.464000px;}
._a_c01193{width:14.904000px;}
._12_c01193{width:16.464024px;}
._15_c01193{width:19.008000px;}
._e_c01193{width:22.032000px;}
._2_c01193{width:28.296000px;}
._1_c01193{width:29.304000px;}
._5_c01193{width:35.208000px;}
._13_c01193{width:43.416000px;}
._d_c01193{width:49.176000px;}
._14_c01193{width:63.360000px;}
.fc1_c01193{color:transparent;}
.fc0_c01193{color:rgb(0,0,0);}
.fs2_c01193{font-size:59.760000px;}
.fs0_c01193{font-size:66.240000px;}
.fs1_c01193{font-size:72.000000px;}
.y32_c01193{bottom:-14.235000px;}
.y0_c01193{bottom:0.000000px;}
.y2f_c01193{bottom:10.995000px;}
.y31_c01193{bottom:16.545000px;}
.y4_c01193{bottom:57.636000px;}
.y3_c01193{bottom:77.796000px;}
.y2d_c01193{bottom:142.056000px;}
.y2c_c01193{bottom:176.430000px;}
.y30_c01193{bottom:181.665000px;}
.y2b_c01193{bottom:209.910000px;}
.y2a_c01193{bottom:241.410000px;}
.y29_c01193{bottom:263.550000px;}
.y28_c01193{bottom:285.915000px;}
.y27_c01193{bottom:308.235000px;}
.y26_c01193{bottom:330.555000px;}
.y25_c01193{bottom:353.055000px;}
.y24_c01193{bottom:375.375000px;}
.y23_c01193{bottom:397.695000px;}
.y22_c01193{bottom:420.015000px;}
.y21_c01193{bottom:442.335000px;}
.y20_c01193{bottom:464.655000px;}
.y1f_c01193{bottom:486.975000px;}
.y1e_c01193{bottom:509.295000px;}
.y1d_c01193{bottom:531.615000px;}
.y1c_c01193{bottom:553.935000px;}
.y1b_c01193{bottom:576.465000px;}
.y1a_c01193{bottom:598.785000px;}
.y19_c01193{bottom:621.105000px;}
.y18_c01193{bottom:655.485000px;}
.y17_c01193{bottom:677.805000px;}
.y16_c01193{bottom:700.125000px;}
.y15_c01193{bottom:722.445000px;}
.y14_c01193{bottom:744.765000px;}
.y13_c01193{bottom:767.085000px;}
.y12_c01193{bottom:801.645000px;}
.y11_c01193{bottom:835.845000px;}
.y2e_c01193{bottom:861.255000px;}
.y10_c01193{bottom:870.270000px;}
.yf_c01193{bottom:904.650000px;}
.ye_c01193{bottom:926.790000px;}
.yd_c01193{bottom:949.110000px;}
.yc_c01193{bottom:971.430000px;}
.yb_c01193{bottom:993.750000px;}
.ya_c01193{bottom:1016.070000px;}
.y9_c01193{bottom:1038.570000px;}
.y8_c01193{bottom:1060.890000px;}
.y7_c01193{bottom:1083.210000px;}
.y6_c01193{bottom:1105.530000px;}
.y5_c01193{bottom:1140.120000px;}
.y2_c01193{bottom:1174.320000px;}
.y1_c01193{bottom:1194.660000px;}
.h8_c01193{height:24.840000px;}
.h9_c01193{height:30.240000px;}
.h2_c01193{height:48.062812px;}
.h3_c01193{height:50.229844px;}
.h7_c01193{height:53.428008px;}
.h5_c01193{height:64.546875px;}
.h4_c01193{height:65.003906px;}
.h6_c01193{height:75.093750px;}
.h0_c01193{height:1262.880000px;}
.h1_c01193{height:1263.000000px;}
.w2_c01193{width:240.705000px;}
.w3_c01193{width:388.875000px;}
.w0_c01193{width:892.980000px;}
.w1_c01193{width:893.250000px;}
.x0_c01193{left:0.000000px;}
.x1_c01193{left:127.656000px;}
.x2_c01193{left:266.250000px;}
.x5_c01193{left:418.395000px;}
.x4_c01193{left:528.225000px;}
.x3_c01193{left:534.885000px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.ls1_c01193{letter-spacing:-0.512000pt;}
.ls4_c01193{letter-spacing:-0.384000pt;}
.ls3_c01193{letter-spacing:-0.128000pt;}
.ls0_c01193{letter-spacing:0.000000pt;}
.ls2_c01193{letter-spacing:0.256000pt;}
.ws0_c01193{word-spacing:-17.664000pt;}
.ws1_c01193{word-spacing:0.000000pt;}
._10_c01193{margin-left:-5.440000pt;}
._f_c01193{margin-left:-3.712000pt;}
._11_c01193{margin-left:-2.722867pt;}
._0_c01193{margin-left:-1.119014pt;}
._6_c01193{width:1.032717pt;}
._b_c01193{width:2.048000pt;}
._c_c01193{width:3.321254pt;}
._8_c01193{width:4.544000pt;}
._9_c01193{width:5.559283pt;}
._7_c01193{width:9.408000pt;}
._4_c01193{width:10.944000pt;}
._3_c01193{width:11.968000pt;}
._a_c01193{width:13.248000pt;}
._12_c01193{width:14.634688pt;}
._15_c01193{width:16.896000pt;}
._e_c01193{width:19.584000pt;}
._2_c01193{width:25.152000pt;}
._1_c01193{width:26.048000pt;}
._5_c01193{width:31.296000pt;}
._13_c01193{width:38.592000pt;}
._d_c01193{width:43.712000pt;}
._14_c01193{width:56.320000pt;}
.fs2_c01193{font-size:53.120000pt;}
.fs0_c01193{font-size:58.880000pt;}
.fs1_c01193{font-size:64.000000pt;}
.y32_c01193{bottom:-12.653333pt;}
.y0_c01193{bottom:0.000000pt;}
.y2f_c01193{bottom:9.773333pt;}
.y31_c01193{bottom:14.706667pt;}
.y4_c01193{bottom:51.232000pt;}
.y3_c01193{bottom:69.152000pt;}
.y2d_c01193{bottom:126.272000pt;}
.y2c_c01193{bottom:156.826667pt;}
.y30_c01193{bottom:161.480000pt;}
.y2b_c01193{bottom:186.586667pt;}
.y2a_c01193{bottom:214.586667pt;}
.y29_c01193{bottom:234.266667pt;}
.y28_c01193{bottom:254.146667pt;}
.y27_c01193{bottom:273.986667pt;}
.y26_c01193{bottom:293.826667pt;}
.y25_c01193{bottom:313.826667pt;}
.y24_c01193{bottom:333.666667pt;}
.y23_c01193{bottom:353.506667pt;}
.y22_c01193{bottom:373.346667pt;}
.y21_c01193{bottom:393.186667pt;}
.y20_c01193{bottom:413.026667pt;}
.y1f_c01193{bottom:432.866667pt;}
.y1e_c01193{bottom:452.706667pt;}
.y1d_c01193{bottom:472.546667pt;}
.y1c_c01193{bottom:492.386667pt;}
.y1b_c01193{bottom:512.413333pt;}
.y1a_c01193{bottom:532.253333pt;}
.y19_c01193{bottom:552.093333pt;}
.y18_c01193{bottom:582.653333pt;}
.y17_c01193{bottom:602.493333pt;}
.y16_c01193{bottom:622.333333pt;}
.y15_c01193{bottom:642.173333pt;}
.y14_c01193{bottom:662.013333pt;}
.y13_c01193{bottom:681.853333pt;}
.y12_c01193{bottom:712.573333pt;}
.y11_c01193{bottom:742.973333pt;}
.y2e_c01193{bottom:765.560000pt;}
.y10_c01193{bottom:773.573333pt;}
.yf_c01193{bottom:804.133333pt;}
.ye_c01193{bottom:823.813333pt;}
.yd_c01193{bottom:843.653333pt;}
.yc_c01193{bottom:863.493333pt;}
.yb_c01193{bottom:883.333333pt;}
.ya_c01193{bottom:903.173333pt;}
.y9_c01193{bottom:923.173333pt;}
.y8_c01193{bottom:943.013333pt;}
.y7_c01193{bottom:962.853333pt;}
.y6_c01193{bottom:982.693333pt;}
.y5_c01193{bottom:1013.440000pt;}
.y2_c01193{bottom:1043.840000pt;}
.y1_c01193{bottom:1061.920000pt;}
.h8_c01193{height:22.080000pt;}
.h9_c01193{height:26.880000pt;}
.h2_c01193{height:42.722500pt;}
.h3_c01193{height:44.648750pt;}
.h7_c01193{height:47.491563pt;}
.h5_c01193{height:57.375000pt;}
.h4_c01193{height:57.781250pt;}
.h6_c01193{height:66.750000pt;}
.h0_c01193{height:1122.560000pt;}
.h1_c01193{height:1122.666667pt;}
.w2_c01193{width:213.960000pt;}
.w3_c01193{width:345.666667pt;}
.w0_c01193{width:793.760000pt;}
.w1_c01193{width:794.000000pt;}
.x0_c01193{left:0.000000pt;}
.x1_c01193{left:113.472000pt;}
.x2_c01193{left:236.666667pt;}
.x5_c01193{left:371.906667pt;}
.x4_c01193{left:469.533333pt;}
.x3_c01193{left:475.453333pt;}
}





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

.ir_c01194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01194;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01194;src:url('chunks/assets/font_804737dc33f2dd2bc783e5ee.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01194;src:url('chunks/assets/font_db2f4a03b52359e964fa59e3.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01194;src:url('chunks/assets/font_d691df22117588776b5105fb.woff2')format("woff");}.ff4_c01194{font-family:ff4_c01194;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01194{vertical-align:0.000000px;}
.ls0_c01194{letter-spacing:0.000000px;}
.sc__c01194{text-shadow:none;}
.sc0_c01194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01194{-webkit-text-stroke:0px transparent;}
.sc0_c01194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01194{word-spacing:0.000000px;}
._5_c01194{margin-left:-4.365683px;}
._4_c01194{margin-left:-2.834317px;}
._0_c01194{margin-left:-1.390841px;}
._1_c01194{width:1.367061px;}
._3_c01194{width:3.082645px;}
._2_c01194{width:4.968000px;}
._d_c01194{width:7.920000px;}
._6_c01194{width:9.792000px;}
._8_c01194{width:12.141683px;}
._7_c01194{width:13.248000px;}
._b_c01194{width:14.328000px;}
._a_c01194{width:16.056000px;}
._9_c01194{width:17.352000px;}
._e_c01194{width:28.800000px;}
._c_c01194{width:1704.684000px;}
.fc0_c01194{color:rgb(0,0,0);}
.fs2_c01194{font-size:59.760000px;}
.fs0_c01194{font-size:66.240000px;}
.fs1_c01194{font-size:72.000000px;}
.y0_c01194{bottom:0.000000px;}
.y1b_c01194{bottom:6.300000px;}
.y1d_c01194{bottom:11.880000px;}
.y1f_c01194{bottom:12.051000px;}
.y4_c01194{bottom:57.636000px;}
.y3_c01194{bottom:77.796000px;}
.y1e_c01194{bottom:107.685000px;}
.y19_c01194{bottom:137.016000px;}
.y18_c01194{bottom:435.855000px;}
.y17_c01194{bottom:458.175000px;}
.y16_c01194{bottom:480.495000px;}
.y15_c01194{bottom:502.815000px;}
.y14_c01194{bottom:525.135000px;}
.y13_c01194{bottom:547.455000px;}
.y1c_c01194{bottom:581.325000px;}
.y12_c01194{bottom:582.045000px;}
.y1a_c01194{bottom:589.065000px;}
.y11_c01194{bottom:612.285000px;}
.y10_c01194{bottom:894.390000px;}
.yf_c01194{bottom:916.530000px;}
.ye_c01194{bottom:938.850000px;}
.yd_c01194{bottom:961.170000px;}
.yc_c01194{bottom:983.490000px;}
.yb_c01194{bottom:1005.810000px;}
.ya_c01194{bottom:1028.130000px;}
.y9_c01194{bottom:1050.450000px;}
.y8_c01194{bottom:1072.770000px;}
.y7_c01194{bottom:1095.090000px;}
.y6_c01194{bottom:1117.410000px;}
.y5_c01194{bottom:1139.940000px;}
.y2_c01194{bottom:1174.320000px;}
.y1_c01194{bottom:1194.660000px;}
.h5_c01194{height:20.160000px;}
.h7_c01194{height:25.740000px;}
.h8_c01194{height:25.920000px;}
.h2_c01194{height:48.062812px;}
.h3_c01194{height:50.229844px;}
.h6_c01194{height:53.428008px;}
.h4_c01194{height:64.546875px;}
.h0_c01194{height:1262.880000px;}
.h1_c01194{height:1263.000000px;}
.w2_c01194{width:180.030000px;}
.w3_c01194{width:285.885000px;}
.w4_c01194{width:285.915000px;}
.w0_c01194{width:892.980000px;}
.w1_c01194{width:893.250000px;}
.x0_c01194{left:0.000000px;}
.x2_c01194{left:127.656000px;}
.x1_c01194{left:169.950000px;}
.x8_c01194{left:235.845000px;}
.x4_c01194{left:334.155000px;}
.x7_c01194{left:342.795000px;}
.x5_c01194{left:642.165000px;}
.x6_c01194{left:656.925000px;}
.x3_c01194{left:740.490000px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.ls0_c01194{letter-spacing:0.000000pt;}
.ws0_c01194{word-spacing:0.000000pt;}
._5_c01194{margin-left:-3.880607pt;}
._4_c01194{margin-left:-2.519393pt;}
._0_c01194{margin-left:-1.236303pt;}
._1_c01194{width:1.215165pt;}
._3_c01194{width:2.740129pt;}
._2_c01194{width:4.416000pt;}
._d_c01194{width:7.040000pt;}
._6_c01194{width:8.704000pt;}
._8_c01194{width:10.792607pt;}
._7_c01194{width:11.776000pt;}
._b_c01194{width:12.736000pt;}
._a_c01194{width:14.272000pt;}
._9_c01194{width:15.424000pt;}
._e_c01194{width:25.600000pt;}
._c_c01194{width:1515.274667pt;}
.fs2_c01194{font-size:53.120000pt;}
.fs0_c01194{font-size:58.880000pt;}
.fs1_c01194{font-size:64.000000pt;}
.y0_c01194{bottom:0.000000pt;}
.y1b_c01194{bottom:5.600000pt;}
.y1d_c01194{bottom:10.560000pt;}
.y1f_c01194{bottom:10.712000pt;}
.y4_c01194{bottom:51.232000pt;}
.y3_c01194{bottom:69.152000pt;}
.y1e_c01194{bottom:95.720000pt;}
.y19_c01194{bottom:121.792000pt;}
.y18_c01194{bottom:387.426667pt;}
.y17_c01194{bottom:407.266667pt;}
.y16_c01194{bottom:427.106667pt;}
.y15_c01194{bottom:446.946667pt;}
.y14_c01194{bottom:466.786667pt;}
.y13_c01194{bottom:486.626667pt;}
.y1c_c01194{bottom:516.733333pt;}
.y12_c01194{bottom:517.373333pt;}
.y1a_c01194{bottom:523.613333pt;}
.y11_c01194{bottom:544.253333pt;}
.y10_c01194{bottom:795.013333pt;}
.yf_c01194{bottom:814.693333pt;}
.ye_c01194{bottom:834.533333pt;}
.yd_c01194{bottom:854.373333pt;}
.yc_c01194{bottom:874.213333pt;}
.yb_c01194{bottom:894.053333pt;}
.ya_c01194{bottom:913.893333pt;}
.y9_c01194{bottom:933.733333pt;}
.y8_c01194{bottom:953.573333pt;}
.y7_c01194{bottom:973.413333pt;}
.y6_c01194{bottom:993.253333pt;}
.y5_c01194{bottom:1013.280000pt;}
.y2_c01194{bottom:1043.840000pt;}
.y1_c01194{bottom:1061.920000pt;}
.h5_c01194{height:17.920000pt;}
.h7_c01194{height:22.880000pt;}
.h8_c01194{height:23.040000pt;}
.h2_c01194{height:42.722500pt;}
.h3_c01194{height:44.648750pt;}
.h6_c01194{height:47.491563pt;}
.h4_c01194{height:57.375000pt;}
.h0_c01194{height:1122.560000pt;}
.h1_c01194{height:1122.666667pt;}
.w2_c01194{width:160.026667pt;}
.w3_c01194{width:254.120000pt;}
.w4_c01194{width:254.146667pt;}
.w0_c01194{width:793.760000pt;}
.w1_c01194{width:794.000000pt;}
.x0_c01194{left:0.000000pt;}
.x2_c01194{left:113.472000pt;}
.x1_c01194{left:151.066667pt;}
.x8_c01194{left:209.640000pt;}
.x4_c01194{left:297.026667pt;}
.x7_c01194{left:304.706667pt;}
.x5_c01194{left:570.813333pt;}
.x6_c01194{left:583.933333pt;}
.x3_c01194{left:658.213333pt;}
}





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

.ir_c01195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01195;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01195;src:url('chunks/assets/font_44c62c8fdcfcac525d9d64f3.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01195;src:url('chunks/assets/font_e262d8650e39a4a83919394d.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01195;src:url('chunks/assets/font_0059d3c2b32371b17c16aab6.woff2')format("woff");}.ff4_c01195{font-family:ff4_c01195;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01195{vertical-align:0.000000px;}
.ls1_c01195{letter-spacing:0.000000px;}
.ls0_c01195{letter-spacing:0.144000px;}
.ls2_c01195{letter-spacing:0.288000px;}
.sc__c01195{text-shadow:none;}
.sc0_c01195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01195{-webkit-text-stroke:0px transparent;}
.sc0_c01195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01195{word-spacing:0.000000px;}
._d_c01195{margin-left:-4.608000px;}
._e_c01195{margin-left:-2.316024px;}
._0_c01195{margin-left:-1.258891px;}
._2_c01195{width:1.440000px;}
._6_c01195{width:3.250915px;}
._5_c01195{width:4.320000px;}
._4_c01195{width:7.056000px;}
._3_c01195{width:8.136000px;}
._7_c01195{width:12.456000px;}
._f_c01195{width:18.648000px;}
._c_c01195{width:21.312000px;}
._9_c01195{width:22.714891px;}
._8_c01195{width:23.760000px;}
._1_c01195{width:30.672000px;}
._b_c01195{width:54.792000px;}
._a_c01195{width:56.376000px;}
.fc0_c01195{color:rgb(0,0,0);}
.fs2_c01195{font-size:59.760000px;}
.fs0_c01195{font-size:66.240000px;}
.fs1_c01195{font-size:72.000000px;}
.y0_c01195{bottom:0.000000px;}
.y22_c01195{bottom:1.980000px;}
.y25_c01195{bottom:3.795000px;}
.y21_c01195{bottom:19.440000px;}
.y24_c01195{bottom:21.075000px;}
.y4_c01195{bottom:57.636000px;}
.y3_c01195{bottom:77.796000px;}
.y1f_c01195{bottom:128.736000px;}
.y1e_c01195{bottom:151.050000px;}
.y1d_c01195{bottom:173.370000px;}
.y1c_c01195{bottom:195.690000px;}
.y1b_c01195{bottom:218.010000px;}
.y1a_c01195{bottom:240.330000px;}
.y19_c01195{bottom:262.650000px;}
.y23_c01195{bottom:288.780000px;}
.y18_c01195{bottom:297.795000px;}
.y17_c01195{bottom:326.955000px;}
.y20_c01195{bottom:699.405000px;}
.y16_c01195{bottom:700.305000px;}
.y15_c01195{bottom:734.505000px;}
.y14_c01195{bottom:768.885000px;}
.y13_c01195{bottom:803.265000px;}
.y12_c01195{bottom:837.645000px;}
.y11_c01195{bottom:871.890000px;}
.y10_c01195{bottom:894.210000px;}
.yf_c01195{bottom:916.530000px;}
.ye_c01195{bottom:938.850000px;}
.yd_c01195{bottom:961.170000px;}
.yc_c01195{bottom:983.490000px;}
.yb_c01195{bottom:1005.810000px;}
.ya_c01195{bottom:1028.130000px;}
.y9_c01195{bottom:1050.450000px;}
.y8_c01195{bottom:1072.770000px;}
.y7_c01195{bottom:1095.090000px;}
.y6_c01195{bottom:1117.410000px;}
.y5_c01195{bottom:1139.940000px;}
.y2_c01195{bottom:1174.320000px;}
.y1_c01195{bottom:1194.660000px;}
.h5_c01195{height:33.120000px;}
.h7_c01195{height:34.740000px;}
.h2_c01195{height:48.062812px;}
.h3_c01195{height:50.229844px;}
.h6_c01195{height:53.428008px;}
.h4_c01195{height:64.546875px;}
.h0_c01195{height:1262.880000px;}
.h1_c01195{height:1263.000000px;}
.w2_c01195{width:230.970000px;}
.w3_c01195{width:334.335000px;}
.w0_c01195{width:892.980000px;}
.w1_c01195{width:893.250000px;}
.x0_c01195{left:0.000000px;}
.x1_c01195{left:127.656000px;}
.x6_c01195{left:185.610000px;}
.x7_c01195{left:257.085000px;}
.x2_c01195{left:384.375000px;}
.x4_c01195{left:569.085000px;}
.x3_c01195{left:574.845000px;}
.x5_c01195{left:635.685000px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls1_c01195{letter-spacing:0.000000pt;}
.ls0_c01195{letter-spacing:0.128000pt;}
.ls2_c01195{letter-spacing:0.256000pt;}
.ws0_c01195{word-spacing:0.000000pt;}
._d_c01195{margin-left:-4.096000pt;}
._e_c01195{margin-left:-2.058688pt;}
._0_c01195{margin-left:-1.119014pt;}
._2_c01195{width:1.280000pt;}
._6_c01195{width:2.889702pt;}
._5_c01195{width:3.840000pt;}
._4_c01195{width:6.272000pt;}
._3_c01195{width:7.232000pt;}
._7_c01195{width:11.072000pt;}
._f_c01195{width:16.576000pt;}
._c_c01195{width:18.944000pt;}
._9_c01195{width:20.191014pt;}
._8_c01195{width:21.120000pt;}
._1_c01195{width:27.264000pt;}
._b_c01195{width:48.704000pt;}
._a_c01195{width:50.112000pt;}
.fs2_c01195{font-size:53.120000pt;}
.fs0_c01195{font-size:58.880000pt;}
.fs1_c01195{font-size:64.000000pt;}
.y0_c01195{bottom:0.000000pt;}
.y22_c01195{bottom:1.760000pt;}
.y25_c01195{bottom:3.373333pt;}
.y21_c01195{bottom:17.280000pt;}
.y24_c01195{bottom:18.733333pt;}
.y4_c01195{bottom:51.232000pt;}
.y3_c01195{bottom:69.152000pt;}
.y1f_c01195{bottom:114.432000pt;}
.y1e_c01195{bottom:134.266667pt;}
.y1d_c01195{bottom:154.106667pt;}
.y1c_c01195{bottom:173.946667pt;}
.y1b_c01195{bottom:193.786667pt;}
.y1a_c01195{bottom:213.626667pt;}
.y19_c01195{bottom:233.466667pt;}
.y23_c01195{bottom:256.693333pt;}
.y18_c01195{bottom:264.706667pt;}
.y17_c01195{bottom:290.626667pt;}
.y20_c01195{bottom:621.693333pt;}
.y16_c01195{bottom:622.493333pt;}
.y15_c01195{bottom:652.893333pt;}
.y14_c01195{bottom:683.453333pt;}
.y13_c01195{bottom:714.013333pt;}
.y12_c01195{bottom:744.573333pt;}
.y11_c01195{bottom:775.013333pt;}
.y10_c01195{bottom:794.853333pt;}
.yf_c01195{bottom:814.693333pt;}
.ye_c01195{bottom:834.533333pt;}
.yd_c01195{bottom:854.373333pt;}
.yc_c01195{bottom:874.213333pt;}
.yb_c01195{bottom:894.053333pt;}
.ya_c01195{bottom:913.893333pt;}
.y9_c01195{bottom:933.733333pt;}
.y8_c01195{bottom:953.573333pt;}
.y7_c01195{bottom:973.413333pt;}
.y6_c01195{bottom:993.253333pt;}
.y5_c01195{bottom:1013.280000pt;}
.y2_c01195{bottom:1043.840000pt;}
.y1_c01195{bottom:1061.920000pt;}
.h5_c01195{height:29.440000pt;}
.h7_c01195{height:30.880000pt;}
.h2_c01195{height:42.722500pt;}
.h3_c01195{height:44.648750pt;}
.h6_c01195{height:47.491563pt;}
.h4_c01195{height:57.375000pt;}
.h0_c01195{height:1122.560000pt;}
.h1_c01195{height:1122.666667pt;}
.w2_c01195{width:205.306667pt;}
.w3_c01195{width:297.186667pt;}
.w0_c01195{width:793.760000pt;}
.w1_c01195{width:794.000000pt;}
.x0_c01195{left:0.000000pt;}
.x1_c01195{left:113.472000pt;}
.x6_c01195{left:164.986667pt;}
.x7_c01195{left:228.520000pt;}
.x2_c01195{left:341.666667pt;}
.x4_c01195{left:505.853333pt;}
.x3_c01195{left:510.973333pt;}
.x5_c01195{left:565.053333pt;}
}





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

.ir_c01196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01196;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01196;src:url('chunks/assets/font_5a35e488f87b631d295559c8.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01196;src:url('chunks/assets/font_2aa613ac792b2cf6af09d4e8.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01196;src:url('chunks/assets/font_19f17d64c412ba12a0f289cc.woff2')format("woff");}.ff4_c01196{font-family:ff4_c01196;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01196{vertical-align:0.000000px;}
.ls2_c01196{letter-spacing:-0.432000px;}
.ls3_c01196{letter-spacing:-0.053400px;}
.ls1_c01196{letter-spacing:0.000000px;}
.ls0_c01196{letter-spacing:0.360000px;}
.sc__c01196{text-shadow:none;}
.sc0_c01196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01196{-webkit-text-stroke:0px transparent;}
.sc0_c01196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01196{word-spacing:0.000000px;}
._0_c01196{margin-left:-1.390841px;}
._1_c01196{width:1.367061px;}
._2_c01196{width:2.520000px;}
._3_c01196{width:3.551780px;}
._5_c01196{width:9.284524px;}
._4_c01196{width:10.296000px;}
._7_c01196{width:17.757683px;}
._6_c01196{width:19.008000px;}
.fc0_c01196{color:rgb(0,0,0);}
.fs2_c01196{font-size:59.760000px;}
.fs0_c01196{font-size:66.240000px;}
.fs1_c01196{font-size:72.000000px;}
.y0_c01196{bottom:0.000000px;}
.y15_c01196{bottom:3.810000px;}
.y14_c01196{bottom:21.270000px;}
.y4_c01196{bottom:57.636000px;}
.y3_c01196{bottom:77.796000px;}
.y12_c01196{bottom:123.876000px;}
.y11_c01196{bottom:157.530000px;}
.y10_c01196{bottom:191.370000px;}
.yf_c01196{bottom:225.030000px;}
.ye_c01196{bottom:258.870000px;}
.y13_c01196{bottom:280.485000px;}
.yd_c01196{bottom:291.135000px;}
.yc_c01196{bottom:320.475000px;}
.yb_c01196{bottom:672.405000px;}
.ya_c01196{bottom:699.945000px;}
.y9_c01196{bottom:1050.630000px;}
.y8_c01196{bottom:1072.770000px;}
.y7_c01196{bottom:1095.090000px;}
.y6_c01196{bottom:1117.410000px;}
.y5_c01196{bottom:1139.940000px;}
.y2_c01196{bottom:1174.320000px;}
.y1_c01196{bottom:1194.660000px;}
.h6_c01196{height:34.942500px;}
.h2_c01196{height:48.062812px;}
.h3_c01196{height:50.229844px;}
.h5_c01196{height:53.428008px;}
.h4_c01196{height:64.546875px;}
.h0_c01196{height:1262.880000px;}
.h1_c01196{height:1263.000000px;}
.w2_c01196{width:459.795000px;}
.w0_c01196{width:892.980000px;}
.w1_c01196{width:893.250000px;}
.x0_c01196{left:0.000000px;}
.x2_c01196{left:127.656000px;}
.x6_c01196{left:165.450000px;}
.x1_c01196{left:169.950000px;}
.x7_c01196{left:216.585000px;}
.x4_c01196{left:671.505000px;}
.x5_c01196{left:673.125000px;}
.x3_c01196{left:740.490000px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.ls2_c01196{letter-spacing:-0.384000pt;}
.ls3_c01196{letter-spacing:-0.047467pt;}
.ls1_c01196{letter-spacing:0.000000pt;}
.ls0_c01196{letter-spacing:0.320000pt;}
.ws0_c01196{word-spacing:0.000000pt;}
._0_c01196{margin-left:-1.236303pt;}
._1_c01196{width:1.215165pt;}
._2_c01196{width:2.240000pt;}
._3_c01196{width:3.157138pt;}
._5_c01196{width:8.252910pt;}
._4_c01196{width:9.152000pt;}
._7_c01196{width:15.784607pt;}
._6_c01196{width:16.896000pt;}
.fs2_c01196{font-size:53.120000pt;}
.fs0_c01196{font-size:58.880000pt;}
.fs1_c01196{font-size:64.000000pt;}
.y0_c01196{bottom:0.000000pt;}
.y15_c01196{bottom:3.386667pt;}
.y14_c01196{bottom:18.906667pt;}
.y4_c01196{bottom:51.232000pt;}
.y3_c01196{bottom:69.152000pt;}
.y12_c01196{bottom:110.112000pt;}
.y11_c01196{bottom:140.026667pt;}
.y10_c01196{bottom:170.106667pt;}
.yf_c01196{bottom:200.026667pt;}
.ye_c01196{bottom:230.106667pt;}
.y13_c01196{bottom:249.320000pt;}
.yd_c01196{bottom:258.786667pt;}
.yc_c01196{bottom:284.866667pt;}
.yb_c01196{bottom:597.693333pt;}
.ya_c01196{bottom:622.173333pt;}
.y9_c01196{bottom:933.893333pt;}
.y8_c01196{bottom:953.573333pt;}
.y7_c01196{bottom:973.413333pt;}
.y6_c01196{bottom:993.253333pt;}
.y5_c01196{bottom:1013.280000pt;}
.y2_c01196{bottom:1043.840000pt;}
.y1_c01196{bottom:1061.920000pt;}
.h6_c01196{height:31.060000pt;}
.h2_c01196{height:42.722500pt;}
.h3_c01196{height:44.648750pt;}
.h5_c01196{height:47.491563pt;}
.h4_c01196{height:57.375000pt;}
.h0_c01196{height:1122.560000pt;}
.h1_c01196{height:1122.666667pt;}
.w2_c01196{width:408.706667pt;}
.w0_c01196{width:793.760000pt;}
.w1_c01196{width:794.000000pt;}
.x0_c01196{left:0.000000pt;}
.x2_c01196{left:113.472000pt;}
.x6_c01196{left:147.066667pt;}
.x1_c01196{left:151.066667pt;}
.x7_c01196{left:192.520000pt;}
.x4_c01196{left:596.893333pt;}
.x5_c01196{left:598.333333pt;}
.x3_c01196{left:658.213333pt;}
}





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

.ir_c01197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01197;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01197;src:url('chunks/assets/font_2dac6a57dc22a1fb379f3835.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01197;src:url('chunks/assets/font_6ad4ed7bc1e847fe671f829a.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01197;src:url('chunks/assets/font_08138645d76f1dd841d1af9e.woff2')format("woff");}.ff4_c01197{font-family:ff4_c01197;line-height:1.106934;font-style:normal;font-weight: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_c01197;src:url('chunks/assets/font_b2a14d4e06333115e4136258.woff2')format("woff");}.ff5_c01197{font-family:ff5_c01197;line-height:1.104492;font-style:normal;font-weight: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_c01197;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff6_c01197{font-family:ff6_c01197;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;}
.m0_c01197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01197{vertical-align:0.000000px;}
.ls2_c01197{letter-spacing:-0.053400px;}
.ls0_c01197{letter-spacing:0.000000px;}
.ls3_c01197{letter-spacing:0.216000px;}
.ls1_c01197{letter-spacing:0.288000px;}
.sc__c01197{text-shadow:none;}
.sc0_c01197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01197{-webkit-text-stroke:0px transparent;}
.sc0_c01197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01197{word-spacing:-20.232000px;}
.ws0_c01197{word-spacing:-20.016000px;}
.ws2_c01197{word-spacing:0.000000px;}
._2_c01197{margin-left:-3.456000px;}
._3_c01197{margin-left:-2.362867px;}
._0_c01197{margin-left:-1.258891px;}
._1_c01197{width:1.186891px;}
._4_c01197{width:2.378218px;}
._b_c01197{width:3.672000px;}
._a_c01197{width:4.968000px;}
._d_c01197{width:6.050218px;}
._6_c01197{width:7.416000px;}
._8_c01197{width:10.656000px;}
._7_c01197{width:11.664000px;}
._5_c01197{width:18.768024px;}
._11_c01197{width:23.328000px;}
._10_c01197{width:24.480000px;}
._f_c01197{width:27.072000px;}
._e_c01197{width:28.306891px;}
._9_c01197{width:36.576000px;}
._c_c01197{width:38.064024px;}
.fc0_c01197{color:rgb(0,0,0);}
.fs2_c01197{font-size:59.760000px;}
.fs0_c01197{font-size:66.240000px;}
.fs1_c01197{font-size:72.000000px;}
.fs3_c01197{font-size:84.240000px;}
.y0_c01197{bottom:0.000000px;}
.y2_c01197{bottom:77.796000px;}
.y1a_c01197{bottom:140.436000px;}
.y19_c01197{bottom:162.570000px;}
.y18_c01197{bottom:184.890000px;}
.y17_c01197{bottom:219.450000px;}
.y16_c01197{bottom:241.590000px;}
.y15_c01197{bottom:276.150000px;}
.y14_c01197{bottom:298.335000px;}
.y13_c01197{bottom:320.655000px;}
.y12_c01197{bottom:342.975000px;}
.y11_c01197{bottom:365.295000px;}
.y10_c01197{bottom:387.615000px;}
.yf_c01197{bottom:410.115000px;}
.ye_c01197{bottom:432.435000px;}
.yd_c01197{bottom:454.755000px;}
.yc_c01197{bottom:477.075000px;}
.yb_c01197{bottom:520.635000px;}
.ya_c01197{bottom:625.785000px;}
.y9_c01197{bottom:993.930000px;}
.y8_c01197{bottom:1016.070000px;}
.y7_c01197{bottom:1038.570000px;}
.y6_c01197{bottom:1060.890000px;}
.y5_c01197{bottom:1083.210000px;}
.y4_c01197{bottom:1105.530000px;}
.y3_c01197{bottom:1140.120000px;}
.y1_c01197{bottom:1194.660000px;}
.h2_c01197{height:48.062812px;}
.h3_c01197{height:50.229844px;}
.h6_c01197{height:53.428008px;}
.h5_c01197{height:64.546875px;}
.h4_c01197{height:65.003906px;}
.h7_c01197{height:87.859687px;}
.h0_c01197{height:1262.880000px;}
.h1_c01197{height:1263.000000px;}
.w0_c01197{width:892.980000px;}
.w1_c01197{width:893.250000px;}
.x0_c01197{left:0.000000px;}
.x1_c01197{left:127.656000px;}
.x2_c01197{left:194.224500px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls2_c01197{letter-spacing:-0.047467pt;}
.ls0_c01197{letter-spacing:0.000000pt;}
.ls3_c01197{letter-spacing:0.192000pt;}
.ls1_c01197{letter-spacing:0.256000pt;}
.ws1_c01197{word-spacing:-17.984000pt;}
.ws0_c01197{word-spacing:-17.792000pt;}
.ws2_c01197{word-spacing:0.000000pt;}
._2_c01197{margin-left:-3.072000pt;}
._3_c01197{margin-left:-2.100326pt;}
._0_c01197{margin-left:-1.119014pt;}
._1_c01197{width:1.055014pt;}
._4_c01197{width:2.113971pt;}
._b_c01197{width:3.264000pt;}
._a_c01197{width:4.416000pt;}
._d_c01197{width:5.377971pt;}
._6_c01197{width:6.592000pt;}
._8_c01197{width:9.472000pt;}
._7_c01197{width:10.368000pt;}
._5_c01197{width:16.682688pt;}
._11_c01197{width:20.736000pt;}
._10_c01197{width:21.760000pt;}
._f_c01197{width:24.064000pt;}
._e_c01197{width:25.161681pt;}
._9_c01197{width:32.512000pt;}
._c_c01197{width:33.834688pt;}
.fs2_c01197{font-size:53.120000pt;}
.fs0_c01197{font-size:58.880000pt;}
.fs1_c01197{font-size:64.000000pt;}
.fs3_c01197{font-size:74.880000pt;}
.y0_c01197{bottom:0.000000pt;}
.y2_c01197{bottom:69.152000pt;}
.y1a_c01197{bottom:124.832000pt;}
.y19_c01197{bottom:144.506667pt;}
.y18_c01197{bottom:164.346667pt;}
.y17_c01197{bottom:195.066667pt;}
.y16_c01197{bottom:214.746667pt;}
.y15_c01197{bottom:245.466667pt;}
.y14_c01197{bottom:265.186667pt;}
.y13_c01197{bottom:285.026667pt;}
.y12_c01197{bottom:304.866667pt;}
.y11_c01197{bottom:324.706667pt;}
.y10_c01197{bottom:344.546667pt;}
.yf_c01197{bottom:364.546667pt;}
.ye_c01197{bottom:384.386667pt;}
.yd_c01197{bottom:404.226667pt;}
.yc_c01197{bottom:424.066667pt;}
.yb_c01197{bottom:462.786667pt;}
.ya_c01197{bottom:556.253333pt;}
.y9_c01197{bottom:883.493333pt;}
.y8_c01197{bottom:903.173333pt;}
.y7_c01197{bottom:923.173333pt;}
.y6_c01197{bottom:943.013333pt;}
.y5_c01197{bottom:962.853333pt;}
.y4_c01197{bottom:982.693333pt;}
.y3_c01197{bottom:1013.440000pt;}
.y1_c01197{bottom:1061.920000pt;}
.h2_c01197{height:42.722500pt;}
.h3_c01197{height:44.648750pt;}
.h6_c01197{height:47.491563pt;}
.h5_c01197{height:57.375000pt;}
.h4_c01197{height:57.781250pt;}
.h7_c01197{height:78.097500pt;}
.h0_c01197{height:1122.560000pt;}
.h1_c01197{height:1122.666667pt;}
.w0_c01197{width:793.760000pt;}
.w1_c01197{width:794.000000pt;}
.x0_c01197{left:0.000000pt;}
.x1_c01197{left:113.472000pt;}
.x2_c01197{left:172.644000pt;}
}





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

.ir_c01198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01198;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01198;src:url('chunks/assets/font_e14d538bccc8234658510173.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01198;src:url('chunks/assets/font_a5c69adac68d8857f19d6532.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01198{vertical-align:0.000000px;}
.ls1_c01198{letter-spacing:0.000000px;}
.ls0_c01198{letter-spacing:0.288000px;}
.sc__c01198{text-shadow:none;}
.sc0_c01198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01198{-webkit-text-stroke:0px transparent;}
.sc0_c01198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01198{word-spacing:0.000000px;}
._9_c01198{margin-left:-4.082633px;}
._8_c01198{margin-left:-2.831976px;}
._0_c01198{margin-left:-1.390841px;}
._1_c01198{width:1.367061px;}
._5_c01198{width:2.448939px;}
._2_c01198{width:3.672000px;}
._a_c01198{width:5.544000px;}
._b_c01198{width:6.696000px;}
._3_c01198{width:7.992000px;}
._c_c01198{width:9.179804px;}
._7_c01198{width:11.038841px;}
._4_c01198{width:12.312000px;}
._6_c01198{width:13.968000px;}
._f_c01198{width:22.824000px;}
._e_c01198{width:24.912000px;}
._d_c01198{width:26.424000px;}
.fc0_c01198{color:rgb(0,0,0);}
.fs0_c01198{font-size:66.240000px;}
.fs1_c01198{font-size:72.000000px;}
.y0_c01198{bottom:0.000000px;}
.y4_c01198{bottom:57.636000px;}
.y3_c01198{bottom:77.796000px;}
.y2d_c01198{bottom:150.330000px;}
.y2c_c01198{bottom:172.650000px;}
.y2b_c01198{bottom:194.970000px;}
.y2a_c01198{bottom:217.290000px;}
.y29_c01198{bottom:239.610000px;}
.y28_c01198{bottom:261.930000px;}
.y27_c01198{bottom:284.295000px;}
.y26_c01198{bottom:318.855000px;}
.y25_c01198{bottom:340.995000px;}
.y24_c01198{bottom:363.315000px;}
.y23_c01198{bottom:385.635000px;}
.y22_c01198{bottom:407.955000px;}
.y21_c01198{bottom:430.275000px;}
.y20_c01198{bottom:464.835000px;}
.y1f_c01198{bottom:486.975000px;}
.y1e_c01198{bottom:509.295000px;}
.y1d_c01198{bottom:531.615000px;}
.y1c_c01198{bottom:553.935000px;}
.y1b_c01198{bottom:588.525000px;}
.y1a_c01198{bottom:610.665000px;}
.y19_c01198{bottom:632.985000px;}
.y18_c01198{bottom:655.305000px;}
.y17_c01198{bottom:677.805000px;}
.y16_c01198{bottom:700.125000px;}
.y15_c01198{bottom:722.445000px;}
.y14_c01198{bottom:744.765000px;}
.y13_c01198{bottom:767.085000px;}
.y12_c01198{bottom:801.645000px;}
.y11_c01198{bottom:823.785000px;}
.y10_c01198{bottom:846.105000px;}
.yf_c01198{bottom:868.470000px;}
.ye_c01198{bottom:890.790000px;}
.yd_c01198{bottom:925.350000px;}
.yc_c01198{bottom:947.490000px;}
.yb_c01198{bottom:969.810000px;}
.ya_c01198{bottom:1004.370000px;}
.y9_c01198{bottom:1026.510000px;}
.y8_c01198{bottom:1061.070000px;}
.y7_c01198{bottom:1083.210000px;}
.y6_c01198{bottom:1117.590000px;}
.y5_c01198{bottom:1139.940000px;}
.y2_c01198{bottom:1174.320000px;}
.y1_c01198{bottom:1194.660000px;}
.h2_c01198{height:48.062812px;}
.h3_c01198{height:50.229844px;}
.h4_c01198{height:64.546875px;}
.h0_c01198{height:1262.880000px;}
.h1_c01198{height:1263.000000px;}
.w0_c01198{width:892.980000px;}
.w1_c01198{width:893.250000px;}
.x0_c01198{left:0.000000px;}
.x2_c01198{left:127.656000px;}
.x1_c01198{left:169.950000px;}
.x3_c01198{left:740.490000px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls1_c01198{letter-spacing:0.000000pt;}
.ls0_c01198{letter-spacing:0.256000pt;}
.ws0_c01198{word-spacing:0.000000pt;}
._9_c01198{margin-left:-3.629007pt;}
._8_c01198{margin-left:-2.517312pt;}
._0_c01198{margin-left:-1.236303pt;}
._1_c01198{width:1.215165pt;}
._5_c01198{width:2.176835pt;}
._2_c01198{width:3.264000pt;}
._a_c01198{width:4.928000pt;}
._b_c01198{width:5.952000pt;}
._3_c01198{width:7.104000pt;}
._c_c01198{width:8.159826pt;}
._7_c01198{width:9.812303pt;}
._4_c01198{width:10.944000pt;}
._6_c01198{width:12.416000pt;}
._f_c01198{width:20.288000pt;}
._e_c01198{width:22.144000pt;}
._d_c01198{width:23.488000pt;}
.fs0_c01198{font-size:58.880000pt;}
.fs1_c01198{font-size:64.000000pt;}
.y0_c01198{bottom:0.000000pt;}
.y4_c01198{bottom:51.232000pt;}
.y3_c01198{bottom:69.152000pt;}
.y2d_c01198{bottom:133.626667pt;}
.y2c_c01198{bottom:153.466667pt;}
.y2b_c01198{bottom:173.306667pt;}
.y2a_c01198{bottom:193.146667pt;}
.y29_c01198{bottom:212.986667pt;}
.y28_c01198{bottom:232.826667pt;}
.y27_c01198{bottom:252.706667pt;}
.y26_c01198{bottom:283.426667pt;}
.y25_c01198{bottom:303.106667pt;}
.y24_c01198{bottom:322.946667pt;}
.y23_c01198{bottom:342.786667pt;}
.y22_c01198{bottom:362.626667pt;}
.y21_c01198{bottom:382.466667pt;}
.y20_c01198{bottom:413.186667pt;}
.y1f_c01198{bottom:432.866667pt;}
.y1e_c01198{bottom:452.706667pt;}
.y1d_c01198{bottom:472.546667pt;}
.y1c_c01198{bottom:492.386667pt;}
.y1b_c01198{bottom:523.133333pt;}
.y1a_c01198{bottom:542.813333pt;}
.y19_c01198{bottom:562.653333pt;}
.y18_c01198{bottom:582.493333pt;}
.y17_c01198{bottom:602.493333pt;}
.y16_c01198{bottom:622.333333pt;}
.y15_c01198{bottom:642.173333pt;}
.y14_c01198{bottom:662.013333pt;}
.y13_c01198{bottom:681.853333pt;}
.y12_c01198{bottom:712.573333pt;}
.y11_c01198{bottom:732.253333pt;}
.y10_c01198{bottom:752.093333pt;}
.yf_c01198{bottom:771.973333pt;}
.ye_c01198{bottom:791.813333pt;}
.yd_c01198{bottom:822.533333pt;}
.yc_c01198{bottom:842.213333pt;}
.yb_c01198{bottom:862.053333pt;}
.ya_c01198{bottom:892.773333pt;}
.y9_c01198{bottom:912.453333pt;}
.y8_c01198{bottom:943.173333pt;}
.y7_c01198{bottom:962.853333pt;}
.y6_c01198{bottom:993.413333pt;}
.y5_c01198{bottom:1013.280000pt;}
.y2_c01198{bottom:1043.840000pt;}
.y1_c01198{bottom:1061.920000pt;}
.h2_c01198{height:42.722500pt;}
.h3_c01198{height:44.648750pt;}
.h4_c01198{height:57.375000pt;}
.h0_c01198{height:1122.560000pt;}
.h1_c01198{height:1122.666667pt;}
.w0_c01198{width:793.760000pt;}
.w1_c01198{width:794.000000pt;}
.x0_c01198{left:0.000000pt;}
.x2_c01198{left:113.472000pt;}
.x1_c01198{left:151.066667pt;}
.x3_c01198{left:658.213333pt;}
}





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

.ir_c01199:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01199;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01199;src:url('chunks/assets/font_21b11549a40e605d5790e862.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01199;src:url('chunks/assets/font_a7b8f83bc617c5c3ffd433a3.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01199;src:url('chunks/assets/font_4bbb299aef9bf8d5fdb9fb0d.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:1.104492;font-style:normal;font-weight: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_c01199;src:url('chunks/assets/font_6b97ab7df50c134bdea6a775.woff2')format("woff");}.ff5_c01199{font-family:ff5_c01199;line-height:1.181152;font-style:normal;font-weight: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_c01199;src:url('chunks/assets/font_11c2da8188889e0e51973297.woff2')format("woff");}.ff6_c01199{font-family:ff6_c01199;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01199{vertical-align:0.000000px;}
.ls3_c01199{letter-spacing:-0.432000px;}
.ls5_c01199{letter-spacing:-0.247800px;}
.ls2_c01199{letter-spacing:-0.181200px;}
.ls1_c01199{letter-spacing:0.000000px;}
.ls4_c01199{letter-spacing:0.150000px;}
.ls0_c01199{letter-spacing:0.288000px;}
.sc__c01199{text-shadow:none;}
.sc0_c01199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01199{-webkit-text-stroke:0px transparent;}
.sc0_c01199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01199{word-spacing:-21.035520px;}
.ws0_c01199{word-spacing:-20.304000px;}
.ws2_c01199{word-spacing:0.000000px;}
._6_c01199{margin-left:-2.293085px;}
._0_c01199{margin-left:-1.258891px;}
._1_c01199{width:1.656000px;}
._3_c01199{width:2.664000px;}
._2_c01199{width:3.875976px;}
._5_c01199{width:5.362891px;}
._4_c01199{width:6.480000px;}
._7_c01199{width:12.528000px;}
._8_c01199{width:19.008000px;}
.fc0_c01199{color:rgb(0,0,0);}
.fs4_c01199{font-size:38.880000px;}
.fs2_c01199{font-size:48.240000px;}
.fs3_c01199{font-size:59.760000px;}
.fs0_c01199{font-size:66.240000px;}
.fs1_c01199{font-size:72.000000px;}
.y0_c01199{bottom:0.000000px;}
.y4_c01199{bottom:57.636000px;}
.y3_c01199{bottom:77.796000px;}
.y1a_c01199{bottom:109.296000px;}
.y19_c01199{bottom:114.516000px;}
.y18_c01199{bottom:129.096000px;}
.y17_c01199{bottom:226.290000px;}
.y16_c01199{bottom:248.430000px;}
.y15_c01199{bottom:270.750000px;}
.y14_c01199{bottom:293.115000px;}
.y13_c01199{bottom:315.435000px;}
.y12_c01199{bottom:337.935000px;}
.y11_c01199{bottom:360.255000px;}
.y10_c01199{bottom:382.575000px;}
.yf_c01199{bottom:416.235000px;}
.ye_c01199{bottom:443.595000px;}
.yd_c01199{bottom:661.245000px;}
.yc_c01199{bottom:688.785000px;}
.yb_c01199{bottom:1028.310000px;}
.ya_c01199{bottom:1050.450000px;}
.y9_c01199{bottom:1072.770000px;}
.y8_c01199{bottom:1095.090000px;}
.y6_c01199{bottom:1117.410000px;}
.y7_c01199{bottom:1123.350000px;}
.y5_c01199{bottom:1139.940000px;}
.y2_c01199{bottom:1174.320000px;}
.y1_c01199{bottom:1194.660000px;}
.h8_c01199{height:37.892813px;}
.h6_c01199{height:43.246406px;}
.h2_c01199{height:48.062812px;}
.h3_c01199{height:50.229844px;}
.h7_c01199{height:53.428008px;}
.h9_c01199{height:63.763920px;}
.h4_c01199{height:64.546875px;}
.h5_c01199{height:1262.865000px;}
.h0_c01199{height:1262.880000px;}
.h1_c01199{height:1263.000000px;}
.w2_c01199{width:892.957500px;}
.w0_c01199{width:892.980000px;}
.w1_c01199{width:893.250000px;}
.x0_c01199{left:0.000000px;}
.x1_c01199{left:127.656000px;}
.x6_c01199{left:146.016000px;}
.x5_c01199{left:343.695000px;}
.x2_c01199{left:700.147500px;}
.x3_c01199{left:720.150000px;}
.x4_c01199{left:764.610000px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls3_c01199{letter-spacing:-0.384000pt;}
.ls5_c01199{letter-spacing:-0.220267pt;}
.ls2_c01199{letter-spacing:-0.161067pt;}
.ls1_c01199{letter-spacing:0.000000pt;}
.ls4_c01199{letter-spacing:0.133333pt;}
.ls0_c01199{letter-spacing:0.256000pt;}
.ws1_c01199{word-spacing:-18.698240pt;}
.ws0_c01199{word-spacing:-18.048000pt;}
.ws2_c01199{word-spacing:0.000000pt;}
._6_c01199{margin-left:-2.038298pt;}
._0_c01199{margin-left:-1.119014pt;}
._1_c01199{width:1.472000pt;}
._3_c01199{width:2.368000pt;}
._2_c01199{width:3.445312pt;}
._5_c01199{width:4.767014pt;}
._4_c01199{width:5.760000pt;}
._7_c01199{width:11.136000pt;}
._8_c01199{width:16.896000pt;}
.fs4_c01199{font-size:34.560000pt;}
.fs2_c01199{font-size:42.880000pt;}
.fs3_c01199{font-size:53.120000pt;}
.fs0_c01199{font-size:58.880000pt;}
.fs1_c01199{font-size:64.000000pt;}
.y0_c01199{bottom:0.000000pt;}
.y4_c01199{bottom:51.232000pt;}
.y3_c01199{bottom:69.152000pt;}
.y1a_c01199{bottom:97.152000pt;}
.y19_c01199{bottom:101.792000pt;}
.y18_c01199{bottom:114.752000pt;}
.y17_c01199{bottom:201.146667pt;}
.y16_c01199{bottom:220.826667pt;}
.y15_c01199{bottom:240.666667pt;}
.y14_c01199{bottom:260.546667pt;}
.y13_c01199{bottom:280.386667pt;}
.y12_c01199{bottom:300.386667pt;}
.y11_c01199{bottom:320.226667pt;}
.y10_c01199{bottom:340.066667pt;}
.yf_c01199{bottom:369.986667pt;}
.ye_c01199{bottom:394.306667pt;}
.yd_c01199{bottom:587.773333pt;}
.yc_c01199{bottom:612.253333pt;}
.yb_c01199{bottom:914.053333pt;}
.ya_c01199{bottom:933.733333pt;}
.y9_c01199{bottom:953.573333pt;}
.y8_c01199{bottom:973.413333pt;}
.y6_c01199{bottom:993.253333pt;}
.y7_c01199{bottom:998.533333pt;}
.y5_c01199{bottom:1013.280000pt;}
.y2_c01199{bottom:1043.840000pt;}
.y1_c01199{bottom:1061.920000pt;}
.h8_c01199{height:33.682500pt;}
.h6_c01199{height:38.441250pt;}
.h2_c01199{height:42.722500pt;}
.h3_c01199{height:44.648750pt;}
.h7_c01199{height:47.491563pt;}
.h9_c01199{height:56.679040pt;}
.h4_c01199{height:57.375000pt;}
.h5_c01199{height:1122.546667pt;}
.h0_c01199{height:1122.560000pt;}
.h1_c01199{height:1122.666667pt;}
.w2_c01199{width:793.740000pt;}
.w0_c01199{width:793.760000pt;}
.w1_c01199{width:794.000000pt;}
.x0_c01199{left:0.000000pt;}
.x1_c01199{left:113.472000pt;}
.x6_c01199{left:129.792000pt;}
.x5_c01199{left:305.506667pt;}
.x2_c01199{left:622.353333pt;}
.x3_c01199{left:640.133333pt;}
.x4_c01199{left:679.653333pt;}
}





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

.ir_c01200:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01200;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01200;src:url('chunks/assets/font_7248a18c0fce9c8d94f985b7.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01200;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01200;src:url('chunks/assets/font_b3520332530f344636632b12.woff2')format("woff");}.ff4_c01200{font-family:ff4_c01200;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.ls1_c01200{letter-spacing:-0.053400px;}
.ls0_c01200{letter-spacing:0.000000px;}
.sc__c01200{text-shadow:none;}
.sc0_c01200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01200{-webkit-text-stroke:0px transparent;}
.sc0_c01200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01200{word-spacing:0.000000px;}
._0_c01200{margin-left:-1.390841px;}
._1_c01200{width:1.367061px;}
._3_c01200{width:120.364181px;}
._4_c01200{width:195.786489px;}
._2_c01200{width:667.566720px;}
.fc0_c01200{color:rgb(0,0,0);}
.fs2_c01200{font-size:59.760000px;}
.fs0_c01200{font-size:66.240000px;}
.fs1_c01200{font-size:72.000000px;}
.y0_c01200{bottom:0.000000px;}
.y4_c01200{bottom:57.636000px;}
.y3_c01200{bottom:77.796000px;}
.y11_c01200{bottom:354.315000px;}
.y10_c01200{bottom:384.915000px;}
.yf_c01200{bottom:415.515000px;}
.ye_c01200{bottom:446.115000px;}
.yd_c01200{bottom:476.715000px;}
.yc_c01200{bottom:507.315000px;}
.yb_c01200{bottom:537.915000px;}
.ya_c01200{bottom:568.545000px;}
.y9_c01200{bottom:599.145000px;}
.y8_c01200{bottom:629.745000px;}
.y7_c01200{bottom:657.105000px;}
.y6_c01200{bottom:993.390000px;}
.y5_c01200{bottom:1020.930000px;}
.y2_c01200{bottom:1174.320000px;}
.y1_c01200{bottom:1194.660000px;}
.h2_c01200{height:48.062812px;}
.h3_c01200{height:50.229844px;}
.h5_c01200{height:53.428008px;}
.h4_c01200{height:64.546875px;}
.h0_c01200{height:1262.880000px;}
.h1_c01200{height:1263.000000px;}
.w0_c01200{width:892.980000px;}
.w1_c01200{width:893.250000px;}
.x0_c01200{left:0.000000px;}
.x2_c01200{left:127.656000px;}
.x1_c01200{left:169.950000px;}
.x5_c01200{left:526.965000px;}
.x4_c01200{left:591.585000px;}
.x3_c01200{left:740.490000px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls1_c01200{letter-spacing:-0.047467pt;}
.ls0_c01200{letter-spacing:0.000000pt;}
.ws0_c01200{word-spacing:0.000000pt;}
._0_c01200{margin-left:-1.236303pt;}
._1_c01200{width:1.215165pt;}
._3_c01200{width:106.990383pt;}
._4_c01200{width:174.032435pt;}
._2_c01200{width:593.392640pt;}
.fs2_c01200{font-size:53.120000pt;}
.fs0_c01200{font-size:58.880000pt;}
.fs1_c01200{font-size:64.000000pt;}
.y0_c01200{bottom:0.000000pt;}
.y4_c01200{bottom:51.232000pt;}
.y3_c01200{bottom:69.152000pt;}
.y11_c01200{bottom:314.946667pt;}
.y10_c01200{bottom:342.146667pt;}
.yf_c01200{bottom:369.346667pt;}
.ye_c01200{bottom:396.546667pt;}
.yd_c01200{bottom:423.746667pt;}
.yc_c01200{bottom:450.946667pt;}
.yb_c01200{bottom:478.146667pt;}
.ya_c01200{bottom:505.373333pt;}
.y9_c01200{bottom:532.573333pt;}
.y8_c01200{bottom:559.773333pt;}
.y7_c01200{bottom:584.093333pt;}
.y6_c01200{bottom:883.013333pt;}
.y5_c01200{bottom:907.493333pt;}
.y2_c01200{bottom:1043.840000pt;}
.y1_c01200{bottom:1061.920000pt;}
.h2_c01200{height:42.722500pt;}
.h3_c01200{height:44.648750pt;}
.h5_c01200{height:47.491563pt;}
.h4_c01200{height:57.375000pt;}
.h0_c01200{height:1122.560000pt;}
.h1_c01200{height:1122.666667pt;}
.w0_c01200{width:793.760000pt;}
.w1_c01200{width:794.000000pt;}
.x0_c01200{left:0.000000pt;}
.x2_c01200{left:113.472000pt;}
.x1_c01200{left:151.066667pt;}
.x5_c01200{left:468.413333pt;}
.x4_c01200{left:525.853333pt;}
.x3_c01200{left:658.213333pt;}
}





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

.ir_c01201:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01201;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01201;src:url('chunks/assets/font_eb1e452bf5e5db3ee4f97a1c.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01201;src:url('chunks/assets/font_3731f0e3debee20b3947e4a0.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01201{vertical-align:0.000000px;}
.ls0_c01201{letter-spacing:0.000000px;}
.sc__c01201{text-shadow:none;}
.sc0_c01201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01201{-webkit-text-stroke:0px transparent;}
.sc0_c01201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01201{word-spacing:0.000000px;}
._0_c01201{margin-left:-1.258891px;}
._1_c01201{width:1.015800px;}
.fc0_c01201{color:rgb(0,0,0);}
.fs1_c01201{font-size:59.760000px;}
.fs0_c01201{font-size:66.240000px;}
.y0_c01201{bottom:0.000000px;}
.y4_c01201{bottom:57.636000px;}
.y3_c01201{bottom:77.796000px;}
.y7_c01201{bottom:262.290000px;}
.y6_c01201{bottom:289.875000px;}
.y5_c01201{bottom:726.585000px;}
.y2_c01201{bottom:1174.320000px;}
.y1_c01201{bottom:1194.660000px;}
.h2_c01201{height:48.062812px;}
.h3_c01201{height:50.229844px;}
.h4_c01201{height:53.428008px;}
.h0_c01201{height:1262.880000px;}
.h1_c01201{height:1263.000000px;}
.w0_c01201{width:892.980000px;}
.w1_c01201{width:893.250000px;}
.x0_c01201{left:0.000000px;}
.x1_c01201{left:127.656000px;}
.x2_c01201{left:763.170000px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls0_c01201{letter-spacing:0.000000pt;}
.ws0_c01201{word-spacing:0.000000pt;}
._0_c01201{margin-left:-1.119014pt;}
._1_c01201{width:0.902934pt;}
.fs1_c01201{font-size:53.120000pt;}
.fs0_c01201{font-size:58.880000pt;}
.y0_c01201{bottom:0.000000pt;}
.y4_c01201{bottom:51.232000pt;}
.y3_c01201{bottom:69.152000pt;}
.y7_c01201{bottom:233.146667pt;}
.y6_c01201{bottom:257.666667pt;}
.y5_c01201{bottom:645.853333pt;}
.y2_c01201{bottom:1043.840000pt;}
.y1_c01201{bottom:1061.920000pt;}
.h2_c01201{height:42.722500pt;}
.h3_c01201{height:44.648750pt;}
.h4_c01201{height:47.491563pt;}
.h0_c01201{height:1122.560000pt;}
.h1_c01201{height:1122.666667pt;}
.w0_c01201{width:793.760000pt;}
.w1_c01201{width:794.000000pt;}
.x0_c01201{left:0.000000pt;}
.x1_c01201{left:113.472000pt;}
.x2_c01201{left:678.373333pt;}
}





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

.ir_c01202:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01202;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01202;src:url('chunks/assets/font_21b11549a40e605d5790e862.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01202;src:url('chunks/assets/font_1cba1a17182fbd78c2e41a1c.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01202;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01202{font-family:ff4_c01202;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:ff5_c01202;src:url('chunks/assets/font_00934476aee8229490f6f0e0.woff2')format("woff");}.ff5_c01202{font-family:ff5_c01202;line-height:0.915039;font-style:normal;font-weight: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_c01202;src:url('chunks/assets/font_4b7f85644b712734e524ab2e.woff2')format("woff");}.ff6_c01202{font-family:ff6_c01202;line-height:1.009766;font-style:normal;font-weight: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_c01202;src:url('chunks/assets/font_c032de474f66c6fcce53ddf0.woff2')format("woff");}.ff7_c01202{font-family:ff7_c01202;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:ff8_c01202;src:url('chunks/assets/font_cc67008b7585464914570f82.woff2')format("woff");}.ff8_c01202{font-family:ff8_c01202;line-height:1.106934;font-style:normal;font-weight: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_c01202;src:url('chunks/assets/font_50ad1d63c206a48b51a4d178.woff2')format("woff");}.ff9_c01202{font-family:ff9_c01202;line-height:1.104492;font-style:normal;font-weight: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_c01202;src:url('chunks/assets/font_00c746fa15e8645876d38c2c.woff2')format("woff");}.ffa_c01202{font-family:ffa_c01202;line-height:1.575000;font-style:normal;font-weight: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_c01202;src:url('chunks/assets/font_cf911cb028b75b120b53d3b4.woff2')format("woff");}.ffb_c01202{font-family:ffb_c01202;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01202{vertical-align:0.000000px;}
.ls5_c01202{letter-spacing:-0.540600px;}
.ls7_c01202{letter-spacing:-0.247800px;}
.ls6_c01202{letter-spacing:-0.181200px;}
.ls8_c01202{letter-spacing:-0.152400px;}
.ls4_c01202{letter-spacing:-0.072000px;}
.ls3_c01202{letter-spacing:0.000000px;}
.ls2_c01202{letter-spacing:0.216000px;}
.ls0_c01202{letter-spacing:20.784000px;}
.ls1_c01202{letter-spacing:20.808000px;}
.sc__c01202{text-shadow:none;}
.sc1_c01202{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01202{-webkit-text-stroke:0px transparent;}
.sc1_c01202{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01202{word-spacing:-20.554560px;}
.ws2_c01202{word-spacing:-20.232000px;}
.ws1_c01202{word-spacing:-18.000000px;}
.ws3_c01202{word-spacing:0.000000px;}
._8_c01202{margin-left:-3.816000px;}
._2_c01202{margin-left:-2.695848px;}
._0_c01202{margin-left:-1.390841px;}
._1_c01202{width:1.435730px;}
._3_c01202{width:2.664000px;}
._4_c01202{width:4.021977px;}
._7_c01202{width:5.976000px;}
._a_c01202{width:7.056000px;}
._9_c01202{width:8.280000px;}
._6_c01202{width:11.880000px;}
._5_c01202{width:13.104000px;}
._e_c01202{width:41.890841px;}
._d_c01202{width:44.100000px;}
._c_c01202{width:48.969236px;}
._b_c01202{width:50.211112px;}
.fc1_c01202{color:rgb(238,119,0);}
.fc0_c01202{color:rgb(0,0,0);}
.fs5_c01202{font-size:38.880000px;}
.fs4_c01202{font-size:48.240000px;}
.fs6_c01202{font-size:59.760000px;}
.fs0_c01202{font-size:66.240000px;}
.fs2_c01202{font-size:72.000000px;}
.fs3_c01202{font-size:84.240000px;}
.fs1_c01202{font-size:95.760000px;}
.y0_c01202{bottom:0.000000px;}
.y6_c01202{bottom:5.040000px;}
.y9_c01202{bottom:5.220000px;}
.yb_c01202{bottom:5.235000px;}
.ye_c01202{bottom:8.820000px;}
.y5_c01202{bottom:31.140000px;}
.y8_c01202{bottom:31.320000px;}
.yd_c01202{bottom:40.860000px;}
.y2_c01202{bottom:77.796000px;}
.y2c_c01202{bottom:109.296000px;}
.y2b_c01202{bottom:127.476000px;}
.y2a_c01202{bottom:145.656000px;}
.y29_c01202{bottom:150.870000px;}
.y28_c01202{bottom:206.130000px;}
.y27_c01202{bottom:229.890000px;}
.y26_c01202{bottom:253.650000px;}
.y25_c01202{bottom:277.410000px;}
.y24_c01202{bottom:301.395000px;}
.y23_c01202{bottom:325.155000px;}
.y22_c01202{bottom:348.915000px;}
.y21_c01202{bottom:372.675000px;}
.y20_c01202{bottom:396.615000px;}
.y1e_c01202{bottom:435.495000px;}
.y1f_c01202{bottom:440.715000px;}
.y1d_c01202{bottom:459.255000px;}
.y1c_c01202{bottom:483.195000px;}
.y1b_c01202{bottom:506.955000px;}
.y1a_c01202{bottom:530.715000px;}
.y19_c01202{bottom:554.475000px;}
.y18_c01202{bottom:578.445000px;}
.y17_c01202{bottom:602.205000px;}
.y16_c01202{bottom:640.725000px;}
.y15_c01202{bottom:664.845000px;}
.y14_c01202{bottom:688.425000px;}
.y13_c01202{bottom:712.185000px;}
.y12_c01202{bottom:735.945000px;}
.y11_c01202{bottom:759.885000px;}
.y10_c01202{bottom:805.065000px;}
.yf_c01202{bottom:872.790000px;}
.yc_c01202{bottom:927.150000px;}
.ya_c01202{bottom:991.215000px;}
.y7_c01202{bottom:991.230000px;}
.y4_c01202{bottom:1045.770000px;}
.y3_c01202{bottom:1131.120000px;}
.y1_c01202{bottom:1194.660000px;}
.h12_c01202{height:41.484960px;}
.h11_c01202{height:43.128633px;}
.h2_c01202{height:48.062812px;}
.h14_c01202{height:48.905156px;}
.h3_c01202{height:50.229844px;}
.h7_c01202{height:52.382812px;}
.h5_c01202{height:54.345000px;}
.hc_c01202{height:54.351000px;}
.h8_c01202{height:54.525000px;}
.h9_c01202{height:54.531000px;}
.ha_c01202{height:54.540000px;}
.h6_c01202{height:63.550195px;}
.h13_c01202{height:63.763920px;}
.hb_c01202{height:64.065000px;}
.hf_c01202{height:64.371094px;}
.he_c01202{height:64.546875px;}
.h4_c01202{height:69.575625px;}
.hd_c01202{height:87.859687px;}
.h10_c01202{height:1262.865000px;}
.h0_c01202{height:1262.880000px;}
.h1_c01202{height:1263.000000px;}
.w3_c01202{width:230.415000px;}
.w4_c01202{width:230.430000px;}
.w2_c01202{width:403.626000px;}
.w5_c01202{width:892.957500px;}
.w0_c01202{width:892.980000px;}
.w1_c01202{width:893.250000px;}
.x0_c01202{left:0.000000px;}
.x4_c01202{left:10.251000px;}
.x5_c01202{left:31.485000px;}
.x3_c01202{left:127.656000px;}
.x9_c01202{left:146.016000px;}
.x1_c01202{left:169.950000px;}
.x7_c01202{left:268.207500px;}
.x8_c01202{left:288.210000px;}
.x6_c01202{left:531.300000px;}
.x2_c01202{left:740.490000px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls5_c01202{letter-spacing:-0.480533pt;}
.ls7_c01202{letter-spacing:-0.220267pt;}
.ls6_c01202{letter-spacing:-0.161067pt;}
.ls8_c01202{letter-spacing:-0.135467pt;}
.ls4_c01202{letter-spacing:-0.064000pt;}
.ls3_c01202{letter-spacing:0.000000pt;}
.ls2_c01202{letter-spacing:0.192000pt;}
.ls0_c01202{letter-spacing:18.474667pt;}
.ls1_c01202{letter-spacing:18.496000pt;}
.ws0_c01202{word-spacing:-18.270720pt;}
.ws2_c01202{word-spacing:-17.984000pt;}
.ws1_c01202{word-spacing:-16.000000pt;}
.ws3_c01202{word-spacing:0.000000pt;}
._8_c01202{margin-left:-3.392000pt;}
._2_c01202{margin-left:-2.396310pt;}
._0_c01202{margin-left:-1.236303pt;}
._1_c01202{width:1.276204pt;}
._3_c01202{width:2.368000pt;}
._4_c01202{width:3.575091pt;}
._7_c01202{width:5.312000pt;}
._a_c01202{width:6.272000pt;}
._9_c01202{width:7.360000pt;}
._6_c01202{width:10.560000pt;}
._5_c01202{width:11.648000pt;}
._e_c01202{width:37.236303pt;}
._d_c01202{width:39.200000pt;}
._c_c01202{width:43.528210pt;}
._b_c01202{width:44.632099pt;}
.fs5_c01202{font-size:34.560000pt;}
.fs4_c01202{font-size:42.880000pt;}
.fs6_c01202{font-size:53.120000pt;}
.fs0_c01202{font-size:58.880000pt;}
.fs2_c01202{font-size:64.000000pt;}
.fs3_c01202{font-size:74.880000pt;}
.fs1_c01202{font-size:85.120000pt;}
.y0_c01202{bottom:0.000000pt;}
.y6_c01202{bottom:4.480000pt;}
.y9_c01202{bottom:4.640000pt;}
.yb_c01202{bottom:4.653333pt;}
.ye_c01202{bottom:7.840000pt;}
.y5_c01202{bottom:27.680000pt;}
.y8_c01202{bottom:27.840000pt;}
.yd_c01202{bottom:36.320000pt;}
.y2_c01202{bottom:69.152000pt;}
.y2c_c01202{bottom:97.152000pt;}
.y2b_c01202{bottom:113.312000pt;}
.y2a_c01202{bottom:129.472000pt;}
.y29_c01202{bottom:134.106667pt;}
.y28_c01202{bottom:183.226667pt;}
.y27_c01202{bottom:204.346667pt;}
.y26_c01202{bottom:225.466667pt;}
.y25_c01202{bottom:246.586667pt;}
.y24_c01202{bottom:267.906667pt;}
.y23_c01202{bottom:289.026667pt;}
.y22_c01202{bottom:310.146667pt;}
.y21_c01202{bottom:331.266667pt;}
.y20_c01202{bottom:352.546667pt;}
.y1e_c01202{bottom:387.106667pt;}
.y1f_c01202{bottom:391.746667pt;}
.y1d_c01202{bottom:408.226667pt;}
.y1c_c01202{bottom:429.506667pt;}
.y1b_c01202{bottom:450.626667pt;}
.y1a_c01202{bottom:471.746667pt;}
.y19_c01202{bottom:492.866667pt;}
.y18_c01202{bottom:514.173333pt;}
.y17_c01202{bottom:535.293333pt;}
.y16_c01202{bottom:569.533333pt;}
.y15_c01202{bottom:590.973333pt;}
.y14_c01202{bottom:611.933333pt;}
.y13_c01202{bottom:633.053333pt;}
.y12_c01202{bottom:654.173333pt;}
.y11_c01202{bottom:675.453333pt;}
.y10_c01202{bottom:715.613333pt;}
.yf_c01202{bottom:775.813333pt;}
.yc_c01202{bottom:824.133333pt;}
.ya_c01202{bottom:881.080000pt;}
.y7_c01202{bottom:881.093333pt;}
.y4_c01202{bottom:929.573333pt;}
.y3_c01202{bottom:1005.440000pt;}
.y1_c01202{bottom:1061.920000pt;}
.h12_c01202{height:36.875520pt;}
.h11_c01202{height:38.336562pt;}
.h2_c01202{height:42.722500pt;}
.h14_c01202{height:43.471250pt;}
.h3_c01202{height:44.648750pt;}
.h7_c01202{height:46.562500pt;}
.h5_c01202{height:48.306667pt;}
.hc_c01202{height:48.312000pt;}
.h8_c01202{height:48.466667pt;}
.h9_c01202{height:48.472000pt;}
.ha_c01202{height:48.480000pt;}
.h6_c01202{height:56.489062pt;}
.h13_c01202{height:56.679040pt;}
.hb_c01202{height:56.946667pt;}
.hf_c01202{height:57.218750pt;}
.he_c01202{height:57.375000pt;}
.h4_c01202{height:61.845000pt;}
.hd_c01202{height:78.097500pt;}
.h10_c01202{height:1122.546667pt;}
.h0_c01202{height:1122.560000pt;}
.h1_c01202{height:1122.666667pt;}
.w3_c01202{width:204.813333pt;}
.w4_c01202{width:204.826667pt;}
.w2_c01202{width:358.778667pt;}
.w5_c01202{width:793.740000pt;}
.w0_c01202{width:793.760000pt;}
.w1_c01202{width:794.000000pt;}
.x0_c01202{left:0.000000pt;}
.x4_c01202{left:9.112000pt;}
.x5_c01202{left:27.986667pt;}
.x3_c01202{left:113.472000pt;}
.x9_c01202{left:129.792000pt;}
.x1_c01202{left:151.066667pt;}
.x7_c01202{left:238.406667pt;}
.x8_c01202{left:256.186667pt;}
.x6_c01202{left:472.266667pt;}
.x2_c01202{left:658.213333pt;}
}





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

.ir_c01203:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01203;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01203;src:url('chunks/assets/font_0e5b023a3dbaf251af5f4869.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01203;src:url('chunks/assets/font_efff5148c72c99488ff0c14c.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01203;src:url('chunks/assets/font_b00b99f975a12291562b187d.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01203;src:url('chunks/assets/font_74591bb2494aad49a82922ed.woff2')format("woff");}.ff5_c01203{font-family:ff5_c01203;line-height:1.211914;font-style:normal;font-weight: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_c01203;src:url('chunks/assets/font_a35d52dde42e49f7b4fe6f7f.woff2')format("woff");}.ff6_c01203{font-family:ff6_c01203;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01203{vertical-align:0.000000px;}
.ls4_c01203{letter-spacing:-0.576000px;}
.ls5_c01203{letter-spacing:-0.432000px;}
.lsa_c01203{letter-spacing:-0.337200px;}
.ls9_c01203{letter-spacing:-0.247800px;}
.ls6_c01203{letter-spacing:-0.181200px;}
.ls3_c01203{letter-spacing:0.000000px;}
.ls1_c01203{letter-spacing:0.144000px;}
.ls8_c01203{letter-spacing:0.150000px;}
.ls2_c01203{letter-spacing:0.152400px;}
.ls0_c01203{letter-spacing:0.216000px;}
.ls7_c01203{letter-spacing:0.288000px;}
.sc__c01203{text-shadow:none;}
.sc0_c01203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01203{-webkit-text-stroke:0px transparent;}
.sc0_c01203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01203{word-spacing:-21.187920px;}
.ws2_c01203{word-spacing:-21.035520px;}
.ws1_c01203{word-spacing:-20.698320px;}
.ws0_c01203{word-spacing:-20.304000px;}
.ws4_c01203{word-spacing:0.000000px;}
._c_c01203{margin-left:-4.858819px;}
._9_c01203{margin-left:-3.651566px;}
._8_c01203{margin-left:-2.543976px;}
._0_c01203{margin-left:-1.258891px;}
._4_c01203{width:1.440000px;}
._7_c01203{width:2.472048px;}
._a_c01203{width:4.032000px;}
._b_c01203{width:5.040000px;}
._d_c01203{width:6.154891px;}
._6_c01203{width:7.318915px;}
._5_c01203{width:8.712000px;}
._11_c01203{width:9.840024px;}
._3_c01203{width:16.488000px;}
._2_c01203{width:18.072000px;}
._1_c01203{width:23.256000px;}
._12_c01203{width:24.800400px;}
._13_c01203{width:25.995600px;}
._10_c01203{width:27.984024px;}
._f_c01203{width:37.869782px;}
._e_c01203{width:38.952000px;}
.fc0_c01203{color:rgb(0,0,0);}
.fs3_c01203{font-size:38.880000px;}
.fs2_c01203{font-size:48.240000px;}
.fs4_c01203{font-size:59.760000px;}
.fs0_c01203{font-size:66.240000px;}
.fs1_c01203{font-size:72.000000px;}
.y0_c01203{bottom:0.000000px;}
.y3_c01203{bottom:57.636000px;}
.y2_c01203{bottom:77.796000px;}
.y33_c01203{bottom:109.296000px;}
.y32_c01203{bottom:127.476000px;}
.y31_c01203{bottom:132.696000px;}
.y30_c01203{bottom:145.656000px;}
.y2f_c01203{bottom:164.010000px;}
.y2e_c01203{bottom:182.190000px;}
.y2d_c01203{bottom:200.370000px;}
.y2c_c01203{bottom:205.590000px;}
.y2b_c01203{bottom:220.170000px;}
.y2a_c01203{bottom:252.750000px;}
.y29_c01203{bottom:276.690000px;}
.y28_c01203{bottom:300.495000px;}
.y27_c01203{bottom:324.255000px;}
.y26_c01203{bottom:348.015000px;}
.y24_c01203{bottom:371.955000px;}
.y25_c01203{bottom:377.895000px;}
.y23_c01203{bottom:395.715000px;}
.y22_c01203{bottom:419.475000px;}
.y20_c01203{bottom:458.355000px;}
.y21_c01203{bottom:464.295000px;}
.y1f_c01203{bottom:482.115000px;}
.y1e_c01203{bottom:505.875000px;}
.y1d_c01203{bottom:529.635000px;}
.y1c_c01203{bottom:553.575000px;}
.y1b_c01203{bottom:577.365000px;}
.y1a_c01203{bottom:601.125000px;}
.y19_c01203{bottom:624.885000px;}
.y18_c01203{bottom:648.645000px;}
.y17_c01203{bottom:672.585000px;}
.y16_c01203{bottom:696.345000px;}
.y15_c01203{bottom:720.105000px;}
.y14_c01203{bottom:743.865000px;}
.y13_c01203{bottom:767.805000px;}
.y12_c01203{bottom:791.565000px;}
.y11_c01203{bottom:815.325000px;}
.y10_c01203{bottom:854.250000px;}
.yf_c01203{bottom:878.010000px;}
.ye_c01203{bottom:901.770000px;}
.yd_c01203{bottom:925.530000px;}
.yc_c01203{bottom:949.470000px;}
.yb_c01203{bottom:973.230000px;}
.ya_c01203{bottom:996.990000px;}
.y9_c01203{bottom:1020.750000px;}
.y8_c01203{bottom:1044.690000px;}
.y7_c01203{bottom:1068.450000px;}
.y6_c01203{bottom:1092.210000px;}
.y5_c01203{bottom:1115.970000px;}
.y4_c01203{bottom:1139.940000px;}
.y1_c01203{bottom:1194.660000px;}
.h7_c01203{height:41.484960px;}
.h6_c01203{height:43.246406px;}
.h2_c01203{height:48.062812px;}
.h3_c01203{height:50.229844px;}
.h8_c01203{height:63.763920px;}
.h4_c01203{height:64.546875px;}
.h5_c01203{height:1262.865000px;}
.h0_c01203{height:1262.880000px;}
.h1_c01203{height:1263.000000px;}
.w2_c01203{width:892.957500px;}
.w0_c01203{width:892.980000px;}
.w1_c01203{width:893.250000px;}
.x0_c01203{left:0.000000px;}
.x1_c01203{left:127.656000px;}
.x7_c01203{left:146.016000px;}
.x2_c01203{left:312.892500px;}
.x3_c01203{left:332.895000px;}
.x6_c01203{left:343.695000px;}
.x4_c01203{left:740.467500px;}
.x5_c01203{left:760.470000px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls4_c01203{letter-spacing:-0.512000pt;}
.ls5_c01203{letter-spacing:-0.384000pt;}
.lsa_c01203{letter-spacing:-0.299733pt;}
.ls9_c01203{letter-spacing:-0.220267pt;}
.ls6_c01203{letter-spacing:-0.161067pt;}
.ls3_c01203{letter-spacing:0.000000pt;}
.ls1_c01203{letter-spacing:0.128000pt;}
.ls8_c01203{letter-spacing:0.133333pt;}
.ls2_c01203{letter-spacing:0.135467pt;}
.ls0_c01203{letter-spacing:0.192000pt;}
.ls7_c01203{letter-spacing:0.256000pt;}
.ws3_c01203{word-spacing:-18.833707pt;}
.ws2_c01203{word-spacing:-18.698240pt;}
.ws1_c01203{word-spacing:-18.398507pt;}
.ws0_c01203{word-spacing:-18.048000pt;}
.ws4_c01203{word-spacing:0.000000pt;}
._c_c01203{margin-left:-4.318950pt;}
._9_c01203{margin-left:-3.245837pt;}
._8_c01203{margin-left:-2.261312pt;}
._0_c01203{margin-left:-1.119014pt;}
._4_c01203{width:1.280000pt;}
._7_c01203{width:2.197376pt;}
._a_c01203{width:3.584000pt;}
._b_c01203{width:4.480000pt;}
._d_c01203{width:5.471014pt;}
._6_c01203{width:6.505702pt;}
._5_c01203{width:7.744000pt;}
._11_c01203{width:8.746688pt;}
._3_c01203{width:14.656000pt;}
._2_c01203{width:16.064000pt;}
._1_c01203{width:20.672000pt;}
._12_c01203{width:22.044800pt;}
._13_c01203{width:23.107200pt;}
._10_c01203{width:24.874688pt;}
._f_c01203{width:33.662029pt;}
._e_c01203{width:34.624000pt;}
.fs3_c01203{font-size:34.560000pt;}
.fs2_c01203{font-size:42.880000pt;}
.fs4_c01203{font-size:53.120000pt;}
.fs0_c01203{font-size:58.880000pt;}
.fs1_c01203{font-size:64.000000pt;}
.y0_c01203{bottom:0.000000pt;}
.y3_c01203{bottom:51.232000pt;}
.y2_c01203{bottom:69.152000pt;}
.y33_c01203{bottom:97.152000pt;}
.y32_c01203{bottom:113.312000pt;}
.y31_c01203{bottom:117.952000pt;}
.y30_c01203{bottom:129.472000pt;}
.y2f_c01203{bottom:145.786667pt;}
.y2e_c01203{bottom:161.946667pt;}
.y2d_c01203{bottom:178.106667pt;}
.y2c_c01203{bottom:182.746667pt;}
.y2b_c01203{bottom:195.706667pt;}
.y2a_c01203{bottom:224.666667pt;}
.y29_c01203{bottom:245.946667pt;}
.y28_c01203{bottom:267.106667pt;}
.y27_c01203{bottom:288.226667pt;}
.y26_c01203{bottom:309.346667pt;}
.y24_c01203{bottom:330.626667pt;}
.y25_c01203{bottom:335.906667pt;}
.y23_c01203{bottom:351.746667pt;}
.y22_c01203{bottom:372.866667pt;}
.y20_c01203{bottom:407.426667pt;}
.y21_c01203{bottom:412.706667pt;}
.y1f_c01203{bottom:428.546667pt;}
.y1e_c01203{bottom:449.666667pt;}
.y1d_c01203{bottom:470.786667pt;}
.y1c_c01203{bottom:492.066667pt;}
.y1b_c01203{bottom:513.213333pt;}
.y1a_c01203{bottom:534.333333pt;}
.y19_c01203{bottom:555.453333pt;}
.y18_c01203{bottom:576.573333pt;}
.y17_c01203{bottom:597.853333pt;}
.y16_c01203{bottom:618.973333pt;}
.y15_c01203{bottom:640.093333pt;}
.y14_c01203{bottom:661.213333pt;}
.y13_c01203{bottom:682.493333pt;}
.y12_c01203{bottom:703.613333pt;}
.y11_c01203{bottom:724.733333pt;}
.y10_c01203{bottom:759.333333pt;}
.yf_c01203{bottom:780.453333pt;}
.ye_c01203{bottom:801.573333pt;}
.yd_c01203{bottom:822.693333pt;}
.yc_c01203{bottom:843.973333pt;}
.yb_c01203{bottom:865.093333pt;}
.ya_c01203{bottom:886.213333pt;}
.y9_c01203{bottom:907.333333pt;}
.y8_c01203{bottom:928.613333pt;}
.y7_c01203{bottom:949.733333pt;}
.y6_c01203{bottom:970.853333pt;}
.y5_c01203{bottom:991.973333pt;}
.y4_c01203{bottom:1013.280000pt;}
.y1_c01203{bottom:1061.920000pt;}
.h7_c01203{height:36.875520pt;}
.h6_c01203{height:38.441250pt;}
.h2_c01203{height:42.722500pt;}
.h3_c01203{height:44.648750pt;}
.h8_c01203{height:56.679040pt;}
.h4_c01203{height:57.375000pt;}
.h5_c01203{height:1122.546667pt;}
.h0_c01203{height:1122.560000pt;}
.h1_c01203{height:1122.666667pt;}
.w2_c01203{width:793.740000pt;}
.w0_c01203{width:793.760000pt;}
.w1_c01203{width:794.000000pt;}
.x0_c01203{left:0.000000pt;}
.x1_c01203{left:113.472000pt;}
.x7_c01203{left:129.792000pt;}
.x2_c01203{left:278.126667pt;}
.x3_c01203{left:295.906667pt;}
.x6_c01203{left:305.506667pt;}
.x4_c01203{left:658.193333pt;}
.x5_c01203{left:675.973333pt;}
}





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

.ir_c01204:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01204;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01204;src:url('chunks/assets/font_00721d48f5d0396e4700bc1f.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01204;src:url('chunks/assets/font_92939392d65449704f53b4d6.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01204;src:url('chunks/assets/font_5130300874a019da057a437e.woff2')format("woff");}.ff4_c01204{font-family:ff4_c01204;line-height:1.575000;font-style:normal;font-weight: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_c01204;src:url('chunks/assets/font_0cc039d70be56ef107e3512b.woff2')format("woff");}.ff5_c01204{font-family:ff5_c01204;line-height:1.024902;font-style:normal;font-weight: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_c01204;src:url('chunks/assets/font_1bfaf389e91878fbf89d4056.woff2')format("woff");}.ff6_c01204{font-family:ff6_c01204;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01204{vertical-align:0.000000px;}
.ls2_c01204{letter-spacing:-0.432000px;}
.ls5_c01204{letter-spacing:-0.247800px;}
.ls3_c01204{letter-spacing:-0.181200px;}
.ls1_c01204{letter-spacing:0.000000px;}
.ls0_c01204{letter-spacing:0.144000px;}
.ls4_c01204{letter-spacing:0.150000px;}
.sc__c01204{text-shadow:none;}
.sc0_c01204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01204{-webkit-text-stroke:0px transparent;}
.sc0_c01204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01204{word-spacing:0.000000px;}
._b_c01204{margin-left:-3.073159px;}
._0_c01204{margin-left:-1.390841px;}
._3_c01204{width:1.260000px;}
._c_c01204{width:2.316024px;}
._d_c01204{width:4.032000px;}
._2_c01204{width:5.184000px;}
._1_c01204{width:6.840000px;}
._6_c01204{width:8.496000px;}
._4_c01204{width:9.648000px;}
._10_c01204{width:11.520000px;}
._8_c01204{width:13.389587px;}
._7_c01204{width:14.808024px;}
._f_c01204{width:16.344000px;}
._e_c01204{width:17.568000px;}
._5_c01204{width:21.168000px;}
._a_c01204{width:26.712000px;}
._9_c01204{width:27.864000px;}
.fc0_c01204{color:rgb(0,0,0);}
.fs3_c01204{font-size:38.880000px;}
.fs2_c01204{font-size:48.240000px;}
.fs4_c01204{font-size:59.760000px;}
.fs0_c01204{font-size:66.240000px;}
.fs1_c01204{font-size:72.000000px;}
.y34_c01204{bottom:-0.180000px;}
.y0_c01204{bottom:0.000000px;}
.y33_c01204{bottom:17.145000px;}
.y32_c01204{bottom:34.425000px;}
.y3_c01204{bottom:57.636000px;}
.y2_c01204{bottom:77.796000px;}
.y30_c01204{bottom:109.296000px;}
.y2f_c01204{bottom:127.476000px;}
.y2e_c01204{bottom:145.656000px;}
.y2d_c01204{bottom:164.010000px;}
.y2c_c01204{bottom:169.230000px;}
.y2b_c01204{bottom:183.810000px;}
.y2a_c01204{bottom:214.050000px;}
.y29_c01204{bottom:237.810000px;}
.y28_c01204{bottom:261.570000px;}
.y27_c01204{bottom:285.375000px;}
.y26_c01204{bottom:309.315000px;}
.y25_c01204{bottom:333.075000px;}
.y23_c01204{bottom:371.955000px;}
.y24_c01204{bottom:377.895000px;}
.y22_c01204{bottom:395.715000px;}
.y21_c01204{bottom:419.475000px;}
.y20_c01204{bottom:443.235000px;}
.y1f_c01204{bottom:466.995000px;}
.y1e_c01204{bottom:490.935000px;}
.y1d_c01204{bottom:514.695000px;}
.y1c_c01204{bottom:538.455000px;}
.y1b_c01204{bottom:562.215000px;}
.y1a_c01204{bottom:586.185000px;}
.y19_c01204{bottom:609.945000px;}
.y18_c01204{bottom:633.705000px;}
.y17_c01204{bottom:672.585000px;}
.y16_c01204{bottom:696.345000px;}
.y15_c01204{bottom:720.105000px;}
.y14_c01204{bottom:743.865000px;}
.y13_c01204{bottom:767.805000px;}
.y12_c01204{bottom:791.565000px;}
.y11_c01204{bottom:815.325000px;}
.y31_c01204{bottom:830.265000px;}
.y10_c01204{bottom:854.250000px;}
.yf_c01204{bottom:878.010000px;}
.ye_c01204{bottom:901.770000px;}
.yd_c01204{bottom:925.530000px;}
.yc_c01204{bottom:949.470000px;}
.yb_c01204{bottom:973.230000px;}
.ya_c01204{bottom:996.990000px;}
.y9_c01204{bottom:1020.750000px;}
.y8_c01204{bottom:1044.690000px;}
.y7_c01204{bottom:1068.450000px;}
.y6_c01204{bottom:1092.210000px;}
.y5_c01204{bottom:1115.970000px;}
.y4_c01204{bottom:1139.940000px;}
.y1_c01204{bottom:1194.660000px;}
.h7_c01204{height:41.484960px;}
.h6_c01204{height:43.246406px;}
.h2_c01204{height:48.062812px;}
.h9_c01204{height:48.082500px;}
.h3_c01204{height:50.229844px;}
.ha_c01204{height:53.428008px;}
.h8_c01204{height:63.763920px;}
.h4_c01204{height:64.546875px;}
.h5_c01204{height:1262.865000px;}
.h0_c01204{height:1262.880000px;}
.h1_c01204{height:1263.000000px;}
.w3_c01204{width:203.790000px;}
.w2_c01204{width:892.957500px;}
.w0_c01204{width:892.980000px;}
.w1_c01204{width:893.250000px;}
.x0_c01204{left:0.000000px;}
.x3_c01204{left:127.656000px;}
.x7_c01204{left:146.016000px;}
.x1_c01204{left:169.950000px;}
.x4_c01204{left:258.667500px;}
.x5_c01204{left:278.670000px;}
.x6_c01204{left:343.695000px;}
.x8_c01204{left:560.820000px;}
.x2_c01204{left:740.490000px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls2_c01204{letter-spacing:-0.384000pt;}
.ls5_c01204{letter-spacing:-0.220267pt;}
.ls3_c01204{letter-spacing:-0.161067pt;}
.ls1_c01204{letter-spacing:0.000000pt;}
.ls0_c01204{letter-spacing:0.128000pt;}
.ls4_c01204{letter-spacing:0.133333pt;}
.ws0_c01204{word-spacing:0.000000pt;}
._b_c01204{margin-left:-2.731697pt;}
._0_c01204{margin-left:-1.236303pt;}
._3_c01204{width:1.120000pt;}
._c_c01204{width:2.058688pt;}
._d_c01204{width:3.584000pt;}
._2_c01204{width:4.608000pt;}
._1_c01204{width:6.080000pt;}
._6_c01204{width:7.552000pt;}
._4_c01204{width:8.576000pt;}
._10_c01204{width:10.240000pt;}
._8_c01204{width:11.901855pt;}
._7_c01204{width:13.162688pt;}
._f_c01204{width:14.528000pt;}
._e_c01204{width:15.616000pt;}
._5_c01204{width:18.816000pt;}
._a_c01204{width:23.744000pt;}
._9_c01204{width:24.768000pt;}
.fs3_c01204{font-size:34.560000pt;}
.fs2_c01204{font-size:42.880000pt;}
.fs4_c01204{font-size:53.120000pt;}
.fs0_c01204{font-size:58.880000pt;}
.fs1_c01204{font-size:64.000000pt;}
.y34_c01204{bottom:-0.160000pt;}
.y0_c01204{bottom:0.000000pt;}
.y33_c01204{bottom:15.240000pt;}
.y32_c01204{bottom:30.600000pt;}
.y3_c01204{bottom:51.232000pt;}
.y2_c01204{bottom:69.152000pt;}
.y30_c01204{bottom:97.152000pt;}
.y2f_c01204{bottom:113.312000pt;}
.y2e_c01204{bottom:129.472000pt;}
.y2d_c01204{bottom:145.786667pt;}
.y2c_c01204{bottom:150.426667pt;}
.y2b_c01204{bottom:163.386667pt;}
.y2a_c01204{bottom:190.266667pt;}
.y29_c01204{bottom:211.386667pt;}
.y28_c01204{bottom:232.506667pt;}
.y27_c01204{bottom:253.666667pt;}
.y26_c01204{bottom:274.946667pt;}
.y25_c01204{bottom:296.066667pt;}
.y23_c01204{bottom:330.626667pt;}
.y24_c01204{bottom:335.906667pt;}
.y22_c01204{bottom:351.746667pt;}
.y21_c01204{bottom:372.866667pt;}
.y20_c01204{bottom:393.986667pt;}
.y1f_c01204{bottom:415.106667pt;}
.y1e_c01204{bottom:436.386667pt;}
.y1d_c01204{bottom:457.506667pt;}
.y1c_c01204{bottom:478.626667pt;}
.y1b_c01204{bottom:499.746667pt;}
.y1a_c01204{bottom:521.053333pt;}
.y19_c01204{bottom:542.173333pt;}
.y18_c01204{bottom:563.293333pt;}
.y17_c01204{bottom:597.853333pt;}
.y16_c01204{bottom:618.973333pt;}
.y15_c01204{bottom:640.093333pt;}
.y14_c01204{bottom:661.213333pt;}
.y13_c01204{bottom:682.493333pt;}
.y12_c01204{bottom:703.613333pt;}
.y11_c01204{bottom:724.733333pt;}
.y31_c01204{bottom:738.013333pt;}
.y10_c01204{bottom:759.333333pt;}
.yf_c01204{bottom:780.453333pt;}
.ye_c01204{bottom:801.573333pt;}
.yd_c01204{bottom:822.693333pt;}
.yc_c01204{bottom:843.973333pt;}
.yb_c01204{bottom:865.093333pt;}
.ya_c01204{bottom:886.213333pt;}
.y9_c01204{bottom:907.333333pt;}
.y8_c01204{bottom:928.613333pt;}
.y7_c01204{bottom:949.733333pt;}
.y6_c01204{bottom:970.853333pt;}
.y5_c01204{bottom:991.973333pt;}
.y4_c01204{bottom:1013.280000pt;}
.y1_c01204{bottom:1061.920000pt;}
.h7_c01204{height:36.875520pt;}
.h6_c01204{height:38.441250pt;}
.h2_c01204{height:42.722500pt;}
.h9_c01204{height:42.740000pt;}
.h3_c01204{height:44.648750pt;}
.ha_c01204{height:47.491563pt;}
.h8_c01204{height:56.679040pt;}
.h4_c01204{height:57.375000pt;}
.h5_c01204{height:1122.546667pt;}
.h0_c01204{height:1122.560000pt;}
.h1_c01204{height:1122.666667pt;}
.w3_c01204{width:181.146667pt;}
.w2_c01204{width:793.740000pt;}
.w0_c01204{width:793.760000pt;}
.w1_c01204{width:794.000000pt;}
.x0_c01204{left:0.000000pt;}
.x3_c01204{left:113.472000pt;}
.x7_c01204{left:129.792000pt;}
.x1_c01204{left:151.066667pt;}
.x4_c01204{left:229.926667pt;}
.x5_c01204{left:247.706667pt;}
.x6_c01204{left:305.506667pt;}
.x8_c01204{left:498.506667pt;}
.x2_c01204{left:658.213333pt;}
}





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

.ir_c01205:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01205;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01205;src:url('chunks/assets/font_7b7bb638ea17115bd7deffdf.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01205;src:url('chunks/assets/font_139bf367a8893b767ddca6d3.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01205;src:url('chunks/assets/font_812678facba43624a168fe16.woff2')format("woff");}.ff4_c01205{font-family:ff4_c01205;line-height:1.104492;font-style:normal;font-weight: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_c01205;src:url('chunks/assets/font_11e477f8f1b2d79c2fb91f65.woff2')format("woff");}.ff5_c01205{font-family:ff5_c01205;line-height:1.575000;font-style:normal;font-weight: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_c01205;src:url('chunks/assets/font_9a3427608e75103234ed3580.woff2')format("woff");}.ff6_c01205{font-family:ff6_c01205;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01205{vertical-align:0.000000px;}
.ls5_c01205{letter-spacing:-0.432000px;}
.ls8_c01205{letter-spacing:-0.247800px;}
.ls6_c01205{letter-spacing:-0.181200px;}
.ls3_c01205{letter-spacing:-0.144000px;}
.ls2_c01205{letter-spacing:0.000000px;}
.ls4_c01205{letter-spacing:0.144000px;}
.ls7_c01205{letter-spacing:0.150000px;}
.ls1_c01205{letter-spacing:0.152400px;}
.ls0_c01205{letter-spacing:0.288000px;}
.sc__c01205{text-shadow:none;}
.sc0_c01205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01205{-webkit-text-stroke:0px transparent;}
.sc0_c01205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01205{word-spacing:-21.187920px;}
.ws1_c01205{word-spacing:-20.304000px;}
.ws2_c01205{word-spacing:-20.016000px;}
.ws0_c01205{word-spacing:-19.872000px;}
.ws3_c01205{word-spacing:-19.584000px;}
.ws5_c01205{word-spacing:0.000000px;}
._b_c01205{margin-left:-4.464000px;}
._a_c01205{margin-left:-3.312000px;}
._c_c01205{margin-left:-2.291976px;}
._0_c01205{margin-left:-1.258891px;}
._3_c01205{width:1.091952px;}
._6_c01205{width:2.304000px;}
._5_c01205{width:3.888000px;}
._7_c01205{width:4.896000px;}
._8_c01205{width:6.261710px;}
._4_c01205{width:7.525181px;}
._2_c01205{width:9.034819px;}
._1_c01205{width:10.560024px;}
._9_c01205{width:38.592000px;}
.fc0_c01205{color:rgb(0,0,0);}
.fs4_c01205{font-size:38.880000px;}
.fs3_c01205{font-size:48.240000px;}
.fs2_c01205{font-size:59.760000px;}
.fs0_c01205{font-size:66.240000px;}
.fs1_c01205{font-size:72.000000px;}
.y0_c01205{bottom:0.000000px;}
.y3_c01205{bottom:57.636000px;}
.y2_c01205{bottom:77.796000px;}
.y25_c01205{bottom:109.296000px;}
.y24_c01205{bottom:127.476000px;}
.y23_c01205{bottom:132.696000px;}
.y22_c01205{bottom:147.276000px;}
.y21_c01205{bottom:201.990000px;}
.y20_c01205{bottom:225.750000px;}
.y1f_c01205{bottom:249.510000px;}
.y1e_c01205{bottom:273.450000px;}
.y1d_c01205{bottom:297.255000px;}
.y1b_c01205{bottom:321.015000px;}
.y1c_c01205{bottom:326.955000px;}
.y1a_c01205{bottom:344.775000px;}
.y19_c01205{bottom:368.715000px;}
.y18_c01205{bottom:392.475000px;}
.y17_c01205{bottom:416.235000px;}
.y16_c01205{bottom:439.995000px;}
.y15_c01205{bottom:463.935000px;}
.y14_c01205{bottom:487.695000px;}
.y13_c01205{bottom:511.455000px;}
.y12_c01205{bottom:535.215000px;}
.y11_c01205{bottom:570.345000px;}
.y10_c01205{bottom:602.385000px;}
.yf_c01205{bottom:863.070000px;}
.ye_c01205{bottom:886.830000px;}
.yd_c01205{bottom:910.590000px;}
.yc_c01205{bottom:934.350000px;}
.yb_c01205{bottom:973.230000px;}
.ya_c01205{bottom:996.990000px;}
.y9_c01205{bottom:1020.750000px;}
.y8_c01205{bottom:1044.690000px;}
.y7_c01205{bottom:1068.450000px;}
.y6_c01205{bottom:1092.210000px;}
.y5_c01205{bottom:1115.970000px;}
.y4_c01205{bottom:1139.940000px;}
.y1_c01205{bottom:1194.660000px;}
.h8_c01205{height:41.484960px;}
.h7_c01205{height:43.246406px;}
.h2_c01205{height:48.062812px;}
.h3_c01205{height:50.229844px;}
.h5_c01205{height:53.428008px;}
.h9_c01205{height:63.763920px;}
.h4_c01205{height:64.546875px;}
.h6_c01205{height:1262.865000px;}
.h0_c01205{height:1262.880000px;}
.h1_c01205{height:1263.000000px;}
.w2_c01205{width:892.957500px;}
.w0_c01205{width:892.980000px;}
.w1_c01205{width:893.250000px;}
.x0_c01205{left:0.000000px;}
.x1_c01205{left:127.656000px;}
.x6_c01205{left:146.016000px;}
.x3_c01205{left:201.607500px;}
.x4_c01205{left:221.610000px;}
.x5_c01205{left:343.695000px;}
.x2_c01205{left:765.510000px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls5_c01205{letter-spacing:-0.384000pt;}
.ls8_c01205{letter-spacing:-0.220267pt;}
.ls6_c01205{letter-spacing:-0.161067pt;}
.ls3_c01205{letter-spacing:-0.128000pt;}
.ls2_c01205{letter-spacing:0.000000pt;}
.ls4_c01205{letter-spacing:0.128000pt;}
.ls7_c01205{letter-spacing:0.133333pt;}
.ls1_c01205{letter-spacing:0.135467pt;}
.ls0_c01205{letter-spacing:0.256000pt;}
.ws4_c01205{word-spacing:-18.833707pt;}
.ws1_c01205{word-spacing:-18.048000pt;}
.ws2_c01205{word-spacing:-17.792000pt;}
.ws0_c01205{word-spacing:-17.664000pt;}
.ws3_c01205{word-spacing:-17.408000pt;}
.ws5_c01205{word-spacing:0.000000pt;}
._b_c01205{margin-left:-3.968000pt;}
._a_c01205{margin-left:-2.944000pt;}
._c_c01205{margin-left:-2.037312pt;}
._0_c01205{margin-left:-1.119014pt;}
._3_c01205{width:0.970624pt;}
._6_c01205{width:2.048000pt;}
._5_c01205{width:3.456000pt;}
._7_c01205{width:4.352000pt;}
._8_c01205{width:5.565965pt;}
._4_c01205{width:6.689050pt;}
._2_c01205{width:8.030950pt;}
._1_c01205{width:9.386688pt;}
._9_c01205{width:34.304000pt;}
.fs4_c01205{font-size:34.560000pt;}
.fs3_c01205{font-size:42.880000pt;}
.fs2_c01205{font-size:53.120000pt;}
.fs0_c01205{font-size:58.880000pt;}
.fs1_c01205{font-size:64.000000pt;}
.y0_c01205{bottom:0.000000pt;}
.y3_c01205{bottom:51.232000pt;}
.y2_c01205{bottom:69.152000pt;}
.y25_c01205{bottom:97.152000pt;}
.y24_c01205{bottom:113.312000pt;}
.y23_c01205{bottom:117.952000pt;}
.y22_c01205{bottom:130.912000pt;}
.y21_c01205{bottom:179.546667pt;}
.y20_c01205{bottom:200.666667pt;}
.y1f_c01205{bottom:221.786667pt;}
.y1e_c01205{bottom:243.066667pt;}
.y1d_c01205{bottom:264.226667pt;}
.y1b_c01205{bottom:285.346667pt;}
.y1c_c01205{bottom:290.626667pt;}
.y1a_c01205{bottom:306.466667pt;}
.y19_c01205{bottom:327.746667pt;}
.y18_c01205{bottom:348.866667pt;}
.y17_c01205{bottom:369.986667pt;}
.y16_c01205{bottom:391.106667pt;}
.y15_c01205{bottom:412.386667pt;}
.y14_c01205{bottom:433.506667pt;}
.y13_c01205{bottom:454.626667pt;}
.y12_c01205{bottom:475.746667pt;}
.y11_c01205{bottom:506.973333pt;}
.y10_c01205{bottom:535.453333pt;}
.yf_c01205{bottom:767.173333pt;}
.ye_c01205{bottom:788.293333pt;}
.yd_c01205{bottom:809.413333pt;}
.yc_c01205{bottom:830.533333pt;}
.yb_c01205{bottom:865.093333pt;}
.ya_c01205{bottom:886.213333pt;}
.y9_c01205{bottom:907.333333pt;}
.y8_c01205{bottom:928.613333pt;}
.y7_c01205{bottom:949.733333pt;}
.y6_c01205{bottom:970.853333pt;}
.y5_c01205{bottom:991.973333pt;}
.y4_c01205{bottom:1013.280000pt;}
.y1_c01205{bottom:1061.920000pt;}
.h8_c01205{height:36.875520pt;}
.h7_c01205{height:38.441250pt;}
.h2_c01205{height:42.722500pt;}
.h3_c01205{height:44.648750pt;}
.h5_c01205{height:47.491563pt;}
.h9_c01205{height:56.679040pt;}
.h4_c01205{height:57.375000pt;}
.h6_c01205{height:1122.546667pt;}
.h0_c01205{height:1122.560000pt;}
.h1_c01205{height:1122.666667pt;}
.w2_c01205{width:793.740000pt;}
.w0_c01205{width:793.760000pt;}
.w1_c01205{width:794.000000pt;}
.x0_c01205{left:0.000000pt;}
.x1_c01205{left:113.472000pt;}
.x6_c01205{left:129.792000pt;}
.x3_c01205{left:179.206667pt;}
.x4_c01205{left:196.986667pt;}
.x5_c01205{left:305.506667pt;}
.x2_c01205{left:680.453333pt;}
}





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

.ir_c01206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01206;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01206;src:url('chunks/assets/font_d55407b960d53983c6e7f63f.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01206;src:url('chunks/assets/font_1d37bc7dea79cc67ef376e6e.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01206;src:url('chunks/assets/font_cf22b79b68e86e840daaf7ab.woff2')format("woff");}.ff4_c01206{font-family:ff4_c01206;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01206;src:url('chunks/assets/font_f541c15fb0dc234996664e9d.woff2')format("woff");}.ff5_c01206{font-family:ff5_c01206;line-height:1.024902;font-style:normal;font-weight: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_c01206;src:url('chunks/assets/font_09be04b3ac7532ccaccee52a.woff2')format("woff");}.ff6_c01206{font-family:ff6_c01206;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01206{vertical-align:0.000000px;}
.ls1_c01206{letter-spacing:-0.432000px;}
.ls4_c01206{letter-spacing:-0.247800px;}
.ls2_c01206{letter-spacing:-0.181200px;}
.ls5_c01206{letter-spacing:-0.152400px;}
.ls6_c01206{letter-spacing:-0.053400px;}
.ls0_c01206{letter-spacing:0.000000px;}
.ls3_c01206{letter-spacing:0.150000px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01206{word-spacing:-16.559880px;}
.ws1_c01206{word-spacing:0.000000px;}
._a_c01206{margin-left:-4.667976px;}
._5_c01206{margin-left:-3.456000px;}
._12_c01206{margin-left:-2.444135px;}
._0_c01206{margin-left:-1.390841px;}
._2_c01206{width:1.330865px;}
._b_c01206{width:2.736000px;}
._1_c01206{width:4.320000px;}
._6_c01206{width:5.328000px;}
._13_c01206{width:6.335928px;}
._9_c01206{width:7.392024px;}
._e_c01206{width:9.216000px;}
._f_c01206{width:10.224000px;}
._4_c01206{width:11.434841px;}
._3_c01206{width:12.456000px;}
._d_c01206{width:13.847976px;}
._c_c01206{width:14.952024px;}
._10_c01206{width:16.416000px;}
._11_c01206{width:17.640000px;}
._7_c01206{width:24.264000px;}
._8_c01206{width:25.920000px;}
.fc0_c01206{color:rgb(0,0,0);}
.fs3_c01206{font-size:38.880000px;}
.fs2_c01206{font-size:48.240000px;}
.fs4_c01206{font-size:59.760000px;}
.fs0_c01206{font-size:66.240000px;}
.fs1_c01206{font-size:72.000000px;}
.y0_c01206{bottom:0.000000px;}
.y33_c01206{bottom:10.260000px;}
.y32_c01206{bottom:27.540000px;}
.y31_c01206{bottom:44.820000px;}
.y3_c01206{bottom:57.636000px;}
.y2_c01206{bottom:77.796000px;}
.y2f_c01206{bottom:109.296000px;}
.y2e_c01206{bottom:114.516000px;}
.y2d_c01206{bottom:129.096000px;}
.y2c_c01206{bottom:166.350000px;}
.y2b_c01206{bottom:190.290000px;}
.y2a_c01206{bottom:214.050000px;}
.y29_c01206{bottom:237.810000px;}
.y28_c01206{bottom:261.570000px;}
.y27_c01206{bottom:285.375000px;}
.y26_c01206{bottom:309.315000px;}
.y25_c01206{bottom:333.075000px;}
.y23_c01206{bottom:356.835000px;}
.y24_c01206{bottom:362.775000px;}
.y22_c01206{bottom:380.595000px;}
.y21_c01206{bottom:404.535000px;}
.y20_c01206{bottom:428.295000px;}
.y1f_c01206{bottom:452.055000px;}
.y1e_c01206{bottom:475.815000px;}
.y1d_c01206{bottom:514.695000px;}
.y1c_c01206{bottom:538.455000px;}
.y1b_c01206{bottom:562.215000px;}
.y1a_c01206{bottom:586.185000px;}
.y19_c01206{bottom:609.945000px;}
.y18_c01206{bottom:633.705000px;}
.y17_c01206{bottom:657.465000px;}
.y30_c01206{bottom:676.185000px;}
.y16_c01206{bottom:696.345000px;}
.y15_c01206{bottom:720.105000px;}
.y14_c01206{bottom:743.865000px;}
.y13_c01206{bottom:767.805000px;}
.y12_c01206{bottom:791.565000px;}
.y11_c01206{bottom:815.325000px;}
.y10_c01206{bottom:839.085000px;}
.yf_c01206{bottom:863.070000px;}
.ye_c01206{bottom:886.830000px;}
.yd_c01206{bottom:910.590000px;}
.yc_c01206{bottom:934.350000px;}
.yb_c01206{bottom:958.290000px;}
.ya_c01206{bottom:982.050000px;}
.y9_c01206{bottom:1005.810000px;}
.y8_c01206{bottom:1029.570000px;}
.y7_c01206{bottom:1053.510000px;}
.y6_c01206{bottom:1077.270000px;}
.y5_c01206{bottom:1115.970000px;}
.y4_c01206{bottom:1139.940000px;}
.y1_c01206{bottom:1194.660000px;}
.h7_c01206{height:41.484960px;}
.h6_c01206{height:43.246406px;}
.h2_c01206{height:48.062812px;}
.h3_c01206{height:50.229844px;}
.ha_c01206{height:53.428008px;}
.h9_c01206{height:58.500000px;}
.h8_c01206{height:63.763920px;}
.h4_c01206{height:64.546875px;}
.h5_c01206{height:1262.865000px;}
.h0_c01206{height:1262.880000px;}
.h1_c01206{height:1263.000000px;}
.w3_c01206{width:223.230000px;}
.w2_c01206{width:892.957500px;}
.w0_c01206{width:892.980000px;}
.w1_c01206{width:893.250000px;}
.x0_c01206{left:0.000000px;}
.x3_c01206{left:127.656000px;}
.x7_c01206{left:146.016000px;}
.x1_c01206{left:169.950000px;}
.x4_c01206{left:233.287500px;}
.x5_c01206{left:253.290000px;}
.x6_c01206{left:343.695000px;}
.x8_c01206{left:540.120000px;}
.x2_c01206{left:740.490000px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls1_c01206{letter-spacing:-0.384000pt;}
.ls4_c01206{letter-spacing:-0.220267pt;}
.ls2_c01206{letter-spacing:-0.161067pt;}
.ls5_c01206{letter-spacing:-0.135467pt;}
.ls6_c01206{letter-spacing:-0.047467pt;}
.ls0_c01206{letter-spacing:0.000000pt;}
.ls3_c01206{letter-spacing:0.133333pt;}
.ws0_c01206{word-spacing:-14.719893pt;}
.ws1_c01206{word-spacing:0.000000pt;}
._a_c01206{margin-left:-4.149312pt;}
._5_c01206{margin-left:-3.072000pt;}
._12_c01206{margin-left:-2.172564pt;}
._0_c01206{margin-left:-1.236303pt;}
._2_c01206{width:1.182991pt;}
._b_c01206{width:2.432000pt;}
._1_c01206{width:3.840000pt;}
._6_c01206{width:4.736000pt;}
._13_c01206{width:5.631936pt;}
._9_c01206{width:6.570688pt;}
._e_c01206{width:8.192000pt;}
._f_c01206{width:9.088000pt;}
._4_c01206{width:10.164303pt;}
._3_c01206{width:11.072000pt;}
._d_c01206{width:12.309312pt;}
._c_c01206{width:13.290688pt;}
._10_c01206{width:14.592000pt;}
._11_c01206{width:15.680000pt;}
._7_c01206{width:21.568000pt;}
._8_c01206{width:23.040000pt;}
.fs3_c01206{font-size:34.560000pt;}
.fs2_c01206{font-size:42.880000pt;}
.fs4_c01206{font-size:53.120000pt;}
.fs0_c01206{font-size:58.880000pt;}
.fs1_c01206{font-size:64.000000pt;}
.y0_c01206{bottom:0.000000pt;}
.y33_c01206{bottom:9.120000pt;}
.y32_c01206{bottom:24.480000pt;}
.y31_c01206{bottom:39.840000pt;}
.y3_c01206{bottom:51.232000pt;}
.y2_c01206{bottom:69.152000pt;}
.y2f_c01206{bottom:97.152000pt;}
.y2e_c01206{bottom:101.792000pt;}
.y2d_c01206{bottom:114.752000pt;}
.y2c_c01206{bottom:147.866667pt;}
.y2b_c01206{bottom:169.146667pt;}
.y2a_c01206{bottom:190.266667pt;}
.y29_c01206{bottom:211.386667pt;}
.y28_c01206{bottom:232.506667pt;}
.y27_c01206{bottom:253.666667pt;}
.y26_c01206{bottom:274.946667pt;}
.y25_c01206{bottom:296.066667pt;}
.y23_c01206{bottom:317.186667pt;}
.y24_c01206{bottom:322.466667pt;}
.y22_c01206{bottom:338.306667pt;}
.y21_c01206{bottom:359.586667pt;}
.y20_c01206{bottom:380.706667pt;}
.y1f_c01206{bottom:401.826667pt;}
.y1e_c01206{bottom:422.946667pt;}
.y1d_c01206{bottom:457.506667pt;}
.y1c_c01206{bottom:478.626667pt;}
.y1b_c01206{bottom:499.746667pt;}
.y1a_c01206{bottom:521.053333pt;}
.y19_c01206{bottom:542.173333pt;}
.y18_c01206{bottom:563.293333pt;}
.y17_c01206{bottom:584.413333pt;}
.y30_c01206{bottom:601.053333pt;}
.y16_c01206{bottom:618.973333pt;}
.y15_c01206{bottom:640.093333pt;}
.y14_c01206{bottom:661.213333pt;}
.y13_c01206{bottom:682.493333pt;}
.y12_c01206{bottom:703.613333pt;}
.y11_c01206{bottom:724.733333pt;}
.y10_c01206{bottom:745.853333pt;}
.yf_c01206{bottom:767.173333pt;}
.ye_c01206{bottom:788.293333pt;}
.yd_c01206{bottom:809.413333pt;}
.yc_c01206{bottom:830.533333pt;}
.yb_c01206{bottom:851.813333pt;}
.ya_c01206{bottom:872.933333pt;}
.y9_c01206{bottom:894.053333pt;}
.y8_c01206{bottom:915.173333pt;}
.y7_c01206{bottom:936.453333pt;}
.y6_c01206{bottom:957.573333pt;}
.y5_c01206{bottom:991.973333pt;}
.y4_c01206{bottom:1013.280000pt;}
.y1_c01206{bottom:1061.920000pt;}
.h7_c01206{height:36.875520pt;}
.h6_c01206{height:38.441250pt;}
.h2_c01206{height:42.722500pt;}
.h3_c01206{height:44.648750pt;}
.ha_c01206{height:47.491563pt;}
.h9_c01206{height:52.000000pt;}
.h8_c01206{height:56.679040pt;}
.h4_c01206{height:57.375000pt;}
.h5_c01206{height:1122.546667pt;}
.h0_c01206{height:1122.560000pt;}
.h1_c01206{height:1122.666667pt;}
.w3_c01206{width:198.426667pt;}
.w2_c01206{width:793.740000pt;}
.w0_c01206{width:793.760000pt;}
.w1_c01206{width:794.000000pt;}
.x0_c01206{left:0.000000pt;}
.x3_c01206{left:113.472000pt;}
.x7_c01206{left:129.792000pt;}
.x1_c01206{left:151.066667pt;}
.x4_c01206{left:207.366667pt;}
.x5_c01206{left:225.146667pt;}
.x6_c01206{left:305.506667pt;}
.x8_c01206{left:480.106667pt;}
.x2_c01206{left:658.213333pt;}
}





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

.ir_c01207:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01207;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01207;src:url('chunks/assets/font_13c6742ae716988c97b508b8.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01207;src:url('chunks/assets/font_b008f2d39f15b06102057c98.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01207;src:url('chunks/assets/font_69814e359f9fc106f2143e5f.woff2')format("woff");}.ff4_c01207{font-family:ff4_c01207;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01207{vertical-align:0.000000px;}
.ls2_c01207{letter-spacing:-0.720000px;}
.ls1_c01207{letter-spacing:-0.576000px;}
.ls4_c01207{letter-spacing:-0.216000px;}
.ls0_c01207{letter-spacing:0.000000px;}
.ls5_c01207{letter-spacing:0.144000px;}
.ls3_c01207{letter-spacing:0.288000px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01207{word-spacing:-20.304000px;}
.ws3_c01207{word-spacing:-20.016000px;}
.ws2_c01207{word-spacing:-19.800000px;}
.ws0_c01207{word-spacing:-19.296000px;}
.ws4_c01207{word-spacing:0.000000px;}
._11_c01207{margin-left:-5.351976px;}
._4_c01207{margin-left:-4.248000px;}
._d_c01207{margin-left:-3.100435px;}
._0_c01207{margin-left:-1.258891px;}
._3_c01207{width:1.056024px;}
._5_c01207{width:2.302675px;}
._6_c01207{width:3.916070px;}
._9_c01207{width:4.919530px;}
._8_c01207{width:6.010891px;}
._7_c01207{width:7.272000px;}
._10_c01207{width:9.042763px;}
._f_c01207{width:10.296000px;}
._e_c01207{width:11.304000px;}
._2_c01207{width:13.104000px;}
._1_c01207{width:14.184000px;}
._12_c01207{width:21.288024px;}
._b_c01207{width:24.048000px;}
._a_c01207{width:25.272000px;}
._c_c01207{width:26.748000px;}
._14_c01207{width:28.080000px;}
._13_c01207{width:29.736000px;}
.fc0_c01207{color:rgb(0,0,0);}
.fs0_c01207{font-size:66.240000px;}
.fs1_c01207{font-size:72.000000px;}
.y0_c01207{bottom:0.000000px;}
.y3_c01207{bottom:57.636000px;}
.y2_c01207{bottom:77.796000px;}
.y2c_c01207{bottom:127.656000px;}
.y2b_c01207{bottom:151.410000px;}
.y2a_c01207{bottom:175.170000px;}
.y29_c01207{bottom:198.930000px;}
.y28_c01207{bottom:222.870000px;}
.y27_c01207{bottom:246.630000px;}
.y26_c01207{bottom:285.375000px;}
.y25_c01207{bottom:309.315000px;}
.y24_c01207{bottom:333.075000px;}
.y23_c01207{bottom:356.835000px;}
.y22_c01207{bottom:380.595000px;}
.y21_c01207{bottom:404.715000px;}
.y20_c01207{bottom:428.475000px;}
.y1f_c01207{bottom:452.055000px;}
.y1e_c01207{bottom:475.815000px;}
.y1d_c01207{bottom:499.755000px;}
.y1c_c01207{bottom:523.515000px;}
.y1b_c01207{bottom:562.215000px;}
.y1a_c01207{bottom:586.185000px;}
.y19_c01207{bottom:609.945000px;}
.y18_c01207{bottom:633.705000px;}
.y17_c01207{bottom:657.465000px;}
.y16_c01207{bottom:681.405000px;}
.y15_c01207{bottom:705.165000px;}
.y14_c01207{bottom:743.865000px;}
.y13_c01207{bottom:767.805000px;}
.y12_c01207{bottom:791.565000px;}
.y11_c01207{bottom:815.325000px;}
.y10_c01207{bottom:839.265000px;}
.yf_c01207{bottom:863.070000px;}
.ye_c01207{bottom:886.830000px;}
.yd_c01207{bottom:910.590000px;}
.yc_c01207{bottom:934.350000px;}
.yb_c01207{bottom:958.290000px;}
.ya_c01207{bottom:982.050000px;}
.y9_c01207{bottom:1020.750000px;}
.y8_c01207{bottom:1044.690000px;}
.y7_c01207{bottom:1068.450000px;}
.y6_c01207{bottom:1092.210000px;}
.y5_c01207{bottom:1115.970000px;}
.y4_c01207{bottom:1139.940000px;}
.y1_c01207{bottom:1194.660000px;}
.h2_c01207{height:48.062812px;}
.h3_c01207{height:50.229844px;}
.h4_c01207{height:64.546875px;}
.h0_c01207{height:1262.880000px;}
.h1_c01207{height:1263.000000px;}
.w0_c01207{width:892.980000px;}
.w1_c01207{width:893.250000px;}
.x0_c01207{left:0.000000px;}
.x1_c01207{left:127.656000px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls2_c01207{letter-spacing:-0.640000pt;}
.ls1_c01207{letter-spacing:-0.512000pt;}
.ls4_c01207{letter-spacing:-0.192000pt;}
.ls0_c01207{letter-spacing:0.000000pt;}
.ls5_c01207{letter-spacing:0.128000pt;}
.ls3_c01207{letter-spacing:0.256000pt;}
.ws1_c01207{word-spacing:-18.048000pt;}
.ws3_c01207{word-spacing:-17.792000pt;}
.ws2_c01207{word-spacing:-17.600000pt;}
.ws0_c01207{word-spacing:-17.152000pt;}
.ws4_c01207{word-spacing:0.000000pt;}
._11_c01207{margin-left:-4.757312pt;}
._4_c01207{margin-left:-3.776000pt;}
._d_c01207{margin-left:-2.755942pt;}
._0_c01207{margin-left:-1.119014pt;}
._3_c01207{width:0.938688pt;}
._5_c01207{width:2.046822pt;}
._6_c01207{width:3.480951pt;}
._9_c01207{width:4.372915pt;}
._8_c01207{width:5.343014pt;}
._7_c01207{width:6.464000pt;}
._10_c01207{width:8.038012pt;}
._f_c01207{width:9.152000pt;}
._e_c01207{width:10.048000pt;}
._2_c01207{width:11.648000pt;}
._1_c01207{width:12.608000pt;}
._12_c01207{width:18.922688pt;}
._b_c01207{width:21.376000pt;}
._a_c01207{width:22.464000pt;}
._c_c01207{width:23.776000pt;}
._14_c01207{width:24.960000pt;}
._13_c01207{width:26.432000pt;}
.fs0_c01207{font-size:58.880000pt;}
.fs1_c01207{font-size:64.000000pt;}
.y0_c01207{bottom:0.000000pt;}
.y3_c01207{bottom:51.232000pt;}
.y2_c01207{bottom:69.152000pt;}
.y2c_c01207{bottom:113.472000pt;}
.y2b_c01207{bottom:134.586667pt;}
.y2a_c01207{bottom:155.706667pt;}
.y29_c01207{bottom:176.826667pt;}
.y28_c01207{bottom:198.106667pt;}
.y27_c01207{bottom:219.226667pt;}
.y26_c01207{bottom:253.666667pt;}
.y25_c01207{bottom:274.946667pt;}
.y24_c01207{bottom:296.066667pt;}
.y23_c01207{bottom:317.186667pt;}
.y22_c01207{bottom:338.306667pt;}
.y21_c01207{bottom:359.746667pt;}
.y20_c01207{bottom:380.866667pt;}
.y1f_c01207{bottom:401.826667pt;}
.y1e_c01207{bottom:422.946667pt;}
.y1d_c01207{bottom:444.226667pt;}
.y1c_c01207{bottom:465.346667pt;}
.y1b_c01207{bottom:499.746667pt;}
.y1a_c01207{bottom:521.053333pt;}
.y19_c01207{bottom:542.173333pt;}
.y18_c01207{bottom:563.293333pt;}
.y17_c01207{bottom:584.413333pt;}
.y16_c01207{bottom:605.693333pt;}
.y15_c01207{bottom:626.813333pt;}
.y14_c01207{bottom:661.213333pt;}
.y13_c01207{bottom:682.493333pt;}
.y12_c01207{bottom:703.613333pt;}
.y11_c01207{bottom:724.733333pt;}
.y10_c01207{bottom:746.013333pt;}
.yf_c01207{bottom:767.173333pt;}
.ye_c01207{bottom:788.293333pt;}
.yd_c01207{bottom:809.413333pt;}
.yc_c01207{bottom:830.533333pt;}
.yb_c01207{bottom:851.813333pt;}
.ya_c01207{bottom:872.933333pt;}
.y9_c01207{bottom:907.333333pt;}
.y8_c01207{bottom:928.613333pt;}
.y7_c01207{bottom:949.733333pt;}
.y6_c01207{bottom:970.853333pt;}
.y5_c01207{bottom:991.973333pt;}
.y4_c01207{bottom:1013.280000pt;}
.y1_c01207{bottom:1061.920000pt;}
.h2_c01207{height:42.722500pt;}
.h3_c01207{height:44.648750pt;}
.h4_c01207{height:57.375000pt;}
.h0_c01207{height:1122.560000pt;}
.h1_c01207{height:1122.666667pt;}
.w0_c01207{width:793.760000pt;}
.w1_c01207{width:794.000000pt;}
.x0_c01207{left:0.000000pt;}
.x1_c01207{left:113.472000pt;}
}





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

.ir_c01208:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01208;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01208;src:url('chunks/assets/font_30ff13d65677ecfcf11e608c.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01208;src:url('chunks/assets/font_91bccd48890fe688bb480b9a.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01208;src:url('chunks/assets/font_2e59d36b02adc3169a06c753.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01208;src:url('chunks/assets/font_b9a0847073c4fe697d7411b0.woff2')format("woff");}.ff5_c01208{font-family:ff5_c01208;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls7_c01208{letter-spacing:-0.272400px;}
.ls9_c01208{letter-spacing:-0.247800px;}
.ls5_c01208{letter-spacing:-0.181200px;}
.ls8_c01208{letter-spacing:-0.152400px;}
.ls4_c01208{letter-spacing:0.000000px;}
.ls1_c01208{letter-spacing:0.144000px;}
.ls6_c01208{letter-spacing:0.150000px;}
.ls3_c01208{letter-spacing:0.152400px;}
.ls2_c01208{letter-spacing:0.216000px;}
.ls0_c01208{letter-spacing:0.288000px;}
.sc__c01208{text-shadow:none;}
.sc0_c01208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01208{-webkit-text-stroke:0px transparent;}
.sc0_c01208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01208{word-spacing:-21.187920px;}
.ws0_c01208{word-spacing:-20.304000px;}
.ws1_c01208{word-spacing:-20.232000px;}
.ws3_c01208{word-spacing:0.000000px;}
._5_c01208{margin-left:-5.040000px;}
._4_c01208{margin-left:-3.312000px;}
._0_c01208{margin-left:-1.390841px;}
._3_c01208{width:1.194206px;}
._2_c01208{width:2.602817px;}
._8_c01208{width:4.263356px;}
._7_c01208{width:5.304024px;}
._f_c01208{width:6.912000px;}
._10_c01208{width:7.979198px;}
._d_c01208{width:9.000000px;}
._1_c01208{width:10.728000px;}
._e_c01208{width:12.187365px;}
._a_c01208{width:14.092635px;}
._9_c01208{width:15.336000px;}
._b_c01208{width:17.712000px;}
._c_c01208{width:18.864000px;}
._6_c01208{width:21.384000px;}
.fc0_c01208{color:rgb(0,0,0);}
.fs3_c01208{font-size:38.880000px;}
.fs2_c01208{font-size:48.240000px;}
.fs4_c01208{font-size:59.760000px;}
.fs0_c01208{font-size:66.240000px;}
.fs1_c01208{font-size:72.000000px;}
.y0_c01208{bottom:0.000000px;}
.y3_c01208{bottom:57.636000px;}
.y2_c01208{bottom:77.796000px;}
.y33_c01208{bottom:109.296000px;}
.y32_c01208{bottom:114.516000px;}
.y31_c01208{bottom:127.476000px;}
.y30_c01208{bottom:132.696000px;}
.y2f_c01208{bottom:146.556000px;}
.y2e_c01208{bottom:151.770000px;}
.y2d_c01208{bottom:166.350000px;}
.y2c_c01208{bottom:214.050000px;}
.y2b_c01208{bottom:237.810000px;}
.y2a_c01208{bottom:261.570000px;}
.y29_c01208{bottom:285.375000px;}
.y28_c01208{bottom:309.315000px;}
.y27_c01208{bottom:333.075000px;}
.y26_c01208{bottom:356.835000px;}
.y25_c01208{bottom:380.595000px;}
.y24_c01208{bottom:404.535000px;}
.y23_c01208{bottom:428.295000px;}
.y22_c01208{bottom:452.055000px;}
.y20_c01208{bottom:490.935000px;}
.y21_c01208{bottom:496.875000px;}
.y1f_c01208{bottom:514.695000px;}
.y1e_c01208{bottom:538.455000px;}
.y1d_c01208{bottom:577.365000px;}
.y1c_c01208{bottom:601.125000px;}
.y1a_c01208{bottom:624.885000px;}
.y1b_c01208{bottom:630.825000px;}
.y19_c01208{bottom:648.645000px;}
.y18_c01208{bottom:672.585000px;}
.y17_c01208{bottom:696.345000px;}
.y16_c01208{bottom:720.105000px;}
.y15_c01208{bottom:743.865000px;}
.y14_c01208{bottom:767.805000px;}
.y13_c01208{bottom:791.565000px;}
.y12_c01208{bottom:815.325000px;}
.y11_c01208{bottom:839.085000px;}
.y10_c01208{bottom:863.070000px;}
.yf_c01208{bottom:886.830000px;}
.ye_c01208{bottom:910.590000px;}
.yd_c01208{bottom:934.350000px;}
.yc_c01208{bottom:958.290000px;}
.yb_c01208{bottom:982.050000px;}
.ya_c01208{bottom:1005.810000px;}
.y9_c01208{bottom:1029.570000px;}
.y8_c01208{bottom:1053.510000px;}
.y6_c01208{bottom:1092.210000px;}
.y7_c01208{bottom:1098.150000px;}
.y5_c01208{bottom:1115.970000px;}
.y4_c01208{bottom:1139.940000px;}
.y1_c01208{bottom:1194.660000px;}
.h7_c01208{height:29.482734px;}
.h9_c01208{height:41.484960px;}
.h6_c01208{height:43.246406px;}
.h2_c01208{height:48.062812px;}
.h3_c01208{height:50.229844px;}
.h8_c01208{height:63.763920px;}
.h4_c01208{height:64.546875px;}
.h5_c01208{height:1262.865000px;}
.h0_c01208{height:1262.880000px;}
.h1_c01208{height:1263.000000px;}
.w2_c01208{width:892.957500px;}
.w0_c01208{width:892.980000px;}
.w1_c01208{width:893.250000px;}
.x0_c01208{left:0.000000px;}
.x3_c01208{left:127.656000px;}
.xb_c01208{left:142.236000px;}
.xc_c01208{left:146.016000px;}
.x1_c01208{left:169.950000px;}
.xa_c01208{left:343.695000px;}
.x6_c01208{left:385.432500px;}
.x4_c01208{left:386.872500px;}
.x7_c01208{left:405.435000px;}
.x5_c01208{left:406.875000px;}
.x8_c01208{left:659.962500px;}
.x9_c01208{left:679.965000px;}
.x2_c01208{left:740.490000px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls7_c01208{letter-spacing:-0.242133pt;}
.ls9_c01208{letter-spacing:-0.220267pt;}
.ls5_c01208{letter-spacing:-0.161067pt;}
.ls8_c01208{letter-spacing:-0.135467pt;}
.ls4_c01208{letter-spacing:0.000000pt;}
.ls1_c01208{letter-spacing:0.128000pt;}
.ls6_c01208{letter-spacing:0.133333pt;}
.ls3_c01208{letter-spacing:0.135467pt;}
.ls2_c01208{letter-spacing:0.192000pt;}
.ls0_c01208{letter-spacing:0.256000pt;}
.ws2_c01208{word-spacing:-18.833707pt;}
.ws0_c01208{word-spacing:-18.048000pt;}
.ws1_c01208{word-spacing:-17.984000pt;}
.ws3_c01208{word-spacing:0.000000pt;}
._5_c01208{margin-left:-4.480000pt;}
._4_c01208{margin-left:-2.944000pt;}
._0_c01208{margin-left:-1.236303pt;}
._3_c01208{width:1.061517pt;}
._2_c01208{width:2.313615pt;}
._8_c01208{width:3.789650pt;}
._7_c01208{width:4.714688pt;}
._f_c01208{width:6.144000pt;}
._10_c01208{width:7.092621pt;}
._d_c01208{width:8.000000pt;}
._1_c01208{width:9.536000pt;}
._e_c01208{width:10.833213pt;}
._a_c01208{width:12.526787pt;}
._9_c01208{width:13.632000pt;}
._b_c01208{width:15.744000pt;}
._c_c01208{width:16.768000pt;}
._6_c01208{width:19.008000pt;}
.fs3_c01208{font-size:34.560000pt;}
.fs2_c01208{font-size:42.880000pt;}
.fs4_c01208{font-size:53.120000pt;}
.fs0_c01208{font-size:58.880000pt;}
.fs1_c01208{font-size:64.000000pt;}
.y0_c01208{bottom:0.000000pt;}
.y3_c01208{bottom:51.232000pt;}
.y2_c01208{bottom:69.152000pt;}
.y33_c01208{bottom:97.152000pt;}
.y32_c01208{bottom:101.792000pt;}
.y31_c01208{bottom:113.312000pt;}
.y30_c01208{bottom:117.952000pt;}
.y2f_c01208{bottom:130.272000pt;}
.y2e_c01208{bottom:134.906667pt;}
.y2d_c01208{bottom:147.866667pt;}
.y2c_c01208{bottom:190.266667pt;}
.y2b_c01208{bottom:211.386667pt;}
.y2a_c01208{bottom:232.506667pt;}
.y29_c01208{bottom:253.666667pt;}
.y28_c01208{bottom:274.946667pt;}
.y27_c01208{bottom:296.066667pt;}
.y26_c01208{bottom:317.186667pt;}
.y25_c01208{bottom:338.306667pt;}
.y24_c01208{bottom:359.586667pt;}
.y23_c01208{bottom:380.706667pt;}
.y22_c01208{bottom:401.826667pt;}
.y20_c01208{bottom:436.386667pt;}
.y21_c01208{bottom:441.666667pt;}
.y1f_c01208{bottom:457.506667pt;}
.y1e_c01208{bottom:478.626667pt;}
.y1d_c01208{bottom:513.213333pt;}
.y1c_c01208{bottom:534.333333pt;}
.y1a_c01208{bottom:555.453333pt;}
.y1b_c01208{bottom:560.733333pt;}
.y19_c01208{bottom:576.573333pt;}
.y18_c01208{bottom:597.853333pt;}
.y17_c01208{bottom:618.973333pt;}
.y16_c01208{bottom:640.093333pt;}
.y15_c01208{bottom:661.213333pt;}
.y14_c01208{bottom:682.493333pt;}
.y13_c01208{bottom:703.613333pt;}
.y12_c01208{bottom:724.733333pt;}
.y11_c01208{bottom:745.853333pt;}
.y10_c01208{bottom:767.173333pt;}
.yf_c01208{bottom:788.293333pt;}
.ye_c01208{bottom:809.413333pt;}
.yd_c01208{bottom:830.533333pt;}
.yc_c01208{bottom:851.813333pt;}
.yb_c01208{bottom:872.933333pt;}
.ya_c01208{bottom:894.053333pt;}
.y9_c01208{bottom:915.173333pt;}
.y8_c01208{bottom:936.453333pt;}
.y6_c01208{bottom:970.853333pt;}
.y7_c01208{bottom:976.133333pt;}
.y5_c01208{bottom:991.973333pt;}
.y4_c01208{bottom:1013.280000pt;}
.y1_c01208{bottom:1061.920000pt;}
.h7_c01208{height:26.206875pt;}
.h9_c01208{height:36.875520pt;}
.h6_c01208{height:38.441250pt;}
.h2_c01208{height:42.722500pt;}
.h3_c01208{height:44.648750pt;}
.h8_c01208{height:56.679040pt;}
.h4_c01208{height:57.375000pt;}
.h5_c01208{height:1122.546667pt;}
.h0_c01208{height:1122.560000pt;}
.h1_c01208{height:1122.666667pt;}
.w2_c01208{width:793.740000pt;}
.w0_c01208{width:793.760000pt;}
.w1_c01208{width:794.000000pt;}
.x0_c01208{left:0.000000pt;}
.x3_c01208{left:113.472000pt;}
.xb_c01208{left:126.432000pt;}
.xc_c01208{left:129.792000pt;}
.x1_c01208{left:151.066667pt;}
.xa_c01208{left:305.506667pt;}
.x6_c01208{left:342.606667pt;}
.x4_c01208{left:343.886667pt;}
.x7_c01208{left:360.386667pt;}
.x5_c01208{left:361.666667pt;}
.x8_c01208{left:586.633333pt;}
.x9_c01208{left:604.413333pt;}
.x2_c01208{left:658.213333pt;}
}





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

.ir_c01209:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01209;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01209;src:url('chunks/assets/font_bc7f984a19cff02ec9ff4eb4.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01209;src:url('chunks/assets/font_69f64d6fa666306480445ef0.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01209;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff4_c01209{font-family:ff4_c01209;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:ff5_c01209;src:url('chunks/assets/font_31bff3ca5db2023f59ba3af5.woff2')format("woff");}.ff5_c01209{font-family:ff5_c01209;line-height:1.575000;font-style:normal;font-weight: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_c01209;src:url('chunks/assets/font_b0f67096b6fbd94b1a546ab5.woff2')format("woff");}.ff6_c01209{font-family:ff6_c01209;line-height:1.211914;font-style:normal;font-weight: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_c01209;src:url('chunks/assets/font_c94f312c9a661c8d1560e5ca.woff2')format("woff");}.ff7_c01209{font-family:ff7_c01209;line-height:1.024902;font-style:normal;font-weight: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_c01209;src:url('chunks/assets/font_c03ef7c43f7a8218c9d6fcc9.woff2')format("woff");}.ff8_c01209{font-family:ff8_c01209;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01209{vertical-align:0.000000px;}
.ls4_c01209{letter-spacing:-0.432000px;}
.ls6_c01209{letter-spacing:-0.247800px;}
.ls3_c01209{letter-spacing:-0.181200px;}
.ls7_c01209{letter-spacing:-0.152400px;}
.ls1_c01209{letter-spacing:0.000000px;}
.ls2_c01209{letter-spacing:0.144000px;}
.ls5_c01209{letter-spacing:0.150000px;}
.ls0_c01209{letter-spacing:3.420480px;}
.sc__c01209{text-shadow:none;}
.sc0_c01209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01209{-webkit-text-stroke:0px transparent;}
.sc0_c01209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01209{word-spacing:-21.035520px;}
.ws0_c01209{word-spacing:-19.584000px;}
.ws2_c01209{word-spacing:0.000000px;}
._c_c01209{margin-left:-4.248000px;}
._3_c01209{margin-left:-3.157085px;}
._0_c01209{margin-left:-1.258891px;}
._2_c01209{width:1.620000px;}
._4_c01209{width:2.638915px;}
._d_c01209{width:3.968506px;}
._b_c01209{width:5.508024px;}
._9_c01209{width:6.624000px;}
._a_c01209{width:9.274867px;}
._8_c01209{width:10.711613px;}
._7_c01209{width:11.736000px;}
._f_c01209{width:16.200000px;}
._1_c01209{width:18.876024px;}
._5_c01209{width:21.096000px;}
._6_c01209{width:23.052024px;}
._10_c01209{width:25.776000px;}
._e_c01209{width:28.872000px;}
.fc0_c01209{color:rgb(0,0,0);}
.fs4_c01209{font-size:38.880000px;}
.fs2_c01209{font-size:48.240000px;}
.fs5_c01209{font-size:59.760000px;}
.fs0_c01209{font-size:66.240000px;}
.fs1_c01209{font-size:72.000000px;}
.fs3_c01209{font-size:84.240000px;}
.y0_c01209{bottom:0.000000px;}
.y39_c01209{bottom:1.965000px;}
.y38_c01209{bottom:19.425000px;}
.y3_c01209{bottom:57.636000px;}
.y2_c01209{bottom:77.796000px;}
.y36_c01209{bottom:109.296000px;}
.y35_c01209{bottom:127.476000px;}
.y34_c01209{bottom:132.696000px;}
.y33_c01209{bottom:145.656000px;}
.y32_c01209{bottom:164.010000px;}
.y31_c01209{bottom:169.230000px;}
.y30_c01209{bottom:182.190000px;}
.y2f_c01209{bottom:187.410000px;}
.y2e_c01209{bottom:200.370000px;}
.y2d_c01209{bottom:205.590000px;}
.y2c_c01209{bottom:220.170000px;}
.y37_c01209{bottom:236.745000px;}
.y2b_c01209{bottom:261.390000px;}
.y2a_c01209{bottom:285.195000px;}
.y29_c01209{bottom:308.955000px;}
.y28_c01209{bottom:332.715000px;}
.y27_c01209{bottom:356.475000px;}
.y26_c01209{bottom:380.415000px;}
.y25_c01209{bottom:404.175000px;}
.y24_c01209{bottom:427.935000px;}
.y23_c01209{bottom:451.695000px;}
.y22_c01209{bottom:475.635000px;}
.y21_c01209{bottom:499.395000px;}
.y20_c01209{bottom:523.155000px;}
.y1f_c01209{bottom:546.915000px;}
.y1e_c01209{bottom:568.365000px;}
.y1d_c01209{bottom:592.305000px;}
.y1c_c01209{bottom:633.705000px;}
.y1b_c01209{bottom:672.585000px;}
.y1a_c01209{bottom:696.345000px;}
.y18_c01209{bottom:720.105000px;}
.y19_c01209{bottom:726.045000px;}
.y17_c01209{bottom:743.865000px;}
.y15_c01209{bottom:767.805000px;}
.y16_c01209{bottom:773.745000px;}
.y14_c01209{bottom:791.565000px;}
.y13_c01209{bottom:815.325000px;}
.y11_c01209{bottom:839.085000px;}
.y12_c01209{bottom:845.025000px;}
.y10_c01209{bottom:863.070000px;}
.yf_c01209{bottom:886.830000px;}
.ye_c01209{bottom:910.590000px;}
.yd_c01209{bottom:934.350000px;}
.yc_c01209{bottom:958.290000px;}
.yb_c01209{bottom:982.050000px;}
.y9_c01209{bottom:1005.810000px;}
.ya_c01209{bottom:1011.750000px;}
.y8_c01209{bottom:1029.570000px;}
.y7_c01209{bottom:1053.510000px;}
.y6_c01209{bottom:1077.270000px;}
.y5_c01209{bottom:1115.970000px;}
.y4_c01209{bottom:1139.940000px;}
.y1_c01209{bottom:1194.660000px;}
.hb_c01209{height:33.120000px;}
.h8_c01209{height:41.484960px;}
.h6_c01209{height:43.246406px;}
.h2_c01209{height:48.062812px;}
.h3_c01209{height:50.229844px;}
.hc_c01209{height:53.428008px;}
.ha_c01209{height:59.789180px;}
.h9_c01209{height:63.763920px;}
.h4_c01209{height:64.546875px;}
.h7_c01209{height:87.859687px;}
.h5_c01209{height:1262.865000px;}
.h0_c01209{height:1262.880000px;}
.h1_c01209{height:1263.000000px;}
.w3_c01209{width:201.990000px;}
.w2_c01209{width:892.957500px;}
.w0_c01209{width:892.980000px;}
.w1_c01209{width:893.250000px;}
.x0_c01209{left:0.000000px;}
.x1_c01209{left:127.656000px;}
.xd_c01209{left:129.645000px;}
.xc_c01209{left:146.016000px;}
.x6_c01209{left:291.607500px;}
.x7_c01209{left:311.655000px;}
.xb_c01209{left:343.695000px;}
.xa_c01209{left:350.355000px;}
.x2_c01209{left:440.152500px;}
.x3_c01209{left:460.155000px;}
.x4_c01209{left:480.112500px;}
.x5_c01209{left:500.145000px;}
.x8_c01209{left:619.462500px;}
.x9_c01209{left:639.465000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls4_c01209{letter-spacing:-0.384000pt;}
.ls6_c01209{letter-spacing:-0.220267pt;}
.ls3_c01209{letter-spacing:-0.161067pt;}
.ls7_c01209{letter-spacing:-0.135467pt;}
.ls1_c01209{letter-spacing:0.000000pt;}
.ls2_c01209{letter-spacing:0.128000pt;}
.ls5_c01209{letter-spacing:0.133333pt;}
.ls0_c01209{letter-spacing:3.040427pt;}
.ws1_c01209{word-spacing:-18.698240pt;}
.ws0_c01209{word-spacing:-17.408000pt;}
.ws2_c01209{word-spacing:0.000000pt;}
._c_c01209{margin-left:-3.776000pt;}
._3_c01209{margin-left:-2.806298pt;}
._0_c01209{margin-left:-1.119014pt;}
._2_c01209{width:1.440000pt;}
._4_c01209{width:2.345702pt;}
._d_c01209{width:3.527561pt;}
._b_c01209{width:4.896021pt;}
._9_c01209{width:5.888000pt;}
._a_c01209{width:8.244326pt;}
._8_c01209{width:9.521434pt;}
._7_c01209{width:10.432000pt;}
._f_c01209{width:14.400000pt;}
._1_c01209{width:16.778688pt;}
._5_c01209{width:18.752000pt;}
._6_c01209{width:20.490688pt;}
._10_c01209{width:22.912000pt;}
._e_c01209{width:25.664000pt;}
.fs4_c01209{font-size:34.560000pt;}
.fs2_c01209{font-size:42.880000pt;}
.fs5_c01209{font-size:53.120000pt;}
.fs0_c01209{font-size:58.880000pt;}
.fs1_c01209{font-size:64.000000pt;}
.fs3_c01209{font-size:74.880000pt;}
.y0_c01209{bottom:0.000000pt;}
.y39_c01209{bottom:1.746667pt;}
.y38_c01209{bottom:17.266667pt;}
.y3_c01209{bottom:51.232000pt;}
.y2_c01209{bottom:69.152000pt;}
.y36_c01209{bottom:97.152000pt;}
.y35_c01209{bottom:113.312000pt;}
.y34_c01209{bottom:117.952000pt;}
.y33_c01209{bottom:129.472000pt;}
.y32_c01209{bottom:145.786667pt;}
.y31_c01209{bottom:150.426667pt;}
.y30_c01209{bottom:161.946667pt;}
.y2f_c01209{bottom:166.586667pt;}
.y2e_c01209{bottom:178.106667pt;}
.y2d_c01209{bottom:182.746667pt;}
.y2c_c01209{bottom:195.706667pt;}
.y37_c01209{bottom:210.440000pt;}
.y2b_c01209{bottom:232.346667pt;}
.y2a_c01209{bottom:253.506667pt;}
.y29_c01209{bottom:274.626667pt;}
.y28_c01209{bottom:295.746667pt;}
.y27_c01209{bottom:316.866667pt;}
.y26_c01209{bottom:338.146667pt;}
.y25_c01209{bottom:359.266667pt;}
.y24_c01209{bottom:380.386667pt;}
.y23_c01209{bottom:401.506667pt;}
.y22_c01209{bottom:422.786667pt;}
.y21_c01209{bottom:443.906667pt;}
.y20_c01209{bottom:465.026667pt;}
.y1f_c01209{bottom:486.146667pt;}
.y1e_c01209{bottom:505.213333pt;}
.y1d_c01209{bottom:526.493333pt;}
.y1c_c01209{bottom:563.293333pt;}
.y1b_c01209{bottom:597.853333pt;}
.y1a_c01209{bottom:618.973333pt;}
.y18_c01209{bottom:640.093333pt;}
.y19_c01209{bottom:645.373333pt;}
.y17_c01209{bottom:661.213333pt;}
.y15_c01209{bottom:682.493333pt;}
.y16_c01209{bottom:687.773333pt;}
.y14_c01209{bottom:703.613333pt;}
.y13_c01209{bottom:724.733333pt;}
.y11_c01209{bottom:745.853333pt;}
.y12_c01209{bottom:751.133333pt;}
.y10_c01209{bottom:767.173333pt;}
.yf_c01209{bottom:788.293333pt;}
.ye_c01209{bottom:809.413333pt;}
.yd_c01209{bottom:830.533333pt;}
.yc_c01209{bottom:851.813333pt;}
.yb_c01209{bottom:872.933333pt;}
.y9_c01209{bottom:894.053333pt;}
.ya_c01209{bottom:899.333333pt;}
.y8_c01209{bottom:915.173333pt;}
.y7_c01209{bottom:936.453333pt;}
.y6_c01209{bottom:957.573333pt;}
.y5_c01209{bottom:991.973333pt;}
.y4_c01209{bottom:1013.280000pt;}
.y1_c01209{bottom:1061.920000pt;}
.hb_c01209{height:29.440000pt;}
.h8_c01209{height:36.875520pt;}
.h6_c01209{height:38.441250pt;}
.h2_c01209{height:42.722500pt;}
.h3_c01209{height:44.648750pt;}
.hc_c01209{height:47.491563pt;}
.ha_c01209{height:53.145938pt;}
.h9_c01209{height:56.679040pt;}
.h4_c01209{height:57.375000pt;}
.h7_c01209{height:78.097500pt;}
.h5_c01209{height:1122.546667pt;}
.h0_c01209{height:1122.560000pt;}
.h1_c01209{height:1122.666667pt;}
.w3_c01209{width:179.546667pt;}
.w2_c01209{width:793.740000pt;}
.w0_c01209{width:793.760000pt;}
.w1_c01209{width:794.000000pt;}
.x0_c01209{left:0.000000pt;}
.x1_c01209{left:113.472000pt;}
.xd_c01209{left:115.240000pt;}
.xc_c01209{left:129.792000pt;}
.x6_c01209{left:259.206667pt;}
.x7_c01209{left:277.026667pt;}
.xb_c01209{left:305.506667pt;}
.xa_c01209{left:311.426667pt;}
.x2_c01209{left:391.246667pt;}
.x3_c01209{left:409.026667pt;}
.x4_c01209{left:426.766667pt;}
.x5_c01209{left:444.573333pt;}
.x8_c01209{left:550.633333pt;}
.x9_c01209{left:568.413333pt;}
}





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

.ir_c01210:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01210;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01210;src:url('chunks/assets/font_0e5b023a3dbaf251af5f4869.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01210;src:url('chunks/assets/font_70b0bd010f3a16716757952a.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01210;src:url('chunks/assets/font_46829259e23f38c82afbc323.woff2')format("woff");}.ff4_c01210{font-family:ff4_c01210;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.ls2_c01210{letter-spacing:-0.432000px;}
.ls1_c01210{letter-spacing:0.000000px;}
.ls0_c01210{letter-spacing:0.144000px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01210{word-spacing:0.000000px;}
._9_c01210{margin-left:-5.473135px;}
._8_c01210{margin-left:-4.464000px;}
._13_c01210{margin-left:-3.096000px;}
._0_c01210{margin-left:-1.390841px;}
._1_c01210{width:1.224000px;}
._4_c01210{width:2.566817px;}
._7_c01210{width:3.983976px;}
._18_c01210{width:5.256000px;}
._11_c01210{width:7.006841px;}
._10_c01210{width:8.280000px;}
._1b_c01210{width:9.576000px;}
._15_c01210{width:10.656000px;}
._c_c01210{width:11.712024px;}
._6_c01210{width:13.032000px;}
._5_c01210{width:14.112000px;}
._1a_c01210{width:16.128000px;}
._19_c01210{width:17.136000px;}
._16_c01210{width:22.896000px;}
._a_c01210{width:24.120000px;}
._b_c01210{width:25.428000px;}
._f_c01210{width:26.628000px;}
._e_c01210{width:28.701683px;}
._d_c01210{width:29.880000px;}
._3_c01210{width:33.192000px;}
._2_c01210{width:34.272000px;}
._14_c01210{width:35.496000px;}
._17_c01210{width:44.064000px;}
._12_c01210{width:45.144000px;}
.fc0_c01210{color:rgb(0,0,0);}
.fs2_c01210{font-size:59.760000px;}
.fs0_c01210{font-size:66.240000px;}
.fs1_c01210{font-size:72.000000px;}
.y0_c01210{bottom:0.000000px;}
.y2e_c01210{bottom:8.655000px;}
.y3_c01210{bottom:57.636000px;}
.y2_c01210{bottom:77.796000px;}
.y2c_c01210{bottom:142.596000px;}
.y2b_c01210{bottom:166.350000px;}
.y2a_c01210{bottom:190.290000px;}
.y29_c01210{bottom:214.050000px;}
.y28_c01210{bottom:237.810000px;}
.y27_c01210{bottom:261.570000px;}
.y26_c01210{bottom:285.375000px;}
.y25_c01210{bottom:309.315000px;}
.y24_c01210{bottom:333.075000px;}
.y2d_c01210{bottom:351.960000px;}
.y23_c01210{bottom:371.955000px;}
.y22_c01210{bottom:395.715000px;}
.y21_c01210{bottom:419.475000px;}
.y20_c01210{bottom:443.235000px;}
.y1f_c01210{bottom:466.995000px;}
.y1e_c01210{bottom:490.935000px;}
.y1d_c01210{bottom:514.695000px;}
.y1c_c01210{bottom:538.455000px;}
.y1b_c01210{bottom:562.215000px;}
.y1a_c01210{bottom:586.185000px;}
.y19_c01210{bottom:609.945000px;}
.y18_c01210{bottom:633.705000px;}
.y17_c01210{bottom:657.465000px;}
.y16_c01210{bottom:681.405000px;}
.y15_c01210{bottom:705.165000px;}
.y14_c01210{bottom:728.925000px;}
.y13_c01210{bottom:767.805000px;}
.y12_c01210{bottom:791.565000px;}
.y11_c01210{bottom:815.325000px;}
.y10_c01210{bottom:839.085000px;}
.yf_c01210{bottom:863.070000px;}
.ye_c01210{bottom:886.830000px;}
.yd_c01210{bottom:910.590000px;}
.yc_c01210{bottom:934.350000px;}
.yb_c01210{bottom:958.290000px;}
.ya_c01210{bottom:982.050000px;}
.y9_c01210{bottom:1005.810000px;}
.y8_c01210{bottom:1029.570000px;}
.y7_c01210{bottom:1068.450000px;}
.y6_c01210{bottom:1092.210000px;}
.y5_c01210{bottom:1115.970000px;}
.y4_c01210{bottom:1139.940000px;}
.y1_c01210{bottom:1194.660000px;}
.h5_c01210{height:22.500000px;}
.h2_c01210{height:48.062812px;}
.h3_c01210{height:50.229844px;}
.h6_c01210{height:53.428008px;}
.h4_c01210{height:64.546875px;}
.h0_c01210{height:1262.880000px;}
.h1_c01210{height:1263.000000px;}
.w2_c01210{width:161.460000px;}
.w0_c01210{width:892.980000px;}
.w1_c01210{width:893.250000px;}
.x0_c01210{left:0.000000px;}
.x3_c01210{left:127.656000px;}
.x1_c01210{left:169.950000px;}
.x4_c01210{left:518.700000px;}
.x2_c01210{left:740.490000px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls2_c01210{letter-spacing:-0.384000pt;}
.ls1_c01210{letter-spacing:0.000000pt;}
.ls0_c01210{letter-spacing:0.128000pt;}
.ws0_c01210{word-spacing:0.000000pt;}
._9_c01210{margin-left:-4.865009pt;}
._8_c01210{margin-left:-3.968000pt;}
._13_c01210{margin-left:-2.752000pt;}
._0_c01210{margin-left:-1.236303pt;}
._1_c01210{width:1.088000pt;}
._4_c01210{width:2.281615pt;}
._7_c01210{width:3.541312pt;}
._18_c01210{width:4.672000pt;}
._11_c01210{width:6.228303pt;}
._10_c01210{width:7.360000pt;}
._1b_c01210{width:8.512000pt;}
._15_c01210{width:9.472000pt;}
._c_c01210{width:10.410688pt;}
._6_c01210{width:11.584000pt;}
._5_c01210{width:12.544000pt;}
._1a_c01210{width:14.336000pt;}
._19_c01210{width:15.232000pt;}
._16_c01210{width:20.352000pt;}
._a_c01210{width:21.440000pt;}
._b_c01210{width:22.602667pt;}
._f_c01210{width:23.669333pt;}
._e_c01210{width:25.512607pt;}
._d_c01210{width:26.560000pt;}
._3_c01210{width:29.504000pt;}
._2_c01210{width:30.464000pt;}
._14_c01210{width:31.552000pt;}
._17_c01210{width:39.168000pt;}
._12_c01210{width:40.128000pt;}
.fs2_c01210{font-size:53.120000pt;}
.fs0_c01210{font-size:58.880000pt;}
.fs1_c01210{font-size:64.000000pt;}
.y0_c01210{bottom:0.000000pt;}
.y2e_c01210{bottom:7.693333pt;}
.y3_c01210{bottom:51.232000pt;}
.y2_c01210{bottom:69.152000pt;}
.y2c_c01210{bottom:126.752000pt;}
.y2b_c01210{bottom:147.866667pt;}
.y2a_c01210{bottom:169.146667pt;}
.y29_c01210{bottom:190.266667pt;}
.y28_c01210{bottom:211.386667pt;}
.y27_c01210{bottom:232.506667pt;}
.y26_c01210{bottom:253.666667pt;}
.y25_c01210{bottom:274.946667pt;}
.y24_c01210{bottom:296.066667pt;}
.y2d_c01210{bottom:312.853333pt;}
.y23_c01210{bottom:330.626667pt;}
.y22_c01210{bottom:351.746667pt;}
.y21_c01210{bottom:372.866667pt;}
.y20_c01210{bottom:393.986667pt;}
.y1f_c01210{bottom:415.106667pt;}
.y1e_c01210{bottom:436.386667pt;}
.y1d_c01210{bottom:457.506667pt;}
.y1c_c01210{bottom:478.626667pt;}
.y1b_c01210{bottom:499.746667pt;}
.y1a_c01210{bottom:521.053333pt;}
.y19_c01210{bottom:542.173333pt;}
.y18_c01210{bottom:563.293333pt;}
.y17_c01210{bottom:584.413333pt;}
.y16_c01210{bottom:605.693333pt;}
.y15_c01210{bottom:626.813333pt;}
.y14_c01210{bottom:647.933333pt;}
.y13_c01210{bottom:682.493333pt;}
.y12_c01210{bottom:703.613333pt;}
.y11_c01210{bottom:724.733333pt;}
.y10_c01210{bottom:745.853333pt;}
.yf_c01210{bottom:767.173333pt;}
.ye_c01210{bottom:788.293333pt;}
.yd_c01210{bottom:809.413333pt;}
.yc_c01210{bottom:830.533333pt;}
.yb_c01210{bottom:851.813333pt;}
.ya_c01210{bottom:872.933333pt;}
.y9_c01210{bottom:894.053333pt;}
.y8_c01210{bottom:915.173333pt;}
.y7_c01210{bottom:949.733333pt;}
.y6_c01210{bottom:970.853333pt;}
.y5_c01210{bottom:991.973333pt;}
.y4_c01210{bottom:1013.280000pt;}
.y1_c01210{bottom:1061.920000pt;}
.h5_c01210{height:20.000000pt;}
.h2_c01210{height:42.722500pt;}
.h3_c01210{height:44.648750pt;}
.h6_c01210{height:47.491563pt;}
.h4_c01210{height:57.375000pt;}
.h0_c01210{height:1122.560000pt;}
.h1_c01210{height:1122.666667pt;}
.w2_c01210{width:143.520000pt;}
.w0_c01210{width:793.760000pt;}
.w1_c01210{width:794.000000pt;}
.x0_c01210{left:0.000000pt;}
.x3_c01210{left:113.472000pt;}
.x1_c01210{left:151.066667pt;}
.x4_c01210{left:461.066667pt;}
.x2_c01210{left:658.213333pt;}
}





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

.ir_c01211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01211;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01211;src:url('chunks/assets/font_0e5b023a3dbaf251af5f4869.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01211;src:url('chunks/assets/font_ea95a435d610e59e41933187.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01211;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01211{font-family:ff4_c01211;line-height:1.113281;font-style:normal;font-weight: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_c01211;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff5_c01211{font-family:ff5_c01211;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:ff6_c01211;src:url('chunks/assets/font_98ae53dba23ecfe4074833b1.woff2')format("woff");}.ff6_c01211{font-family:ff6_c01211;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01211{vertical-align:0.000000px;}
.ls2_c01211{letter-spacing:0.000000px;}
.ls0_c01211{letter-spacing:0.144000px;}
.ls1_c01211{letter-spacing:0.288000px;}
.sc__c01211{text-shadow:none;}
.sc0_c01211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01211{-webkit-text-stroke:0px transparent;}
.sc0_c01211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01211{word-spacing:-20.304000px;}
.ws1_c01211{word-spacing:0.000000px;}
._5_c01211{margin-left:-2.273544px;}
._0_c01211{margin-left:-1.258891px;}
._3_c01211{width:1.008000px;}
._4_c01211{width:2.736000px;}
._7_c01211{width:3.912048px;}
._a_c01211{width:5.423952px;}
._2_c01211{width:10.224000px;}
._1_c01211{width:11.520000px;}
._d_c01211{width:13.930891px;}
._9_c01211{width:15.192000px;}
._8_c01211{width:16.560000px;}
._c_c01211{width:22.440024px;}
._b_c01211{width:24.264000px;}
._6_c01211{width:765.684000px;}
.fc0_c01211{color:rgb(0,0,0);}
.fs3_c01211{font-size:59.760000px;}
.fs0_c01211{font-size:66.240000px;}
.fs1_c01211{font-size:72.000000px;}
.fs2_c01211{font-size:84.240000px;}
.y0_c01211{bottom:0.000000px;}
.y20_c01211{bottom:8.640000px;}
.y3_c01211{bottom:57.636000px;}
.y2_c01211{bottom:77.796000px;}
.y1e_c01211{bottom:146.556000px;}
.y1d_c01211{bottom:170.310000px;}
.y1c_c01211{bottom:194.070000px;}
.y1b_c01211{bottom:218.010000px;}
.y1a_c01211{bottom:241.770000px;}
.y19_c01211{bottom:265.530000px;}
.y18_c01211{bottom:289.335000px;}
.y17_c01211{bottom:313.095000px;}
.y16_c01211{bottom:337.035000px;}
.y15_c01211{bottom:358.455000px;}
.y14_c01211{bottom:382.215000px;}
.y13_c01211{bottom:424.875000px;}
.y12_c01211{bottom:466.455000px;}
.y11_c01211{bottom:490.215000px;}
.y10_c01211{bottom:514.155000px;}
.yf_c01211{bottom:537.915000px;}
.ye_c01211{bottom:561.675000px;}
.yd_c01211{bottom:585.465000px;}
.yc_c01211{bottom:624.345000px;}
.y1f_c01211{bottom:629.565000px;}
.yb_c01211{bottom:659.085000px;}
.ya_c01211{bottom:966.930000px;}
.y9_c01211{bottom:990.870000px;}
.y8_c01211{bottom:1014.630000px;}
.y7_c01211{bottom:1038.390000px;}
.y6_c01211{bottom:1062.150000px;}
.y5_c01211{bottom:1101.030000px;}
.y4_c01211{bottom:1139.940000px;}
.y1_c01211{bottom:1194.660000px;}
.h7_c01211{height:22.500000px;}
.h2_c01211{height:48.062812px;}
.h3_c01211{height:50.229844px;}
.h8_c01211{height:53.428008px;}
.h4_c01211{height:64.546875px;}
.h5_c01211{height:76.054570px;}
.h6_c01211{height:87.859687px;}
.h0_c01211{height:1262.880000px;}
.h1_c01211{height:1263.000000px;}
.w2_c01211{width:158.055000px;}
.w3_c01211{width:158.235000px;}
.w0_c01211{width:892.980000px;}
.w1_c01211{width:893.250000px;}
.x0_c01211{left:0.000000px;}
.x1_c01211{left:127.656000px;}
.x4_c01211{left:137.205000px;}
.x3_c01211{left:305.895000px;}
.x2_c01211{left:560.265000px;}
.x5_c01211{left:565.500000px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls2_c01211{letter-spacing:0.000000pt;}
.ls0_c01211{letter-spacing:0.128000pt;}
.ls1_c01211{letter-spacing:0.256000pt;}
.ws0_c01211{word-spacing:-18.048000pt;}
.ws1_c01211{word-spacing:0.000000pt;}
._5_c01211{margin-left:-2.020928pt;}
._0_c01211{margin-left:-1.119014pt;}
._3_c01211{width:0.896000pt;}
._4_c01211{width:2.432000pt;}
._7_c01211{width:3.477376pt;}
._a_c01211{width:4.821291pt;}
._2_c01211{width:9.088000pt;}
._1_c01211{width:10.240000pt;}
._d_c01211{width:12.383014pt;}
._9_c01211{width:13.504000pt;}
._8_c01211{width:14.720000pt;}
._c_c01211{width:19.946688pt;}
._b_c01211{width:21.568000pt;}
._6_c01211{width:680.608000pt;}
.fs3_c01211{font-size:53.120000pt;}
.fs0_c01211{font-size:58.880000pt;}
.fs1_c01211{font-size:64.000000pt;}
.fs2_c01211{font-size:74.880000pt;}
.y0_c01211{bottom:0.000000pt;}
.y20_c01211{bottom:7.680000pt;}
.y3_c01211{bottom:51.232000pt;}
.y2_c01211{bottom:69.152000pt;}
.y1e_c01211{bottom:130.272000pt;}
.y1d_c01211{bottom:151.386667pt;}
.y1c_c01211{bottom:172.506667pt;}
.y1b_c01211{bottom:193.786667pt;}
.y1a_c01211{bottom:214.906667pt;}
.y19_c01211{bottom:236.026667pt;}
.y18_c01211{bottom:257.186667pt;}
.y17_c01211{bottom:278.306667pt;}
.y16_c01211{bottom:299.586667pt;}
.y15_c01211{bottom:318.626667pt;}
.y14_c01211{bottom:339.746667pt;}
.y13_c01211{bottom:377.666667pt;}
.y12_c01211{bottom:414.626667pt;}
.y11_c01211{bottom:435.746667pt;}
.y10_c01211{bottom:457.026667pt;}
.yf_c01211{bottom:478.146667pt;}
.ye_c01211{bottom:499.266667pt;}
.yd_c01211{bottom:520.413333pt;}
.yc_c01211{bottom:554.973333pt;}
.y1f_c01211{bottom:559.613333pt;}
.yb_c01211{bottom:585.853333pt;}
.ya_c01211{bottom:859.493333pt;}
.y9_c01211{bottom:880.773333pt;}
.y8_c01211{bottom:901.893333pt;}
.y7_c01211{bottom:923.013333pt;}
.y6_c01211{bottom:944.133333pt;}
.y5_c01211{bottom:978.693333pt;}
.y4_c01211{bottom:1013.280000pt;}
.y1_c01211{bottom:1061.920000pt;}
.h7_c01211{height:20.000000pt;}
.h2_c01211{height:42.722500pt;}
.h3_c01211{height:44.648750pt;}
.h8_c01211{height:47.491563pt;}
.h4_c01211{height:57.375000pt;}
.h5_c01211{height:67.604062pt;}
.h6_c01211{height:78.097500pt;}
.h0_c01211{height:1122.560000pt;}
.h1_c01211{height:1122.666667pt;}
.w2_c01211{width:140.493333pt;}
.w3_c01211{width:140.653333pt;}
.w0_c01211{width:793.760000pt;}
.w1_c01211{width:794.000000pt;}
.x0_c01211{left:0.000000pt;}
.x1_c01211{left:113.472000pt;}
.x4_c01211{left:121.960000pt;}
.x3_c01211{left:271.906667pt;}
.x2_c01211{left:498.013333pt;}
.x5_c01211{left:502.666667pt;}
}





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

.ir_c01212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01212;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01212;src:url('chunks/assets/font_aa0f8e54c9800a95b93c377f.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01212;src:url('chunks/assets/font_f8ed7f1a0e46f74649d8904e.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01212;src:url('chunks/assets/font_f6318e94d1c20c9158da3927.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:1.104492;font-style:normal;font-weight: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_c01212;src:url('chunks/assets/font_626f963e1c63f92e3319029f.woff2')format("woff");}.ff5_c01212{font-family:ff5_c01212;line-height:1.575000;font-style:normal;font-weight: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_c01212;src:url('chunks/assets/font_078adadbcb6a69ffc40a3685.woff2')format("woff");}.ff6_c01212{font-family:ff6_c01212;line-height:1.211914;font-style:normal;font-weight: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_c01212;src:url('chunks/assets/font_05165c4612d6ae9d51b56889.woff2')format("woff");}.ff7_c01212{font-family:ff7_c01212;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01212{vertical-align:0.000000px;}
.ls8_c01212{letter-spacing:-0.936000px;}
.ls4_c01212{letter-spacing:-0.576000px;}
.lsa_c01212{letter-spacing:-0.247800px;}
.ls7_c01212{letter-spacing:-0.181200px;}
.ls3_c01212{letter-spacing:-0.144000px;}
.ls2_c01212{letter-spacing:0.000000px;}
.ls5_c01212{letter-spacing:0.144000px;}
.ls9_c01212{letter-spacing:0.150000px;}
.ls6_c01212{letter-spacing:0.288000px;}
.lsb_c01212{letter-spacing:0.567600px;}
.ls0_c01212{letter-spacing:7.020480px;}
.ls1_c01212{letter-spacing:15.660480px;}
.sc__c01212{text-shadow:none;}
.sc0_c01212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01212{-webkit-text-stroke:0px transparent;}
.sc0_c01212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01212{word-spacing:-20.304000px;}
.ws1_c01212{word-spacing:-20.160000px;}
.ws0_c01212{word-spacing:-19.872000px;}
.ws3_c01212{word-spacing:-19.080000px;}
.ws4_c01212{word-spacing:0.000000px;}
._d_c01212{margin-left:-4.320000px;}
._f_c01212{margin-left:-3.024000px;}
._0_c01212{margin-left:-1.390841px;}
._5_c01212{width:1.153159px;}
._2_c01212{width:2.458817px;}
._e_c01212{width:4.320000px;}
._1_c01212{width:5.976000px;}
._10_c01212{width:7.190802px;}
._c_c01212{width:8.768063px;}
._7_c01212{width:10.063389px;}
._6_c01212{width:11.448000px;}
._a_c01212{width:12.816000px;}
._b_c01212{width:14.052024px;}
._4_c01212{width:16.414841px;}
._3_c01212{width:17.976000px;}
._11_c01212{width:19.551270px;}
._9_c01212{width:23.832000px;}
._8_c01212{width:25.056000px;}
.fc0_c01212{color:rgb(0,0,0);}
.fs3_c01212{font-size:38.880000px;}
.fs2_c01212{font-size:48.240000px;}
.fs4_c01212{font-size:59.760000px;}
.fs0_c01212{font-size:66.240000px;}
.fs1_c01212{font-size:72.000000px;}
.y0_c01212{bottom:0.000000px;}
.y3_c01212{bottom:57.636000px;}
.y2_c01212{bottom:77.796000px;}
.y31_c01212{bottom:109.296000px;}
.y30_c01212{bottom:127.476000px;}
.y2f_c01212{bottom:132.696000px;}
.y2e_c01212{bottom:145.656000px;}
.y2d_c01212{bottom:164.010000px;}
.y2c_c01212{bottom:169.230000px;}
.y2b_c01212{bottom:183.810000px;}
.y2a_c01212{bottom:222.870000px;}
.y29_c01212{bottom:246.630000px;}
.y28_c01212{bottom:270.570000px;}
.y27_c01212{bottom:294.195000px;}
.y26_c01212{bottom:318.135000px;}
.y25_c01212{bottom:341.895000px;}
.y24_c01212{bottom:380.595000px;}
.y23_c01212{bottom:404.535000px;}
.y22_c01212{bottom:428.295000px;}
.y21_c01212{bottom:452.055000px;}
.y20_c01212{bottom:475.815000px;}
.y1f_c01212{bottom:499.755000px;}
.y1e_c01212{bottom:523.515000px;}
.y1d_c01212{bottom:547.275000px;}
.y1c_c01212{bottom:571.065000px;}
.y1b_c01212{bottom:595.005000px;}
.y1a_c01212{bottom:633.885000px;}
.y19_c01212{bottom:657.645000px;}
.y18_c01212{bottom:681.585000px;}
.y16_c01212{bottom:705.165000px;}
.y17_c01212{bottom:711.105000px;}
.y14_c01212{bottom:728.925000px;}
.y15_c01212{bottom:734.865000px;}
.y13_c01212{bottom:752.685000px;}
.y12_c01212{bottom:776.625000px;}
.y11_c01212{bottom:800.385000px;}
.y10_c01212{bottom:824.145000px;}
.yf_c01212{bottom:847.950000px;}
.ye_c01212{bottom:871.890000px;}
.yd_c01212{bottom:910.590000px;}
.yc_c01212{bottom:934.350000px;}
.yb_c01212{bottom:958.290000px;}
.ya_c01212{bottom:982.050000px;}
.y9_c01212{bottom:1005.810000px;}
.y8_c01212{bottom:1029.570000px;}
.y7_c01212{bottom:1053.510000px;}
.y6_c01212{bottom:1077.270000px;}
.y5_c01212{bottom:1115.970000px;}
.y4_c01212{bottom:1139.940000px;}
.y1_c01212{bottom:1194.660000px;}
.h7_c01212{height:41.484960px;}
.h6_c01212{height:43.246406px;}
.h2_c01212{height:48.062812px;}
.h3_c01212{height:50.229844px;}
.h8_c01212{height:63.763920px;}
.h4_c01212{height:64.546875px;}
.h5_c01212{height:1262.865000px;}
.h0_c01212{height:1262.880000px;}
.h1_c01212{height:1263.000000px;}
.w2_c01212{width:892.957500px;}
.w0_c01212{width:892.980000px;}
.w1_c01212{width:893.250000px;}
.x0_c01212{left:0.000000px;}
.x3_c01212{left:127.656000px;}
.x7_c01212{left:146.016000px;}
.x1_c01212{left:169.950000px;}
.x6_c01212{left:343.695000px;}
.x4_c01212{left:474.352500px;}
.x5_c01212{left:494.385000px;}
.x2_c01212{left:740.490000px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.ls8_c01212{letter-spacing:-0.832000pt;}
.ls4_c01212{letter-spacing:-0.512000pt;}
.lsa_c01212{letter-spacing:-0.220267pt;}
.ls7_c01212{letter-spacing:-0.161067pt;}
.ls3_c01212{letter-spacing:-0.128000pt;}
.ls2_c01212{letter-spacing:0.000000pt;}
.ls5_c01212{letter-spacing:0.128000pt;}
.ls9_c01212{letter-spacing:0.133333pt;}
.ls6_c01212{letter-spacing:0.256000pt;}
.lsb_c01212{letter-spacing:0.504533pt;}
.ls0_c01212{letter-spacing:6.240427pt;}
.ls1_c01212{letter-spacing:13.920427pt;}
.ws2_c01212{word-spacing:-18.048000pt;}
.ws1_c01212{word-spacing:-17.920000pt;}
.ws0_c01212{word-spacing:-17.664000pt;}
.ws3_c01212{word-spacing:-16.960000pt;}
.ws4_c01212{word-spacing:0.000000pt;}
._d_c01212{margin-left:-3.840000pt;}
._f_c01212{margin-left:-2.688000pt;}
._0_c01212{margin-left:-1.236303pt;}
._5_c01212{width:1.025030pt;}
._2_c01212{width:2.185615pt;}
._e_c01212{width:3.840000pt;}
._1_c01212{width:5.312000pt;}
._10_c01212{width:6.391824pt;}
._c_c01212{width:7.793834pt;}
._7_c01212{width:8.945235pt;}
._6_c01212{width:10.176000pt;}
._a_c01212{width:11.392000pt;}
._b_c01212{width:12.490688pt;}
._4_c01212{width:14.590970pt;}
._3_c01212{width:15.978667pt;}
._11_c01212{width:17.378906pt;}
._9_c01212{width:21.184000pt;}
._8_c01212{width:22.272000pt;}
.fs3_c01212{font-size:34.560000pt;}
.fs2_c01212{font-size:42.880000pt;}
.fs4_c01212{font-size:53.120000pt;}
.fs0_c01212{font-size:58.880000pt;}
.fs1_c01212{font-size:64.000000pt;}
.y0_c01212{bottom:0.000000pt;}
.y3_c01212{bottom:51.232000pt;}
.y2_c01212{bottom:69.152000pt;}
.y31_c01212{bottom:97.152000pt;}
.y30_c01212{bottom:113.312000pt;}
.y2f_c01212{bottom:117.952000pt;}
.y2e_c01212{bottom:129.472000pt;}
.y2d_c01212{bottom:145.786667pt;}
.y2c_c01212{bottom:150.426667pt;}
.y2b_c01212{bottom:163.386667pt;}
.y2a_c01212{bottom:198.106667pt;}
.y29_c01212{bottom:219.226667pt;}
.y28_c01212{bottom:240.506667pt;}
.y27_c01212{bottom:261.506667pt;}
.y26_c01212{bottom:282.786667pt;}
.y25_c01212{bottom:303.906667pt;}
.y24_c01212{bottom:338.306667pt;}
.y23_c01212{bottom:359.586667pt;}
.y22_c01212{bottom:380.706667pt;}
.y21_c01212{bottom:401.826667pt;}
.y20_c01212{bottom:422.946667pt;}
.y1f_c01212{bottom:444.226667pt;}
.y1e_c01212{bottom:465.346667pt;}
.y1d_c01212{bottom:486.466667pt;}
.y1c_c01212{bottom:507.613333pt;}
.y1b_c01212{bottom:528.893333pt;}
.y1a_c01212{bottom:563.453333pt;}
.y19_c01212{bottom:584.573333pt;}
.y18_c01212{bottom:605.853333pt;}
.y16_c01212{bottom:626.813333pt;}
.y17_c01212{bottom:632.093333pt;}
.y14_c01212{bottom:647.933333pt;}
.y15_c01212{bottom:653.213333pt;}
.y13_c01212{bottom:669.053333pt;}
.y12_c01212{bottom:690.333333pt;}
.y11_c01212{bottom:711.453333pt;}
.y10_c01212{bottom:732.573333pt;}
.yf_c01212{bottom:753.733333pt;}
.ye_c01212{bottom:775.013333pt;}
.yd_c01212{bottom:809.413333pt;}
.yc_c01212{bottom:830.533333pt;}
.yb_c01212{bottom:851.813333pt;}
.ya_c01212{bottom:872.933333pt;}
.y9_c01212{bottom:894.053333pt;}
.y8_c01212{bottom:915.173333pt;}
.y7_c01212{bottom:936.453333pt;}
.y6_c01212{bottom:957.573333pt;}
.y5_c01212{bottom:991.973333pt;}
.y4_c01212{bottom:1013.280000pt;}
.y1_c01212{bottom:1061.920000pt;}
.h7_c01212{height:36.875520pt;}
.h6_c01212{height:38.441250pt;}
.h2_c01212{height:42.722500pt;}
.h3_c01212{height:44.648750pt;}
.h8_c01212{height:56.679040pt;}
.h4_c01212{height:57.375000pt;}
.h5_c01212{height:1122.546667pt;}
.h0_c01212{height:1122.560000pt;}
.h1_c01212{height:1122.666667pt;}
.w2_c01212{width:793.740000pt;}
.w0_c01212{width:793.760000pt;}
.w1_c01212{width:794.000000pt;}
.x0_c01212{left:0.000000pt;}
.x3_c01212{left:113.472000pt;}
.x7_c01212{left:129.792000pt;}
.x1_c01212{left:151.066667pt;}
.x6_c01212{left:305.506667pt;}
.x4_c01212{left:421.646667pt;}
.x5_c01212{left:439.453333pt;}
.x2_c01212{left:658.213333pt;}
}





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

.ir_c01213:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01213;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01213;src:url('chunks/assets/font_00721d48f5d0396e4700bc1f.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01213;src:url('chunks/assets/font_c9c32912c0133aa045105ed9.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01213;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01213{font-family:ff4_c01213;line-height:1.113281;font-style:normal;font-weight: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_c01213;src:url('chunks/assets/font_38aed03ff19212a17d049b84.woff2')format("woff");}.ff5_c01213{font-family:ff5_c01213;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:ff6_c01213;src:url('chunks/assets/font_a09f605e7ebfed0511a71f3e.woff2')format("woff");}.ff6_c01213{font-family:ff6_c01213;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.ls0_c01213{letter-spacing:0.000000px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01213{word-spacing:0.000000px;}
._9_c01213{margin-left:-2.781979px;}
._0_c01213{margin-left:-1.258891px;}
._2_c01213{width:1.172722px;}
._7_c01213{width:2.438194px;}
._6_c01213{width:4.186973px;}
._1_c01213{width:8.424000px;}
._4_c01213{width:15.768000px;}
._3_c01213{width:16.776000px;}
._8_c01213{width:18.792000px;}
._5_c01213{width:1259.921280px;}
.fc0_c01213{color:rgb(0,0,0);}
.fs3_c01213{font-size:59.760000px;}
.fs0_c01213{font-size:66.240000px;}
.fs1_c01213{font-size:72.000000px;}
.fs2_c01213{font-size:84.240000px;}
.y0_c01213{bottom:0.000000px;}
.y22_c01213{bottom:4.155000px;}
.y1a_c01213{bottom:4.680000px;}
.y2d_c01213{bottom:4.695000px;}
.y2f_c01213{bottom:8.640000px;}
.y31_c01213{bottom:8.820000px;}
.y2c_c01213{bottom:21.975000px;}
.y21_c01213{bottom:24.840000px;}
.y19_c01213{bottom:28.260000px;}
.y26_c01213{bottom:39.255000px;}
.y1e_c01213{bottom:39.285000px;}
.y28_c01213{bottom:45.540000px;}
.y20_c01213{bottom:45.570000px;}
.y2a_c01213{bottom:46.080000px;}
.y18_c01213{bottom:48.960000px;}
.y3_c01213{bottom:57.636000px;}
.y24_c01213{bottom:63.360000px;}
.y1c_c01213{bottom:63.390000px;}
.y27_c01213{bottom:66.240000px;}
.y1f_c01213{bottom:66.270000px;}
.y16_c01213{bottom:66.780000px;}
.y17_c01213{bottom:69.660000px;}
.y2_c01213{bottom:77.796000px;}
.y14_c01213{bottom:132.336000px;}
.y13_c01213{bottom:171.210000px;}
.y12_c01213{bottom:209.910000px;}
.y11_c01213{bottom:233.850000px;}
.y10_c01213{bottom:257.610000px;}
.yf_c01213{bottom:281.370000px;}
.ye_c01213{bottom:305.175000px;}
.yd_c01213{bottom:329.115000px;}
.yc_c01213{bottom:367.815000px;}
.y2b_c01213{bottom:384.540000px;}
.y29_c01213{bottom:384.555000px;}
.y25_c01213{bottom:450.060000px;}
.y23_c01213{bottom:450.075000px;}
.y1d_c01213{bottom:532.860000px;}
.y1b_c01213{bottom:532.875000px;}
.y15_c01213{bottom:615.705000px;}
.yb_c01213{bottom:735.585000px;}
.y30_c01213{bottom:736.845000px;}
.y2e_c01213{bottom:740.265000px;}
.ya_c01213{bottom:773.565000px;}
.y9_c01213{bottom:984.210000px;}
.y8_c01213{bottom:1007.970000px;}
.y7_c01213{bottom:1050.810000px;}
.y6_c01213{bottom:1092.210000px;}
.y5_c01213{bottom:1115.970000px;}
.y4_c01213{bottom:1139.940000px;}
.y1_c01213{bottom:1194.660000px;}
.h13_c01213{height:22.500000px;}
.h15_c01213{height:22.680000px;}
.h2_c01213{height:48.062812px;}
.h3_c01213{height:50.229844px;}
.h14_c01213{height:53.428008px;}
.h4_c01213{height:64.546875px;}
.he_c01213{height:65.003906px;}
.h12_c01213{height:65.505000px;}
.h10_c01213{height:65.515500px;}
.h11_c01213{height:65.520000px;}
.h5_c01213{height:76.054570px;}
.hf_c01213{height:82.785000px;}
.hc_c01213{height:82.795500px;}
.hd_c01213{height:82.800000px;}
.hb_c01213{height:82.830000px;}
.h9_c01213{height:82.836000px;}
.ha_c01213{height:82.845000px;}
.h8_c01213{height:86.215500px;}
.h7_c01213{height:86.220000px;}
.h6_c01213{height:87.859687px;}
.h0_c01213{height:1262.880000px;}
.h1_c01213{height:1263.000000px;}
.wd_c01213{width:21.045000px;}
.w7_c01213{width:25.725000px;}
.we_c01213{width:28.065000px;}
.w2_c01213{width:35.811000px;}
.w9_c01213{width:35.820000px;}
.w5_c01213{width:37.800000px;}
.w10_c01213{width:158.070000px;}
.w6_c01213{width:159.510000px;}
.wc_c01213{width:164.190000px;}
.wf_c01213{width:171.015000px;}
.w11_c01213{width:171.765000px;}
.w3_c01213{width:174.615000px;}
.w4_c01213{width:174.630000px;}
.w8_c01213{width:204.315000px;}
.wa_c01213{width:212.415000px;}
.wb_c01213{width:212.430000px;}
.w0_c01213{width:892.980000px;}
.w1_c01213{width:893.250000px;}
.x0_c01213{left:0.000000px;}
.x5_c01213{left:8.091000px;}
.xf_c01213{left:10.425000px;}
.x10_c01213{left:14.025000px;}
.xd_c01213{left:17.811000px;}
.x9_c01213{left:18.900000px;}
.x12_c01213{left:85.485000px;}
.x7_c01213{left:87.285000px;}
.x1_c01213{left:127.656000px;}
.x13_c01213{left:140.265000px;}
.x6_c01213{left:163.485000px;}
.x3_c01213{left:308.955000px;}
.x8_c01213{left:338.115000px;}
.xa_c01213{left:375.915000px;}
.x2_c01213{left:439.275000px;}
.x4_c01213{left:446.475000px;}
.xb_c01213{left:535.440000px;}
.xe_c01213{left:540.120000px;}
.xc_c01213{left:561.180000px;}
.x11_c01213{left:589.260000px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls0_c01213{letter-spacing:0.000000pt;}
.ws0_c01213{word-spacing:0.000000pt;}
._9_c01213{margin-left:-2.472870pt;}
._0_c01213{margin-left:-1.119014pt;}
._2_c01213{width:1.042419pt;}
._7_c01213{width:2.167283pt;}
._6_c01213{width:3.721754pt;}
._1_c01213{width:7.488000pt;}
._4_c01213{width:14.016000pt;}
._3_c01213{width:14.912000pt;}
._8_c01213{width:16.704000pt;}
._5_c01213{width:1119.930027pt;}
.fs3_c01213{font-size:53.120000pt;}
.fs0_c01213{font-size:58.880000pt;}
.fs1_c01213{font-size:64.000000pt;}
.fs2_c01213{font-size:74.880000pt;}
.y0_c01213{bottom:0.000000pt;}
.y22_c01213{bottom:3.693333pt;}
.y1a_c01213{bottom:4.160000pt;}
.y2d_c01213{bottom:4.173333pt;}
.y2f_c01213{bottom:7.680000pt;}
.y31_c01213{bottom:7.840000pt;}
.y2c_c01213{bottom:19.533333pt;}
.y21_c01213{bottom:22.080000pt;}
.y19_c01213{bottom:25.120000pt;}
.y26_c01213{bottom:34.893333pt;}
.y1e_c01213{bottom:34.920000pt;}
.y28_c01213{bottom:40.480000pt;}
.y20_c01213{bottom:40.506667pt;}
.y2a_c01213{bottom:40.960000pt;}
.y18_c01213{bottom:43.520000pt;}
.y3_c01213{bottom:51.232000pt;}
.y24_c01213{bottom:56.320000pt;}
.y1c_c01213{bottom:56.346667pt;}
.y27_c01213{bottom:58.880000pt;}
.y1f_c01213{bottom:58.906667pt;}
.y16_c01213{bottom:59.360000pt;}
.y17_c01213{bottom:61.920000pt;}
.y2_c01213{bottom:69.152000pt;}
.y14_c01213{bottom:117.632000pt;}
.y13_c01213{bottom:152.186667pt;}
.y12_c01213{bottom:186.586667pt;}
.y11_c01213{bottom:207.866667pt;}
.y10_c01213{bottom:228.986667pt;}
.yf_c01213{bottom:250.106667pt;}
.ye_c01213{bottom:271.266667pt;}
.yd_c01213{bottom:292.546667pt;}
.yc_c01213{bottom:326.946667pt;}
.y2b_c01213{bottom:341.813333pt;}
.y29_c01213{bottom:341.826667pt;}
.y25_c01213{bottom:400.053333pt;}
.y23_c01213{bottom:400.066667pt;}
.y1d_c01213{bottom:473.653333pt;}
.y1b_c01213{bottom:473.666667pt;}
.y15_c01213{bottom:547.293333pt;}
.yb_c01213{bottom:653.853333pt;}
.y30_c01213{bottom:654.973333pt;}
.y2e_c01213{bottom:658.013333pt;}
.ya_c01213{bottom:687.613333pt;}
.y9_c01213{bottom:874.853333pt;}
.y8_c01213{bottom:895.973333pt;}
.y7_c01213{bottom:934.053333pt;}
.y6_c01213{bottom:970.853333pt;}
.y5_c01213{bottom:991.973333pt;}
.y4_c01213{bottom:1013.280000pt;}
.y1_c01213{bottom:1061.920000pt;}
.h13_c01213{height:20.000000pt;}
.h15_c01213{height:20.160000pt;}
.h2_c01213{height:42.722500pt;}
.h3_c01213{height:44.648750pt;}
.h14_c01213{height:47.491563pt;}
.h4_c01213{height:57.375000pt;}
.he_c01213{height:57.781250pt;}
.h12_c01213{height:58.226667pt;}
.h10_c01213{height:58.236000pt;}
.h11_c01213{height:58.240000pt;}
.h5_c01213{height:67.604062pt;}
.hf_c01213{height:73.586667pt;}
.hc_c01213{height:73.596000pt;}
.hd_c01213{height:73.600000pt;}
.hb_c01213{height:73.626667pt;}
.h9_c01213{height:73.632000pt;}
.ha_c01213{height:73.640000pt;}
.h8_c01213{height:76.636000pt;}
.h7_c01213{height:76.640000pt;}
.h6_c01213{height:78.097500pt;}
.h0_c01213{height:1122.560000pt;}
.h1_c01213{height:1122.666667pt;}
.wd_c01213{width:18.706667pt;}
.w7_c01213{width:22.866667pt;}
.we_c01213{width:24.946667pt;}
.w2_c01213{width:31.832000pt;}
.w9_c01213{width:31.840000pt;}
.w5_c01213{width:33.600000pt;}
.w10_c01213{width:140.506667pt;}
.w6_c01213{width:141.786667pt;}
.wc_c01213{width:145.946667pt;}
.wf_c01213{width:152.013333pt;}
.w11_c01213{width:152.680000pt;}
.w3_c01213{width:155.213333pt;}
.w4_c01213{width:155.226667pt;}
.w8_c01213{width:181.613333pt;}
.wa_c01213{width:188.813333pt;}
.wb_c01213{width:188.826667pt;}
.w0_c01213{width:793.760000pt;}
.w1_c01213{width:794.000000pt;}
.x0_c01213{left:0.000000pt;}
.x5_c01213{left:7.192000pt;}
.xf_c01213{left:9.266667pt;}
.x10_c01213{left:12.466667pt;}
.xd_c01213{left:15.832000pt;}
.x9_c01213{left:16.800000pt;}
.x12_c01213{left:75.986667pt;}
.x7_c01213{left:77.586667pt;}
.x1_c01213{left:113.472000pt;}
.x13_c01213{left:124.680000pt;}
.x6_c01213{left:145.320000pt;}
.x3_c01213{left:274.626667pt;}
.x8_c01213{left:300.546667pt;}
.xa_c01213{left:334.146667pt;}
.x2_c01213{left:390.466667pt;}
.x4_c01213{left:396.866667pt;}
.xb_c01213{left:475.946667pt;}
.xe_c01213{left:480.106667pt;}
.xc_c01213{left:498.826667pt;}
.x11_c01213{left:523.786667pt;}
}





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

.ir_c01214:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01214;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01214;src:url('chunks/assets/font_960b1188675f798cc3174999.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01214;src:url('chunks/assets/font_544959888b7e1199e3a18d56.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01214;src:url('chunks/assets/font_8882fd5c04f8e614421f892a.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01214;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01214{font-family:ff5_c01214;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:ff6_c01214;src:url('chunks/assets/font_4db6c530206f9915866a8668.woff2')format("woff");}.ff6_c01214{font-family:ff6_c01214;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01214{vertical-align:0.000000px;}
.ls4_c01214{letter-spacing:-0.576000px;}
.ls2_c01214{letter-spacing:-0.432000px;}
.ls3_c01214{letter-spacing:-0.216000px;}
.ls0_c01214{letter-spacing:0.000000px;}
.ls1_c01214{letter-spacing:0.144000px;}
.ls5_c01214{letter-spacing:0.288000px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01214{word-spacing:-20.304000px;}
.ws0_c01214{word-spacing:-20.016000px;}
.ws1_c01214{word-spacing:-19.800000px;}
.ws3_c01214{word-spacing:0.000000px;}
._8_c01214{margin-left:-3.818730px;}
._6_c01214{margin-left:-2.415476px;}
._0_c01214{margin-left:-1.390841px;}
._2_c01214{width:1.152000px;}
._3_c01214{width:3.096000px;}
._7_c01214{width:4.608000px;}
._c_c01214{width:7.974206px;}
._b_c01214{width:9.100635px;}
._5_c01214{width:10.137683px;}
._4_c01214{width:11.304000px;}
._d_c01214{width:12.622841px;}
._a_c01214{width:13.824000px;}
._9_c01214{width:15.048000px;}
._e_c01214{width:16.536024px;}
._1_c01214{width:1790.940000px;}
.fc0_c01214{color:rgb(0,0,0);}
.fs2_c01214{font-size:59.760000px;}
.fs0_c01214{font-size:66.240000px;}
.fs1_c01214{font-size:72.000000px;}
.y0_c01214{bottom:0.000000px;}
.y24_c01214{bottom:4.155000px;}
.y23_c01214{bottom:21.615000px;}
.y21_c01214{bottom:25.365000px;}
.y1f_c01214{bottom:26.460000px;}
.y3_c01214{bottom:57.636000px;}
.y2_c01214{bottom:77.796000px;}
.y1d_c01214{bottom:130.896000px;}
.y1c_c01214{bottom:154.650000px;}
.y1b_c01214{bottom:178.410000px;}
.y1a_c01214{bottom:202.170000px;}
.y19_c01214{bottom:225.930000px;}
.y18_c01214{bottom:249.690000px;}
.y17_c01214{bottom:273.450000px;}
.y16_c01214{bottom:297.435000px;}
.y15_c01214{bottom:321.195000px;}
.y14_c01214{bottom:344.955000px;}
.y13_c01214{bottom:383.835000px;}
.y12_c01214{bottom:422.535000px;}
.y11_c01214{bottom:461.415000px;}
.y22_c01214{bottom:470.400000px;}
.y10_c01214{bottom:500.115000px;}
.yf_c01214{bottom:538.995000px;}
.ye_c01214{bottom:562.755000px;}
.yd_c01214{bottom:586.725000px;}
.yc_c01214{bottom:610.665000px;}
.yb_c01214{bottom:634.425000px;}
.ya_c01214{bottom:658.185000px;}
.y9_c01214{bottom:681.765000px;}
.y8_c01214{bottom:705.705000px;}
.y7_c01214{bottom:744.405000px;}
.y6_c01214{bottom:783.285000px;}
.y1e_c01214{bottom:813.885000px;}
.y20_c01214{bottom:814.620000px;}
.y5_c01214{bottom:821.985000px;}
.y4_c01214{bottom:856.950000px;}
.y1_c01214{bottom:1194.660000px;}
.ha_c01214{height:35.280000px;}
.h9_c01214{height:39.082500px;}
.h7_c01214{height:40.162500px;}
.h2_c01214{height:48.062812px;}
.h3_c01214{height:50.229844px;}
.h8_c01214{height:53.428008px;}
.h4_c01214{height:64.546875px;}
.h6_c01214{height:65.003906px;}
.h5_c01214{height:75.093750px;}
.h0_c01214{height:1262.880000px;}
.h1_c01214{height:1263.000000px;}
.w4_c01214{width:110.700000px;}
.w2_c01214{width:140.580000px;}
.w3_c01214{width:141.660000px;}
.w0_c01214{width:892.980000px;}
.w1_c01214{width:893.250000px;}
.x0_c01214{left:0.000000px;}
.x3_c01214{left:127.656000px;}
.x8_c01214{left:142.065000px;}
.x1_c01214{left:169.950000px;}
.x6_c01214{left:237.810000px;}
.x7_c01214{left:248.970000px;}
.x4_c01214{left:294.195000px;}
.x9_c01214{left:307.875000px;}
.x5_c01214{left:463.035000px;}
.x2_c01214{left:740.490000px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.ls4_c01214{letter-spacing:-0.512000pt;}
.ls2_c01214{letter-spacing:-0.384000pt;}
.ls3_c01214{letter-spacing:-0.192000pt;}
.ls0_c01214{letter-spacing:0.000000pt;}
.ls1_c01214{letter-spacing:0.128000pt;}
.ls5_c01214{letter-spacing:0.256000pt;}
.ws2_c01214{word-spacing:-18.048000pt;}
.ws0_c01214{word-spacing:-17.792000pt;}
.ws1_c01214{word-spacing:-17.600000pt;}
.ws3_c01214{word-spacing:0.000000pt;}
._8_c01214{margin-left:-3.394427pt;}
._6_c01214{margin-left:-2.147090pt;}
._0_c01214{margin-left:-1.236303pt;}
._2_c01214{width:1.024000pt;}
._3_c01214{width:2.752000pt;}
._7_c01214{width:4.096000pt;}
._c_c01214{width:7.088183pt;}
._b_c01214{width:8.089453pt;}
._5_c01214{width:9.011273pt;}
._4_c01214{width:10.048000pt;}
._d_c01214{width:11.220303pt;}
._a_c01214{width:12.288000pt;}
._9_c01214{width:13.376000pt;}
._e_c01214{width:14.698688pt;}
._1_c01214{width:1591.946667pt;}
.fs2_c01214{font-size:53.120000pt;}
.fs0_c01214{font-size:58.880000pt;}
.fs1_c01214{font-size:64.000000pt;}
.y0_c01214{bottom:0.000000pt;}
.y24_c01214{bottom:3.693333pt;}
.y23_c01214{bottom:19.213333pt;}
.y21_c01214{bottom:22.546667pt;}
.y1f_c01214{bottom:23.520000pt;}
.y3_c01214{bottom:51.232000pt;}
.y2_c01214{bottom:69.152000pt;}
.y1d_c01214{bottom:116.352000pt;}
.y1c_c01214{bottom:137.466667pt;}
.y1b_c01214{bottom:158.586667pt;}
.y1a_c01214{bottom:179.706667pt;}
.y19_c01214{bottom:200.826667pt;}
.y18_c01214{bottom:221.946667pt;}
.y17_c01214{bottom:243.066667pt;}
.y16_c01214{bottom:264.386667pt;}
.y15_c01214{bottom:285.506667pt;}
.y14_c01214{bottom:306.626667pt;}
.y13_c01214{bottom:341.186667pt;}
.y12_c01214{bottom:375.586667pt;}
.y11_c01214{bottom:410.146667pt;}
.y22_c01214{bottom:418.133333pt;}
.y10_c01214{bottom:444.546667pt;}
.yf_c01214{bottom:479.106667pt;}
.ye_c01214{bottom:500.226667pt;}
.yd_c01214{bottom:521.533333pt;}
.yc_c01214{bottom:542.813333pt;}
.yb_c01214{bottom:563.933333pt;}
.ya_c01214{bottom:585.053333pt;}
.y9_c01214{bottom:606.013333pt;}
.y8_c01214{bottom:627.293333pt;}
.y7_c01214{bottom:661.693333pt;}
.y6_c01214{bottom:696.253333pt;}
.y1e_c01214{bottom:723.453333pt;}
.y20_c01214{bottom:724.106667pt;}
.y5_c01214{bottom:730.653333pt;}
.y4_c01214{bottom:761.733333pt;}
.y1_c01214{bottom:1061.920000pt;}
.ha_c01214{height:31.360000pt;}
.h9_c01214{height:34.740000pt;}
.h7_c01214{height:35.700000pt;}
.h2_c01214{height:42.722500pt;}
.h3_c01214{height:44.648750pt;}
.h8_c01214{height:47.491563pt;}
.h4_c01214{height:57.375000pt;}
.h6_c01214{height:57.781250pt;}
.h5_c01214{height:66.750000pt;}
.h0_c01214{height:1122.560000pt;}
.h1_c01214{height:1122.666667pt;}
.w4_c01214{width:98.400000pt;}
.w2_c01214{width:124.960000pt;}
.w3_c01214{width:125.920000pt;}
.w0_c01214{width:793.760000pt;}
.w1_c01214{width:794.000000pt;}
.x0_c01214{left:0.000000pt;}
.x3_c01214{left:113.472000pt;}
.x8_c01214{left:126.280000pt;}
.x1_c01214{left:151.066667pt;}
.x6_c01214{left:211.386667pt;}
.x7_c01214{left:221.306667pt;}
.x4_c01214{left:261.506667pt;}
.x9_c01214{left:273.666667pt;}
.x5_c01214{left:411.586667pt;}
.x2_c01214{left:658.213333pt;}
}





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

.ir_c01215:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01215;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01215;src:url('chunks/assets/font_5e549d3f674a23837cb52f9d.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01215;src:url('chunks/assets/font_e9f6de5484da79367ef28c6c.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01215;src:url('chunks/assets/font_b2686b012e8dd83fd94b1265.woff2')format("woff");}.ff4_c01215{font-family:ff4_c01215;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01215{vertical-align:0.000000px;}
.ls7_c01215{letter-spacing:-1.440000px;}
.ls4_c01215{letter-spacing:-0.720000px;}
.ls5_c01215{letter-spacing:-0.576000px;}
.ls6_c01215{letter-spacing:-0.072000px;}
.ls3_c01215{letter-spacing:0.000000px;}
.ls1_c01215{letter-spacing:0.144000px;}
.ls2_c01215{letter-spacing:0.864000px;}
.ls0_c01215{letter-spacing:21.744000px;}
.sc__c01215{text-shadow:none;}
.sc0_c01215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01215{-webkit-text-stroke:0px transparent;}
.sc0_c01215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01215{word-spacing:-20.016000px;}
.ws1_c01215{word-spacing:-19.944000px;}
.ws2_c01215{word-spacing:0.000000px;}
._6_c01215{margin-left:-3.490891px;}
._5_c01215{margin-left:-2.341109px;}
._0_c01215{margin-left:-1.258891px;}
._2_c01215{width:1.270915px;}
._4_c01215{width:3.168000px;}
._9_c01215{width:4.454170px;}
._8_c01215{width:5.616000px;}
._c_c01215{width:6.728674px;}
._a_c01215{width:8.208000px;}
._1_c01215{width:10.656000px;}
._3_c01215{width:11.842891px;}
._7_c01215{width:21.816000px;}
._b_c01215{width:23.976000px;}
.fc0_c01215{color:rgb(0,0,0);}
.fs2_c01215{font-size:59.760000px;}
.fs0_c01215{font-size:66.240000px;}
.fs1_c01215{font-size:72.000000px;}
.y0_c01215{bottom:0.000000px;}
.y22_c01215{bottom:3.975000px;}
.y24_c01215{bottom:4.695000px;}
.y21_c01215{bottom:21.435000px;}
.y3_c01215{bottom:57.636000px;}
.y2_c01215{bottom:77.796000px;}
.y1f_c01215{bottom:118.116000px;}
.y1e_c01215{bottom:142.056000px;}
.y1d_c01215{bottom:165.630000px;}
.y1c_c01215{bottom:189.390000px;}
.y1b_c01215{bottom:213.150000px;}
.y1a_c01215{bottom:236.910000px;}
.y19_c01215{bottom:275.790000px;}
.y23_c01215{bottom:288.960000px;}
.y18_c01215{bottom:310.575000px;}
.y17_c01215{bottom:672.585000px;}
.y16_c01215{bottom:696.345000px;}
.y15_c01215{bottom:720.105000px;}
.y14_c01215{bottom:743.865000px;}
.y13_c01215{bottom:767.805000px;}
.y12_c01215{bottom:791.745000px;}
.y11_c01215{bottom:815.505000px;}
.y10_c01215{bottom:839.265000px;}
.yf_c01215{bottom:863.070000px;}
.ye_c01215{bottom:886.830000px;}
.y20_c01215{bottom:907.335000px;}
.yd_c01215{bottom:925.710000px;}
.yc_c01215{bottom:949.650000px;}
.yb_c01215{bottom:973.230000px;}
.ya_c01215{bottom:996.990000px;}
.y9_c01215{bottom:1020.930000px;}
.y8_c01215{bottom:1044.870000px;}
.y7_c01215{bottom:1068.630000px;}
.y6_c01215{bottom:1092.210000px;}
.y5_c01215{bottom:1115.970000px;}
.y4_c01215{bottom:1139.940000px;}
.y1_c01215{bottom:1194.660000px;}
.h7_c01215{height:18.540000px;}
.h5_c01215{height:35.100000px;}
.h2_c01215{height:48.062812px;}
.h3_c01215{height:50.229844px;}
.h6_c01215{height:53.428008px;}
.h4_c01215{height:64.546875px;}
.h0_c01215{height:1262.880000px;}
.h1_c01215{height:1263.000000px;}
.w2_c01215{width:186.495000px;}
.w3_c01215{width:479.235000px;}
.w0_c01215{width:892.980000px;}
.w1_c01215{width:893.250000px;}
.x0_c01215{left:0.000000px;}
.x1_c01215{left:127.656000px;}
.x4_c01215{left:190.305000px;}
.x3_c01215{left:571.080000px;}
.x2_c01215{left:700.890000px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls7_c01215{letter-spacing:-1.280000pt;}
.ls4_c01215{letter-spacing:-0.640000pt;}
.ls5_c01215{letter-spacing:-0.512000pt;}
.ls6_c01215{letter-spacing:-0.064000pt;}
.ls3_c01215{letter-spacing:0.000000pt;}
.ls1_c01215{letter-spacing:0.128000pt;}
.ls2_c01215{letter-spacing:0.768000pt;}
.ls0_c01215{letter-spacing:19.328000pt;}
.ws0_c01215{word-spacing:-17.792000pt;}
.ws1_c01215{word-spacing:-17.728000pt;}
.ws2_c01215{word-spacing:0.000000pt;}
._6_c01215{margin-left:-3.103014pt;}
._5_c01215{margin-left:-2.080986pt;}
._0_c01215{margin-left:-1.119014pt;}
._2_c01215{width:1.129702pt;}
._4_c01215{width:2.816000pt;}
._9_c01215{width:3.959262pt;}
._8_c01215{width:4.992000pt;}
._c_c01215{width:5.981043pt;}
._a_c01215{width:7.296000pt;}
._1_c01215{width:9.472000pt;}
._3_c01215{width:10.527014pt;}
._7_c01215{width:19.392000pt;}
._b_c01215{width:21.312000pt;}
.fs2_c01215{font-size:53.120000pt;}
.fs0_c01215{font-size:58.880000pt;}
.fs1_c01215{font-size:64.000000pt;}
.y0_c01215{bottom:0.000000pt;}
.y22_c01215{bottom:3.533333pt;}
.y24_c01215{bottom:4.173333pt;}
.y21_c01215{bottom:19.053333pt;}
.y3_c01215{bottom:51.232000pt;}
.y2_c01215{bottom:69.152000pt;}
.y1f_c01215{bottom:104.992000pt;}
.y1e_c01215{bottom:126.272000pt;}
.y1d_c01215{bottom:147.226667pt;}
.y1c_c01215{bottom:168.346667pt;}
.y1b_c01215{bottom:189.466667pt;}
.y1a_c01215{bottom:210.586667pt;}
.y19_c01215{bottom:245.146667pt;}
.y23_c01215{bottom:256.853333pt;}
.y18_c01215{bottom:276.066667pt;}
.y17_c01215{bottom:597.853333pt;}
.y16_c01215{bottom:618.973333pt;}
.y15_c01215{bottom:640.093333pt;}
.y14_c01215{bottom:661.213333pt;}
.y13_c01215{bottom:682.493333pt;}
.y12_c01215{bottom:703.773333pt;}
.y11_c01215{bottom:724.893333pt;}
.y10_c01215{bottom:746.013333pt;}
.yf_c01215{bottom:767.173333pt;}
.ye_c01215{bottom:788.293333pt;}
.y20_c01215{bottom:806.520000pt;}
.yd_c01215{bottom:822.853333pt;}
.yc_c01215{bottom:844.133333pt;}
.yb_c01215{bottom:865.093333pt;}
.ya_c01215{bottom:886.213333pt;}
.y9_c01215{bottom:907.493333pt;}
.y8_c01215{bottom:928.773333pt;}
.y7_c01215{bottom:949.893333pt;}
.y6_c01215{bottom:970.853333pt;}
.y5_c01215{bottom:991.973333pt;}
.y4_c01215{bottom:1013.280000pt;}
.y1_c01215{bottom:1061.920000pt;}
.h7_c01215{height:16.480000pt;}
.h5_c01215{height:31.200000pt;}
.h2_c01215{height:42.722500pt;}
.h3_c01215{height:44.648750pt;}
.h6_c01215{height:47.491563pt;}
.h4_c01215{height:57.375000pt;}
.h0_c01215{height:1122.560000pt;}
.h1_c01215{height:1122.666667pt;}
.w2_c01215{width:165.773333pt;}
.w3_c01215{width:425.986667pt;}
.w0_c01215{width:793.760000pt;}
.w1_c01215{width:794.000000pt;}
.x0_c01215{left:0.000000pt;}
.x1_c01215{left:113.472000pt;}
.x4_c01215{left:169.160000pt;}
.x3_c01215{left:507.626667pt;}
.x2_c01215{left:623.013333pt;}
}





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

.ir_c01216:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01216;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01216;src:url('chunks/assets/font_0da50dbbea0f0dc34c8218e1.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01216;src:url('chunks/assets/font_92bfa055778d9ec55c019a0c.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01216;src:url('chunks/assets/font_f9768bc0c855e9b914e8e00f.woff2')format("woff");}.ff4_c01216{font-family:ff4_c01216;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.ls3_c01216{letter-spacing:-1.440000px;}
.ls2_c01216{letter-spacing:-0.720000px;}
.ls4_c01216{letter-spacing:-0.576000px;}
.ls1_c01216{letter-spacing:0.000000px;}
.ls5_c01216{letter-spacing:0.144000px;}
.ls0_c01216{letter-spacing:13.824000px;}
.sc__c01216{text-shadow:none;}
.sc0_c01216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01216{-webkit-text-stroke:0px transparent;}
.sc0_c01216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01216{word-spacing:-20.016000px;}
.ws1_c01216{word-spacing:0.000000px;}
._0_c01216{margin-left:-1.390841px;}
._4_c01216{width:1.057159px;}
._3_c01216{width:2.890817px;}
._7_c01216{width:4.092000px;}
._6_c01216{width:5.232000px;}
._a_c01216{width:7.056000px;}
._9_c01216{width:8.184000px;}
._8_c01216{width:9.792000px;}
._2_c01216{width:12.622841px;}
._1_c01216{width:13.968000px;}
._5_c01216{width:14.989183px;}
._c_c01216{width:18.648000px;}
._b_c01216{width:21.312000px;}
._d_c01216{width:678.360000px;}
.fc0_c01216{color:rgb(0,0,0);}
.fs2_c01216{font-size:59.760000px;}
.fs0_c01216{font-size:66.240000px;}
.fs1_c01216{font-size:72.000000px;}
.y0_c01216{bottom:0.000000px;}
.y22_c01216{bottom:0.555000px;}
.y26_c01216{bottom:6.855000px;}
.y21_c01216{bottom:18.015000px;}
.y25_c01216{bottom:24.135000px;}
.y20_c01216{bottom:35.295000px;}
.y24_c01216{bottom:41.415000px;}
.y3_c01216{bottom:57.636000px;}
.y2_c01216{bottom:77.796000px;}
.y1e_c01216{bottom:148.716000px;}
.y1d_c01216{bottom:187.590000px;}
.y1c_c01216{bottom:226.470000px;}
.y1b_c01216{bottom:265.170000px;}
.y1a_c01216{bottom:288.975000px;}
.y19_c01216{bottom:312.915000px;}
.y18_c01216{bottom:336.675000px;}
.y17_c01216{bottom:360.615000px;}
.y16_c01216{bottom:384.195000px;}
.y15_c01216{bottom:423.075000px;}
.y23_c01216{bottom:439.260000px;}
.y1f_c01216{bottom:444.300000px;}
.y14_c01216{bottom:461.955000px;}
.y13_c01216{bottom:496.695000px;}
.y12_c01216{bottom:791.745000px;}
.y11_c01216{bottom:815.325000px;}
.y10_c01216{bottom:839.085000px;}
.yf_c01216{bottom:863.070000px;}
.ye_c01216{bottom:887.010000px;}
.yd_c01216{bottom:910.590000px;}
.yc_c01216{bottom:934.350000px;}
.yb_c01216{bottom:958.470000px;}
.ya_c01216{bottom:982.050000px;}
.y9_c01216{bottom:1020.930000px;}
.y8_c01216{bottom:1044.690000px;}
.y7_c01216{bottom:1068.630000px;}
.y6_c01216{bottom:1092.210000px;}
.y5_c01216{bottom:1116.150000px;}
.y4_c01216{bottom:1140.120000px;}
.y1_c01216{bottom:1194.660000px;}
.h2_c01216{height:48.062812px;}
.h5_c01216{height:48.960000px;}
.h3_c01216{height:50.229844px;}
.h6_c01216{height:53.428008px;}
.h7_c01216{height:55.080000px;}
.h4_c01216{height:64.546875px;}
.h0_c01216{height:1262.880000px;}
.h1_c01216{height:1263.000000px;}
.w2_c01216{width:166.005000px;}
.w3_c01216{width:176.250000px;}
.w0_c01216{width:892.980000px;}
.w1_c01216{width:893.250000px;}
.x0_c01216{left:0.000000px;}
.x3_c01216{left:127.656000px;}
.x1_c01216{left:169.950000px;}
.x5_c01216{left:190.470000px;}
.x7_c01216{left:266.805000px;}
.x4_c01216{left:445.755000px;}
.x6_c01216{left:458.355000px;}
.x2_c01216{left:740.490000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls3_c01216{letter-spacing:-1.280000pt;}
.ls2_c01216{letter-spacing:-0.640000pt;}
.ls4_c01216{letter-spacing:-0.512000pt;}
.ls1_c01216{letter-spacing:0.000000pt;}
.ls5_c01216{letter-spacing:0.128000pt;}
.ls0_c01216{letter-spacing:12.288000pt;}
.ws0_c01216{word-spacing:-17.792000pt;}
.ws1_c01216{word-spacing:0.000000pt;}
._0_c01216{margin-left:-1.236303pt;}
._4_c01216{width:0.939697pt;}
._3_c01216{width:2.569615pt;}
._7_c01216{width:3.637333pt;}
._6_c01216{width:4.650667pt;}
._a_c01216{width:6.272000pt;}
._9_c01216{width:7.274667pt;}
._8_c01216{width:8.704000pt;}
._2_c01216{width:11.220303pt;}
._1_c01216{width:12.416000pt;}
._5_c01216{width:13.323718pt;}
._c_c01216{width:16.576000pt;}
._b_c01216{width:18.944000pt;}
._d_c01216{width:602.986667pt;}
.fs2_c01216{font-size:53.120000pt;}
.fs0_c01216{font-size:58.880000pt;}
.fs1_c01216{font-size:64.000000pt;}
.y0_c01216{bottom:0.000000pt;}
.y22_c01216{bottom:0.493333pt;}
.y26_c01216{bottom:6.093333pt;}
.y21_c01216{bottom:16.013333pt;}
.y25_c01216{bottom:21.453333pt;}
.y20_c01216{bottom:31.373333pt;}
.y24_c01216{bottom:36.813333pt;}
.y3_c01216{bottom:51.232000pt;}
.y2_c01216{bottom:69.152000pt;}
.y1e_c01216{bottom:132.192000pt;}
.y1d_c01216{bottom:166.746667pt;}
.y1c_c01216{bottom:201.306667pt;}
.y1b_c01216{bottom:235.706667pt;}
.y1a_c01216{bottom:256.866667pt;}
.y19_c01216{bottom:278.146667pt;}
.y18_c01216{bottom:299.266667pt;}
.y17_c01216{bottom:320.546667pt;}
.y16_c01216{bottom:341.506667pt;}
.y15_c01216{bottom:376.066667pt;}
.y23_c01216{bottom:390.453333pt;}
.y1f_c01216{bottom:394.933333pt;}
.y14_c01216{bottom:410.626667pt;}
.y13_c01216{bottom:441.506667pt;}
.y12_c01216{bottom:703.773333pt;}
.y11_c01216{bottom:724.733333pt;}
.y10_c01216{bottom:745.853333pt;}
.yf_c01216{bottom:767.173333pt;}
.ye_c01216{bottom:788.453333pt;}
.yd_c01216{bottom:809.413333pt;}
.yc_c01216{bottom:830.533333pt;}
.yb_c01216{bottom:851.973333pt;}
.ya_c01216{bottom:872.933333pt;}
.y9_c01216{bottom:907.493333pt;}
.y8_c01216{bottom:928.613333pt;}
.y7_c01216{bottom:949.893333pt;}
.y6_c01216{bottom:970.853333pt;}
.y5_c01216{bottom:992.133333pt;}
.y4_c01216{bottom:1013.440000pt;}
.y1_c01216{bottom:1061.920000pt;}
.h2_c01216{height:42.722500pt;}
.h5_c01216{height:43.520000pt;}
.h3_c01216{height:44.648750pt;}
.h6_c01216{height:47.491563pt;}
.h7_c01216{height:48.960000pt;}
.h4_c01216{height:57.375000pt;}
.h0_c01216{height:1122.560000pt;}
.h1_c01216{height:1122.666667pt;}
.w2_c01216{width:147.560000pt;}
.w3_c01216{width:156.666667pt;}
.w0_c01216{width:793.760000pt;}
.w1_c01216{width:794.000000pt;}
.x0_c01216{left:0.000000pt;}
.x3_c01216{left:113.472000pt;}
.x1_c01216{left:151.066667pt;}
.x5_c01216{left:169.306667pt;}
.x7_c01216{left:237.160000pt;}
.x4_c01216{left:396.226667pt;}
.x6_c01216{left:407.426667pt;}
.x2_c01216{left:658.213333pt;}
}





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

.ir_c01217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01217;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01217;src:url('chunks/assets/font_4b5d4a5f0d4b32908e66604a.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01217;src:url('chunks/assets/font_3fb961c3541c861342f1bf3c.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01217;src:url('chunks/assets/font_4e1a26152cbeb4597201d854.woff2')format("woff");}.ff4_c01217{font-family:ff4_c01217;line-height:1.106934;font-style:normal;font-weight: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_c01217;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01217{font-family:ff5_c01217;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:ff6_c01217;src:url('chunks/assets/font_667bb7e0301fa28bf6a2c755.woff2')format("woff");}.ff6_c01217{font-family:ff6_c01217;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01217{vertical-align:0.000000px;}
.ls3_c01217{letter-spacing:-0.720000px;}
.ls1_c01217{letter-spacing:-0.576000px;}
.ls0_c01217{letter-spacing:0.000000px;}
.ls2_c01217{letter-spacing:0.288000px;}
.sc__c01217{text-shadow:none;}
.sc0_c01217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01217{-webkit-text-stroke:0px transparent;}
.sc0_c01217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01217{word-spacing:-20.016000px;}
.ws1_c01217{word-spacing:0.000000px;}
._c_c01217{margin-left:-5.171933px;}
._9_c01217{margin-left:-3.457152px;}
._6_c01217{margin-left:-2.365085px;}
._0_c01217{margin-left:-1.258891px;}
._1_c01217{width:1.186891px;}
._a_c01217{width:2.304000px;}
._8_c01217{width:4.210891px;}
._7_c01217{width:5.544000px;}
._3_c01217{width:6.549782px;}
._2_c01217{width:7.848000px;}
._b_c01217{width:9.552000px;}
._e_c01217{width:11.784000px;}
._d_c01217{width:13.104000px;}
._4_c01217{width:14.112000px;}
._5_c01217{width:15.348024px;}
.fc0_c01217{color:rgb(0,0,0);}
.fs3_c01217{font-size:59.760000px;}
.fs0_c01217{font-size:66.240000px;}
.fs1_c01217{font-size:72.000000px;}
.fs2_c01217{font-size:84.240000px;}
.y0_c01217{bottom:0.000000px;}
.y1d_c01217{bottom:18.375000px;}
.y3_c01217{bottom:57.636000px;}
.y2_c01217{bottom:77.796000px;}
.y1b_c01217{bottom:116.316000px;}
.y1a_c01217{bottom:155.190000px;}
.y19_c01217{bottom:179.130000px;}
.y18_c01217{bottom:202.890000px;}
.y17_c01217{bottom:226.830000px;}
.y16_c01217{bottom:250.590000px;}
.y15_c01217{bottom:274.170000px;}
.y14_c01217{bottom:298.155000px;}
.y13_c01217{bottom:322.095000px;}
.y12_c01217{bottom:345.675000px;}
.y11_c01217{bottom:369.435000px;}
.y10_c01217{bottom:393.195000px;}
.yf_c01217{bottom:417.135000px;}
.ye_c01217{bottom:455.835000px;}
.yd_c01217{bottom:494.715000px;}
.yc_c01217{bottom:534.675000px;}
.y1c_c01217{bottom:536.100000px;}
.yb_c01217{bottom:572.325000px;}
.ya_c01217{bottom:982.050000px;}
.y9_c01217{bottom:1005.810000px;}
.y8_c01217{bottom:1029.570000px;}
.y7_c01217{bottom:1053.510000px;}
.y6_c01217{bottom:1077.270000px;}
.y5_c01217{bottom:1101.030000px;}
.y4_c01217{bottom:1139.940000px;}
.y1_c01217{bottom:1194.660000px;}
.h8_c01217{height:32.265000px;}
.h2_c01217{height:48.062812px;}
.h3_c01217{height:50.229844px;}
.h9_c01217{height:53.428008px;}
.h5_c01217{height:64.546875px;}
.h4_c01217{height:65.003906px;}
.h7_c01217{height:75.093750px;}
.h6_c01217{height:76.054570px;}
.h0_c01217{height:1262.880000px;}
.h1_c01217{height:1263.000000px;}
.w2_c01217{width:338.655000px;}
.w0_c01217{width:892.980000px;}
.w1_c01217{width:893.250000px;}
.x0_c01217{left:0.000000px;}
.x1_c01217{left:127.656000px;}
.x3_c01217{left:151.050000px;}
.x4_c01217{left:187.965000px;}
.x2_c01217{left:705.390000px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls3_c01217{letter-spacing:-0.640000pt;}
.ls1_c01217{letter-spacing:-0.512000pt;}
.ls0_c01217{letter-spacing:0.000000pt;}
.ls2_c01217{letter-spacing:0.256000pt;}
.ws0_c01217{word-spacing:-17.792000pt;}
.ws1_c01217{word-spacing:0.000000pt;}
._c_c01217{margin-left:-4.597274pt;}
._9_c01217{margin-left:-3.073024pt;}
._6_c01217{margin-left:-2.102298pt;}
._0_c01217{margin-left:-1.119014pt;}
._1_c01217{width:1.055014pt;}
._a_c01217{width:2.048000pt;}
._8_c01217{width:3.743014pt;}
._7_c01217{width:4.928000pt;}
._3_c01217{width:5.822029pt;}
._2_c01217{width:6.976000pt;}
._b_c01217{width:8.490667pt;}
._e_c01217{width:10.474667pt;}
._d_c01217{width:11.648000pt;}
._4_c01217{width:12.544000pt;}
._5_c01217{width:13.642688pt;}
.fs3_c01217{font-size:53.120000pt;}
.fs0_c01217{font-size:58.880000pt;}
.fs1_c01217{font-size:64.000000pt;}
.fs2_c01217{font-size:74.880000pt;}
.y0_c01217{bottom:0.000000pt;}
.y1d_c01217{bottom:16.333333pt;}
.y3_c01217{bottom:51.232000pt;}
.y2_c01217{bottom:69.152000pt;}
.y1b_c01217{bottom:103.392000pt;}
.y1a_c01217{bottom:137.946667pt;}
.y19_c01217{bottom:159.226667pt;}
.y18_c01217{bottom:180.346667pt;}
.y17_c01217{bottom:201.626667pt;}
.y16_c01217{bottom:222.746667pt;}
.y15_c01217{bottom:243.706667pt;}
.y14_c01217{bottom:265.026667pt;}
.y13_c01217{bottom:286.306667pt;}
.y12_c01217{bottom:307.266667pt;}
.y11_c01217{bottom:328.386667pt;}
.y10_c01217{bottom:349.506667pt;}
.yf_c01217{bottom:370.786667pt;}
.ye_c01217{bottom:405.186667pt;}
.yd_c01217{bottom:439.746667pt;}
.yc_c01217{bottom:475.266667pt;}
.y1c_c01217{bottom:476.533333pt;}
.yb_c01217{bottom:508.733333pt;}
.ya_c01217{bottom:872.933333pt;}
.y9_c01217{bottom:894.053333pt;}
.y8_c01217{bottom:915.173333pt;}
.y7_c01217{bottom:936.453333pt;}
.y6_c01217{bottom:957.573333pt;}
.y5_c01217{bottom:978.693333pt;}
.y4_c01217{bottom:1013.280000pt;}
.y1_c01217{bottom:1061.920000pt;}
.h8_c01217{height:28.680000pt;}
.h2_c01217{height:42.722500pt;}
.h3_c01217{height:44.648750pt;}
.h9_c01217{height:47.491563pt;}
.h5_c01217{height:57.375000pt;}
.h4_c01217{height:57.781250pt;}
.h7_c01217{height:66.750000pt;}
.h6_c01217{height:67.604062pt;}
.h0_c01217{height:1122.560000pt;}
.h1_c01217{height:1122.666667pt;}
.w2_c01217{width:301.026667pt;}
.w0_c01217{width:793.760000pt;}
.w1_c01217{width:794.000000pt;}
.x0_c01217{left:0.000000pt;}
.x1_c01217{left:113.472000pt;}
.x3_c01217{left:134.266667pt;}
.x4_c01217{left:167.080000pt;}
.x2_c01217{left:627.013333pt;}
}





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

.ir_c01218:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01218;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01218;src:url('chunks/assets/font_4510f3298f1c2c0ca23b5713.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01218;src:url('chunks/assets/font_d8ba1697b89b10009825dcc1.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01218;src:url('chunks/assets/font_5acd3b4fd2ad68f466c293dd.woff2')format("woff");}.ff4_c01218{font-family:ff4_c01218;line-height:1.104492;font-style:normal;font-weight: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_c01218;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff5_c01218{font-family:ff5_c01218;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:ff6_c01218;src:url('chunks/assets/font_9412f5b59232587b6a115abc.woff2')format("woff");}.ff6_c01218{font-family:ff6_c01218;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.ls0_c01218{letter-spacing:0.000000px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01218{word-spacing:0.000000px;}
._0_c01218{margin-left:-1.390841px;}
._4_c01218{width:1.368000px;}
._a_c01218{width:2.470841px;}
._3_c01218{width:4.104000px;}
._2_c01218{width:5.112000px;}
._9_c01218{width:13.968000px;}
._8_c01218{width:15.192000px;}
._6_c01218{width:21.168000px;}
._5_c01218{width:22.608000px;}
._7_c01218{width:32.976000px;}
._1_c01218{width:944.964000px;}
.fc0_c01218{color:rgb(0,0,0);}
.fs2_c01218{font-size:59.760000px;}
.fs0_c01218{font-size:66.240000px;}
.fs1_c01218{font-size:72.000000px;}
.y0_c01218{bottom:0.000000px;}
.y1e_c01218{bottom:18.360000px;}
.y20_c01218{bottom:18.735000px;}
.y1a_c01218{bottom:21.945000px;}
.y1d_c01218{bottom:35.820000px;}
.y1c_c01218{bottom:52.920000px;}
.y3_c01218{bottom:57.636000px;}
.y2_c01218{bottom:77.796000px;}
.y18_c01218{bottom:205.770000px;}
.y17_c01218{bottom:229.530000px;}
.y16_c01218{bottom:253.290000px;}
.y15_c01218{bottom:277.050000px;}
.y14_c01218{bottom:301.035000px;}
.y13_c01218{bottom:339.735000px;}
.y12_c01218{bottom:378.615000px;}
.y1f_c01218{bottom:395.520000px;}
.y11_c01218{bottom:417.315000px;}
.y10_c01218{bottom:456.195000px;}
.yf_c01218{bottom:494.895000px;}
.ye_c01218{bottom:533.775000px;}
.yd_c01218{bottom:572.685000px;}
.yc_c01218{bottom:596.445000px;}
.yb_c01218{bottom:620.205000px;}
.ya_c01218{bottom:643.965000px;}
.y9_c01218{bottom:667.905000px;}
.y8_c01218{bottom:691.665000px;}
.y7_c01218{bottom:730.365000px;}
.y6_c01218{bottom:769.245000px;}
.y1b_c01218{bottom:772.665000px;}
.y19_c01218{bottom:803.640000px;}
.y5_c01218{bottom:808.125000px;}
.y4_c01218{bottom:842.865000px;}
.y1_c01218{bottom:1194.660000px;}
.hb_c01218{height:32.400000px;}
.h8_c01218{height:35.640000px;}
.h2_c01218{height:48.062812px;}
.h3_c01218{height:50.229844px;}
.h9_c01218{height:53.428008px;}
.h5_c01218{height:64.371094px;}
.h4_c01218{height:64.546875px;}
.h7_c01218{height:65.003906px;}
.ha_c01218{height:66.600000px;}
.h6_c01218{height:75.093750px;}
.h0_c01218{height:1262.880000px;}
.h1_c01218{height:1263.000000px;}
.w4_c01218{width:181.290000px;}
.w3_c01218{width:236.910000px;}
.w2_c01218{width:294.690000px;}
.w0_c01218{width:892.980000px;}
.w1_c01218{width:893.250000px;}
.x0_c01218{left:0.000000px;}
.x3_c01218{left:127.656000px;}
.x1_c01218{left:169.950000px;}
.x7_c01218{left:321.915000px;}
.x6_c01218{left:339.195000px;}
.x5_c01218{left:435.855000px;}
.x4_c01218{left:515.085000px;}
.x8_c01218{left:521.940000px;}
.x2_c01218{left:740.490000px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls0_c01218{letter-spacing:0.000000pt;}
.ws0_c01218{word-spacing:0.000000pt;}
._0_c01218{margin-left:-1.236303pt;}
._4_c01218{width:1.216000pt;}
._a_c01218{width:2.196303pt;}
._3_c01218{width:3.648000pt;}
._2_c01218{width:4.544000pt;}
._9_c01218{width:12.416000pt;}
._8_c01218{width:13.504000pt;}
._6_c01218{width:18.816000pt;}
._5_c01218{width:20.096000pt;}
._7_c01218{width:29.312000pt;}
._1_c01218{width:839.968000pt;}
.fs2_c01218{font-size:53.120000pt;}
.fs0_c01218{font-size:58.880000pt;}
.fs1_c01218{font-size:64.000000pt;}
.y0_c01218{bottom:0.000000pt;}
.y1e_c01218{bottom:16.320000pt;}
.y20_c01218{bottom:16.653333pt;}
.y1a_c01218{bottom:19.506667pt;}
.y1d_c01218{bottom:31.840000pt;}
.y1c_c01218{bottom:47.040000pt;}
.y3_c01218{bottom:51.232000pt;}
.y2_c01218{bottom:69.152000pt;}
.y18_c01218{bottom:182.906667pt;}
.y17_c01218{bottom:204.026667pt;}
.y16_c01218{bottom:225.146667pt;}
.y15_c01218{bottom:246.266667pt;}
.y14_c01218{bottom:267.586667pt;}
.y13_c01218{bottom:301.986667pt;}
.y12_c01218{bottom:336.546667pt;}
.y1f_c01218{bottom:351.573333pt;}
.y11_c01218{bottom:370.946667pt;}
.y10_c01218{bottom:405.506667pt;}
.yf_c01218{bottom:439.906667pt;}
.ye_c01218{bottom:474.466667pt;}
.yd_c01218{bottom:509.053333pt;}
.yc_c01218{bottom:530.173333pt;}
.yb_c01218{bottom:551.293333pt;}
.ya_c01218{bottom:572.413333pt;}
.y9_c01218{bottom:593.693333pt;}
.y8_c01218{bottom:614.813333pt;}
.y7_c01218{bottom:649.213333pt;}
.y6_c01218{bottom:683.773333pt;}
.y1b_c01218{bottom:686.813333pt;}
.y19_c01218{bottom:714.346667pt;}
.y5_c01218{bottom:718.333333pt;}
.y4_c01218{bottom:749.213333pt;}
.y1_c01218{bottom:1061.920000pt;}
.hb_c01218{height:28.800000pt;}
.h8_c01218{height:31.680000pt;}
.h2_c01218{height:42.722500pt;}
.h3_c01218{height:44.648750pt;}
.h9_c01218{height:47.491563pt;}
.h5_c01218{height:57.218750pt;}
.h4_c01218{height:57.375000pt;}
.h7_c01218{height:57.781250pt;}
.ha_c01218{height:59.200000pt;}
.h6_c01218{height:66.750000pt;}
.h0_c01218{height:1122.560000pt;}
.h1_c01218{height:1122.666667pt;}
.w4_c01218{width:161.146667pt;}
.w3_c01218{width:210.586667pt;}
.w2_c01218{width:261.946667pt;}
.w0_c01218{width:793.760000pt;}
.w1_c01218{width:794.000000pt;}
.x0_c01218{left:0.000000pt;}
.x3_c01218{left:113.472000pt;}
.x1_c01218{left:151.066667pt;}
.x7_c01218{left:286.146667pt;}
.x6_c01218{left:301.506667pt;}
.x5_c01218{left:387.426667pt;}
.x4_c01218{left:457.853333pt;}
.x8_c01218{left:463.946667pt;}
.x2_c01218{left:658.213333pt;}
}





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

.ir_c01219:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01219;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01219;src:url('chunks/assets/font_83615653fc4eac5ae86208f4.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01219;src:url('chunks/assets/font_3eb371d127a4a2c3d43d2cc8.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01219;src:url('chunks/assets/font_671b398838e01964e8e94549.woff2')format("woff");}.ff4_c01219{font-family:ff4_c01219;line-height:1.113281;font-style:normal;font-weight: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_c01219;src:url('chunks/assets/font_60410835c071ad5e55163b24.woff2')format("woff");}.ff5_c01219{font-family:ff5_c01219;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01219{vertical-align:0.000000px;}
.ls0_c01219{letter-spacing:0.000000px;}
.ls1_c01219{letter-spacing:0.144000px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01219{word-spacing:-20.016000px;}
.ws1_c01219{word-spacing:0.000000px;}
._0_c01219{margin-left:-1.258891px;}
._3_c01219{width:1.008000px;}
._8_c01219{width:2.280024px;}
._7_c01219{width:8.064000px;}
._2_c01219{width:9.144000px;}
._1_c01219{width:10.656000px;}
._4_c01219{width:11.758867px;}
._6_c01219{width:17.863589px;}
._5_c01219{width:19.008000px;}
._9_c01219{width:1521.084000px;}
.fc1_c01219{color:transparent;}
.fc0_c01219{color:rgb(0,0,0);}
.fs2_c01219{font-size:59.760000px;}
.fs0_c01219{font-size:66.240000px;}
.fs1_c01219{font-size:72.000000px;}
.y0_c01219{bottom:0.000000px;}
.y11_c01219{bottom:18.345000px;}
.y13_c01219{bottom:18.351000px;}
.y3_c01219{bottom:57.636000px;}
.y2_c01219{bottom:77.796000px;}
.y12_c01219{bottom:113.625000px;}
.yf_c01219{bottom:119.736000px;}
.ye_c01219{bottom:154.650000px;}
.yd_c01219{bottom:508.395000px;}
.yc_c01219{bottom:531.975000px;}
.yb_c01219{bottom:555.915000px;}
.ya_c01219{bottom:579.705000px;}
.y9_c01219{bottom:603.465000px;}
.y8_c01219{bottom:627.225000px;}
.y7_c01219{bottom:666.105000px;}
.y6_c01219{bottom:704.805000px;}
.y5_c01219{bottom:743.685000px;}
.y10_c01219{bottom:744.240000px;}
.y4_c01219{bottom:778.605000px;}
.y1_c01219{bottom:1194.660000px;}
.h6_c01219{height:32.220000px;}
.h2_c01219{height:48.062812px;}
.h3_c01219{height:50.229844px;}
.h7_c01219{height:53.428008px;}
.h4_c01219{height:64.546875px;}
.h5_c01219{height:65.003906px;}
.h0_c01219{height:1262.880000px;}
.h1_c01219{height:1263.000000px;}
.w2_c01219{width:181.290000px;}
.w3_c01219{width:513.075000px;}
.w0_c01219{width:892.980000px;}
.w1_c01219{width:893.250000px;}
.x0_c01219{left:0.000000px;}
.x1_c01219{left:127.656000px;}
.x6_c01219{left:190.125000px;}
.x4_c01219{left:378.795000px;}
.x3_c01219{left:446.475000px;}
.x2_c01219{left:701.970000px;}
.x5_c01219{left:708.630000px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls0_c01219{letter-spacing:0.000000pt;}
.ls1_c01219{letter-spacing:0.128000pt;}
.ws0_c01219{word-spacing:-17.792000pt;}
.ws1_c01219{word-spacing:0.000000pt;}
._0_c01219{margin-left:-1.119014pt;}
._3_c01219{width:0.896000pt;}
._8_c01219{width:2.026688pt;}
._7_c01219{width:7.168000pt;}
._2_c01219{width:8.128000pt;}
._1_c01219{width:9.472000pt;}
._4_c01219{width:10.452326pt;}
._6_c01219{width:15.878746pt;}
._5_c01219{width:16.896000pt;}
._9_c01219{width:1352.074667pt;}
.fs2_c01219{font-size:53.120000pt;}
.fs0_c01219{font-size:58.880000pt;}
.fs1_c01219{font-size:64.000000pt;}
.y0_c01219{bottom:0.000000pt;}
.y11_c01219{bottom:16.306667pt;}
.y13_c01219{bottom:16.312000pt;}
.y3_c01219{bottom:51.232000pt;}
.y2_c01219{bottom:69.152000pt;}
.y12_c01219{bottom:101.000000pt;}
.yf_c01219{bottom:106.432000pt;}
.ye_c01219{bottom:137.466667pt;}
.yd_c01219{bottom:451.906667pt;}
.yc_c01219{bottom:472.866667pt;}
.yb_c01219{bottom:494.146667pt;}
.ya_c01219{bottom:515.293333pt;}
.y9_c01219{bottom:536.413333pt;}
.y8_c01219{bottom:557.533333pt;}
.y7_c01219{bottom:592.093333pt;}
.y6_c01219{bottom:626.493333pt;}
.y5_c01219{bottom:661.053333pt;}
.y10_c01219{bottom:661.546667pt;}
.y4_c01219{bottom:692.093333pt;}
.y1_c01219{bottom:1061.920000pt;}
.h6_c01219{height:28.640000pt;}
.h2_c01219{height:42.722500pt;}
.h3_c01219{height:44.648750pt;}
.h7_c01219{height:47.491563pt;}
.h4_c01219{height:57.375000pt;}
.h5_c01219{height:57.781250pt;}
.h0_c01219{height:1122.560000pt;}
.h1_c01219{height:1122.666667pt;}
.w2_c01219{width:161.146667pt;}
.w3_c01219{width:456.066667pt;}
.w0_c01219{width:793.760000pt;}
.w1_c01219{width:794.000000pt;}
.x0_c01219{left:0.000000pt;}
.x1_c01219{left:113.472000pt;}
.x6_c01219{left:169.000000pt;}
.x4_c01219{left:336.706667pt;}
.x3_c01219{left:396.866667pt;}
.x2_c01219{left:623.973333pt;}
.x5_c01219{left:629.893333pt;}
}





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

.ir_c01220:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01220;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01220;src:url('chunks/assets/font_960b1188675f798cc3174999.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01220;src:url('chunks/assets/font_cbdfc5cdbf6373fde7965ac1.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01220;src:url('chunks/assets/font_94ad5d821fa74721ab93c87d.woff2')format("woff");}.ff4_c01220{font-family:ff4_c01220;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01220;src:url('chunks/assets/font_cf74ba5efed7b5912bd23754.woff2')format("woff");}.ff5_c01220{font-family:ff5_c01220;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01220{vertical-align:0.000000px;}
.ls1_c01220{letter-spacing:-0.720000px;}
.ls3_c01220{letter-spacing:-0.432000px;}
.ls0_c01220{letter-spacing:0.000000px;}
.ls2_c01220{letter-spacing:0.288000px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01220{word-spacing:-20.304000px;}
.ws2_c01220{word-spacing:-19.584000px;}
.ws0_c01220{word-spacing:-19.296000px;}
.ws3_c01220{word-spacing:0.000000px;}
._7_c01220{margin-left:-3.946095px;}
._5_c01220{margin-left:-2.595476px;}
._0_c01220{margin-left:-1.390841px;}
._3_c01220{width:1.080000px;}
._4_c01220{width:2.304000px;}
._10_c01220{width:4.079417px;}
._6_c01220{width:6.552000px;}
._2_c01220{width:7.632000px;}
._1_c01220{width:8.688024px;}
._8_c01220{width:9.959904px;}
._f_c01220{width:11.712096px;}
._11_c01220{width:13.008024px;}
._e_c01220{width:18.576000px;}
._d_c01220{width:21.886793px;}
._c_c01220{width:23.376024px;}
._a_c01220{width:27.216000px;}
._9_c01220{width:28.872000px;}
._b_c01220{width:30.466817px;}
.fc0_c01220{color:rgb(0,0,0);}
.fs2_c01220{font-size:59.760000px;}
.fs0_c01220{font-size:66.240000px;}
.fs1_c01220{font-size:72.000000px;}
.y0_c01220{bottom:0.000000px;}
.y1d_c01220{bottom:18.345000px;}
.y3_c01220{bottom:57.636000px;}
.y2_c01220{bottom:77.796000px;}
.y1b_c01220{bottom:155.010000px;}
.y1a_c01220{bottom:193.710000px;}
.y1c_c01220{bottom:194.985000px;}
.y19_c01220{bottom:228.630000px;}
.y18_c01220{bottom:633.705000px;}
.y17_c01220{bottom:657.465000px;}
.y16_c01220{bottom:681.405000px;}
.y15_c01220{bottom:705.165000px;}
.y14_c01220{bottom:728.925000px;}
.y13_c01220{bottom:752.685000px;}
.y12_c01220{bottom:776.625000px;}
.y11_c01220{bottom:800.385000px;}
.y10_c01220{bottom:824.145000px;}
.yf_c01220{bottom:847.950000px;}
.ye_c01220{bottom:871.890000px;}
.yd_c01220{bottom:895.650000px;}
.yc_c01220{bottom:919.410000px;}
.yb_c01220{bottom:943.170000px;}
.ya_c01220{bottom:982.050000px;}
.y9_c01220{bottom:1005.810000px;}
.y8_c01220{bottom:1029.570000px;}
.y7_c01220{bottom:1053.510000px;}
.y6_c01220{bottom:1077.270000px;}
.y5_c01220{bottom:1101.030000px;}
.y4_c01220{bottom:1139.940000px;}
.y1_c01220{bottom:1194.660000px;}
.h6_c01220{height:32.220000px;}
.h2_c01220{height:48.062812px;}
.h3_c01220{height:50.229844px;}
.h7_c01220{height:53.428008px;}
.h5_c01220{height:64.546875px;}
.h4_c01220{height:65.003906px;}
.h0_c01220{height:1262.880000px;}
.h1_c01220{height:1263.000000px;}
.w2_c01220{width:446.835000px;}
.w0_c01220{width:892.980000px;}
.w1_c01220{width:893.250000px;}
.x0_c01220{left:0.000000px;}
.x3_c01220{left:127.656000px;}
.x5_c01220{left:153.030000px;}
.x1_c01220{left:169.950000px;}
.x6_c01220{left:191.745000px;}
.x4_c01220{left:701.970000px;}
.x2_c01220{left:740.490000px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls1_c01220{letter-spacing:-0.640000pt;}
.ls3_c01220{letter-spacing:-0.384000pt;}
.ls0_c01220{letter-spacing:0.000000pt;}
.ls2_c01220{letter-spacing:0.256000pt;}
.ws1_c01220{word-spacing:-18.048000pt;}
.ws2_c01220{word-spacing:-17.408000pt;}
.ws0_c01220{word-spacing:-17.152000pt;}
.ws3_c01220{word-spacing:0.000000pt;}
._7_c01220{margin-left:-3.507640pt;}
._5_c01220{margin-left:-2.307090pt;}
._0_c01220{margin-left:-1.236303pt;}
._3_c01220{width:0.960000pt;}
._4_c01220{width:2.048000pt;}
._10_c01220{width:3.626149pt;}
._6_c01220{width:5.824000pt;}
._2_c01220{width:6.784000pt;}
._1_c01220{width:7.722688pt;}
._8_c01220{width:8.853248pt;}
._f_c01220{width:10.410752pt;}
._11_c01220{width:11.562688pt;}
._e_c01220{width:16.512000pt;}
._d_c01220{width:19.454927pt;}
._c_c01220{width:20.778688pt;}
._a_c01220{width:24.192000pt;}
._9_c01220{width:25.664000pt;}
._b_c01220{width:27.081615pt;}
.fs2_c01220{font-size:53.120000pt;}
.fs0_c01220{font-size:58.880000pt;}
.fs1_c01220{font-size:64.000000pt;}
.y0_c01220{bottom:0.000000pt;}
.y1d_c01220{bottom:16.306667pt;}
.y3_c01220{bottom:51.232000pt;}
.y2_c01220{bottom:69.152000pt;}
.y1b_c01220{bottom:137.786667pt;}
.y1a_c01220{bottom:172.186667pt;}
.y1c_c01220{bottom:173.320000pt;}
.y19_c01220{bottom:203.226667pt;}
.y18_c01220{bottom:563.293333pt;}
.y17_c01220{bottom:584.413333pt;}
.y16_c01220{bottom:605.693333pt;}
.y15_c01220{bottom:626.813333pt;}
.y14_c01220{bottom:647.933333pt;}
.y13_c01220{bottom:669.053333pt;}
.y12_c01220{bottom:690.333333pt;}
.y11_c01220{bottom:711.453333pt;}
.y10_c01220{bottom:732.573333pt;}
.yf_c01220{bottom:753.733333pt;}
.ye_c01220{bottom:775.013333pt;}
.yd_c01220{bottom:796.133333pt;}
.yc_c01220{bottom:817.253333pt;}
.yb_c01220{bottom:838.373333pt;}
.ya_c01220{bottom:872.933333pt;}
.y9_c01220{bottom:894.053333pt;}
.y8_c01220{bottom:915.173333pt;}
.y7_c01220{bottom:936.453333pt;}
.y6_c01220{bottom:957.573333pt;}
.y5_c01220{bottom:978.693333pt;}
.y4_c01220{bottom:1013.280000pt;}
.y1_c01220{bottom:1061.920000pt;}
.h6_c01220{height:28.640000pt;}
.h2_c01220{height:42.722500pt;}
.h3_c01220{height:44.648750pt;}
.h7_c01220{height:47.491563pt;}
.h5_c01220{height:57.375000pt;}
.h4_c01220{height:57.781250pt;}
.h0_c01220{height:1122.560000pt;}
.h1_c01220{height:1122.666667pt;}
.w2_c01220{width:397.186667pt;}
.w0_c01220{width:793.760000pt;}
.w1_c01220{width:794.000000pt;}
.x0_c01220{left:0.000000pt;}
.x3_c01220{left:113.472000pt;}
.x5_c01220{left:136.026667pt;}
.x1_c01220{left:151.066667pt;}
.x6_c01220{left:170.440000pt;}
.x4_c01220{left:623.973333pt;}
.x2_c01220{left:658.213333pt;}
}





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

.ir_c01221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01221;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01221;src:url('chunks/assets/font_960b1188675f798cc3174999.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01221;src:url('chunks/assets/font_bcbb7a8519b15d27b8ddf414.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01221;src:url('chunks/assets/font_6934307e63a1fb7895242e97.woff2')format("woff");}.ff4_c01221{font-family:ff4_c01221;line-height:1.113281;font-style:normal;font-weight: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_c01221;src:url('chunks/assets/font_355e0b407f2efd50cfc4641c.woff2')format("woff");}.ff5_c01221{font-family:ff5_c01221;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01221{vertical-align:0.000000px;}
.ls2_c01221{letter-spacing:-0.576000px;}
.ls1_c01221{letter-spacing:-0.432000px;}
.ls0_c01221{letter-spacing:0.000000px;}
.sc__c01221{text-shadow:none;}
.sc0_c01221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
.sc0_c01221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01221{word-spacing:0.000000px;}
._a_c01221{margin-left:-3.973133px;}
._9_c01221{margin-left:-2.903976px;}
._0_c01221{margin-left:-1.258891px;}
._2_c01221{width:1.656000px;}
._1_c01221{width:2.664000px;}
._7_c01221{width:3.816000px;}
._6_c01221{width:5.256000px;}
._5_c01221{width:7.128000px;}
._4_c01221{width:10.224000px;}
._3_c01221{width:12.024000px;}
._8_c01221{width:922.188000px;}
.fc0_c01221{color:rgb(0,0,0);}
.fs2_c01221{font-size:59.760000px;}
.fs0_c01221{font-size:66.240000px;}
.fs1_c01221{font-size:72.000000px;}
.y0_c01221{bottom:0.000000px;}
.y18_c01221{bottom:10.620000px;}
.y16_c01221{bottom:11.340000px;}
.y17_c01221{bottom:28.080000px;}
.y15_c01221{bottom:28.800000px;}
.y3_c01221{bottom:57.636000px;}
.y2_c01221{bottom:77.796000px;}
.y13_c01221{bottom:327.135000px;}
.y12_c01221{bottom:365.835000px;}
.y11_c01221{bottom:404.715000px;}
.y10_c01221{bottom:428.475000px;}
.yf_c01221{bottom:452.235000px;}
.ye_c01221{bottom:476.175000px;}
.yd_c01221{bottom:514.875000px;}
.yc_c01221{bottom:553.755000px;}
.y14_c01221{bottom:580.785000px;}
.yb_c01221{bottom:592.485000px;}
.ya_c01221{bottom:627.405000px;}
.y9_c01221{bottom:1020.750000px;}
.y8_c01221{bottom:1044.690000px;}
.y7_c01221{bottom:1068.450000px;}
.y6_c01221{bottom:1092.210000px;}
.y5_c01221{bottom:1115.970000px;}
.y4_c01221{bottom:1139.940000px;}
.y1_c01221{bottom:1194.660000px;}
.h8_c01221{height:41.760000px;}
.h6_c01221{height:42.480000px;}
.h2_c01221{height:48.062812px;}
.h3_c01221{height:50.229844px;}
.h7_c01221{height:53.428008px;}
.h4_c01221{height:64.546875px;}
.h5_c01221{height:65.003906px;}
.h0_c01221{height:1262.880000px;}
.h1_c01221{height:1263.000000px;}
.w3_c01221{width:246.495000px;}
.w2_c01221{width:268.950000px;}
.w0_c01221{width:892.980000px;}
.w1_c01221{width:893.250000px;}
.x0_c01221{left:0.000000px;}
.x1_c01221{left:127.656000px;}
.x3_c01221{left:151.050000px;}
.x4_c01221{left:187.785000px;}
.x2_c01221{left:465.735000px;}
.x5_c01221{left:479.595000px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.ls2_c01221{letter-spacing:-0.512000pt;}
.ls1_c01221{letter-spacing:-0.384000pt;}
.ls0_c01221{letter-spacing:0.000000pt;}
.ws0_c01221{word-spacing:0.000000pt;}
._a_c01221{margin-left:-3.531674pt;}
._9_c01221{margin-left:-2.581312pt;}
._0_c01221{margin-left:-1.119014pt;}
._2_c01221{width:1.472000pt;}
._1_c01221{width:2.368000pt;}
._7_c01221{width:3.392000pt;}
._6_c01221{width:4.672000pt;}
._5_c01221{width:6.336000pt;}
._4_c01221{width:9.088000pt;}
._3_c01221{width:10.688000pt;}
._8_c01221{width:819.722667pt;}
.fs2_c01221{font-size:53.120000pt;}
.fs0_c01221{font-size:58.880000pt;}
.fs1_c01221{font-size:64.000000pt;}
.y0_c01221{bottom:0.000000pt;}
.y18_c01221{bottom:9.440000pt;}
.y16_c01221{bottom:10.080000pt;}
.y17_c01221{bottom:24.960000pt;}
.y15_c01221{bottom:25.600000pt;}
.y3_c01221{bottom:51.232000pt;}
.y2_c01221{bottom:69.152000pt;}
.y13_c01221{bottom:290.786667pt;}
.y12_c01221{bottom:325.186667pt;}
.y11_c01221{bottom:359.746667pt;}
.y10_c01221{bottom:380.866667pt;}
.yf_c01221{bottom:401.986667pt;}
.ye_c01221{bottom:423.266667pt;}
.yd_c01221{bottom:457.666667pt;}
.yc_c01221{bottom:492.226667pt;}
.y14_c01221{bottom:516.253333pt;}
.yb_c01221{bottom:526.653333pt;}
.ya_c01221{bottom:557.693333pt;}
.y9_c01221{bottom:907.333333pt;}
.y8_c01221{bottom:928.613333pt;}
.y7_c01221{bottom:949.733333pt;}
.y6_c01221{bottom:970.853333pt;}
.y5_c01221{bottom:991.973333pt;}
.y4_c01221{bottom:1013.280000pt;}
.y1_c01221{bottom:1061.920000pt;}
.h8_c01221{height:37.120000pt;}
.h6_c01221{height:37.760000pt;}
.h2_c01221{height:42.722500pt;}
.h3_c01221{height:44.648750pt;}
.h7_c01221{height:47.491563pt;}
.h4_c01221{height:57.375000pt;}
.h5_c01221{height:57.781250pt;}
.h0_c01221{height:1122.560000pt;}
.h1_c01221{height:1122.666667pt;}
.w3_c01221{width:219.106667pt;}
.w2_c01221{width:239.066667pt;}
.w0_c01221{width:793.760000pt;}
.w1_c01221{width:794.000000pt;}
.x0_c01221{left:0.000000pt;}
.x1_c01221{left:113.472000pt;}
.x3_c01221{left:134.266667pt;}
.x4_c01221{left:166.920000pt;}
.x2_c01221{left:413.986667pt;}
.x5_c01221{left:426.306667pt;}
}





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

.ir_c01222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01222;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01222;src:url('chunks/assets/font_60a3578b49d9a5ae6c12fbf5.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01222;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01222;src:url('chunks/assets/font_8dc1ee334231f563e7b61b00.woff2')format("woff");}.ff4_c01222{font-family:ff4_c01222;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01222;src:url('chunks/assets/font_ece2d53832772d1f599a547e.woff2')format("woff");}.ff5_c01222{font-family:ff5_c01222;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01222{vertical-align:0.000000px;}
.ls1_c01222{letter-spacing:0.000000px;}
.ls0_c01222{letter-spacing:0.288000px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01222{word-spacing:-20.304000px;}
.ws1_c01222{word-spacing:0.000000px;}
._6_c01222{margin-left:-2.880000px;}
._0_c01222{margin-left:-1.390841px;}
._2_c01222{width:1.296000px;}
._3_c01222{width:2.818817px;}
._4_c01222{width:4.320000px;}
._7_c01222{width:5.400000px;}
._9_c01222{width:7.344000px;}
._8_c01222{width:9.072000px;}
._c_c01222{width:10.980000px;}
._d_c01222{width:11.998889px;}
._1_c01222{width:13.032000px;}
._b_c01222{width:15.384024px;}
._a_c01222{width:17.064000px;}
._e_c01222{width:18.216000px;}
._5_c01222{width:37.944000px;}
.fc0_c01222{color:rgb(0,0,0);}
.fs3_c01222{font-size:59.760000px;}
.fs0_c01222{font-size:66.240000px;}
.fs2_c01222{font-size:72.000000px;}
.fs1_c01222{font-size:84.240000px;}
.y0_c01222{bottom:0.000000px;}
.y28_c01222{bottom:18.345000px;}
.y27_c01222{bottom:35.805000px;}
.y26_c01222{bottom:53.085000px;}
.y25_c01222{bottom:70.365000px;}
.y2_c01222{bottom:77.796000px;}
.y23_c01222{bottom:134.676000px;}
.y22_c01222{bottom:158.610000px;}
.y21_c01222{bottom:182.370000px;}
.y24_c01222{bottom:198.225000px;}
.y20_c01222{bottom:380.415000px;}
.y1f_c01222{bottom:404.175000px;}
.y1e_c01222{bottom:427.935000px;}
.y1d_c01222{bottom:451.695000px;}
.y1c_c01222{bottom:475.635000px;}
.y1b_c01222{bottom:499.395000px;}
.y1a_c01222{bottom:538.095000px;}
.y19_c01222{bottom:562.035000px;}
.y18_c01222{bottom:585.825000px;}
.y17_c01222{bottom:609.585000px;}
.y16_c01222{bottom:633.345000px;}
.y15_c01222{bottom:657.285000px;}
.y14_c01222{bottom:695.985000px;}
.y13_c01222{bottom:719.745000px;}
.y12_c01222{bottom:743.685000px;}
.y11_c01222{bottom:767.445000px;}
.y10_c01222{bottom:791.205000px;}
.yf_c01222{bottom:814.965000px;}
.ye_c01222{bottom:838.905000px;}
.yd_c01222{bottom:862.710000px;}
.yc_c01222{bottom:901.410000px;}
.yb_c01222{bottom:925.350000px;}
.ya_c01222{bottom:949.110000px;}
.y9_c01222{bottom:972.870000px;}
.y8_c01222{bottom:996.630000px;}
.y7_c01222{bottom:1020.570000px;}
.y6_c01222{bottom:1044.330000px;}
.y5_c01222{bottom:1068.090000px;}
.y4_c01222{bottom:1091.850000px;}
.y3_c01222{bottom:1137.240000px;}
.y1_c01222{bottom:1194.660000px;}
.h2_c01222{height:48.062812px;}
.h3_c01222{height:50.229844px;}
.h7_c01222{height:53.428008px;}
.h5_c01222{height:64.546875px;}
.h6_c01222{height:84.082500px;}
.h4_c01222{height:87.859687px;}
.h0_c01222{height:1262.880000px;}
.h1_c01222{height:1263.000000px;}
.w2_c01222{width:118.800000px;}
.w0_c01222{width:892.980000px;}
.w1_c01222{width:893.250000px;}
.x0_c01222{left:0.000000px;}
.x3_c01222{left:127.656000px;}
.x1_c01222{left:169.950000px;}
.x4_c01222{left:251.130000px;}
.x2_c01222{left:740.490000px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls1_c01222{letter-spacing:0.000000pt;}
.ls0_c01222{letter-spacing:0.256000pt;}
.ws0_c01222{word-spacing:-18.048000pt;}
.ws1_c01222{word-spacing:0.000000pt;}
._6_c01222{margin-left:-2.560000pt;}
._0_c01222{margin-left:-1.236303pt;}
._2_c01222{width:1.152000pt;}
._3_c01222{width:2.505615pt;}
._4_c01222{width:3.840000pt;}
._7_c01222{width:4.800000pt;}
._9_c01222{width:6.528000pt;}
._8_c01222{width:8.064000pt;}
._c_c01222{width:9.760000pt;}
._d_c01222{width:10.665679pt;}
._1_c01222{width:11.584000pt;}
._b_c01222{width:13.674688pt;}
._a_c01222{width:15.168000pt;}
._e_c01222{width:16.192000pt;}
._5_c01222{width:33.728000pt;}
.fs3_c01222{font-size:53.120000pt;}
.fs0_c01222{font-size:58.880000pt;}
.fs2_c01222{font-size:64.000000pt;}
.fs1_c01222{font-size:74.880000pt;}
.y0_c01222{bottom:0.000000pt;}
.y28_c01222{bottom:16.306667pt;}
.y27_c01222{bottom:31.826667pt;}
.y26_c01222{bottom:47.186667pt;}
.y25_c01222{bottom:62.546667pt;}
.y2_c01222{bottom:69.152000pt;}
.y23_c01222{bottom:119.712000pt;}
.y22_c01222{bottom:140.986667pt;}
.y21_c01222{bottom:162.106667pt;}
.y24_c01222{bottom:176.200000pt;}
.y20_c01222{bottom:338.146667pt;}
.y1f_c01222{bottom:359.266667pt;}
.y1e_c01222{bottom:380.386667pt;}
.y1d_c01222{bottom:401.506667pt;}
.y1c_c01222{bottom:422.786667pt;}
.y1b_c01222{bottom:443.906667pt;}
.y1a_c01222{bottom:478.306667pt;}
.y19_c01222{bottom:499.586667pt;}
.y18_c01222{bottom:520.733333pt;}
.y17_c01222{bottom:541.853333pt;}
.y16_c01222{bottom:562.973333pt;}
.y15_c01222{bottom:584.253333pt;}
.y14_c01222{bottom:618.653333pt;}
.y13_c01222{bottom:639.773333pt;}
.y12_c01222{bottom:661.053333pt;}
.y11_c01222{bottom:682.173333pt;}
.y10_c01222{bottom:703.293333pt;}
.yf_c01222{bottom:724.413333pt;}
.ye_c01222{bottom:745.693333pt;}
.yd_c01222{bottom:766.853333pt;}
.yc_c01222{bottom:801.253333pt;}
.yb_c01222{bottom:822.533333pt;}
.ya_c01222{bottom:843.653333pt;}
.y9_c01222{bottom:864.773333pt;}
.y8_c01222{bottom:885.893333pt;}
.y7_c01222{bottom:907.173333pt;}
.y6_c01222{bottom:928.293333pt;}
.y5_c01222{bottom:949.413333pt;}
.y4_c01222{bottom:970.533333pt;}
.y3_c01222{bottom:1010.880000pt;}
.y1_c01222{bottom:1061.920000pt;}
.h2_c01222{height:42.722500pt;}
.h3_c01222{height:44.648750pt;}
.h7_c01222{height:47.491563pt;}
.h5_c01222{height:57.375000pt;}
.h6_c01222{height:74.740000pt;}
.h4_c01222{height:78.097500pt;}
.h0_c01222{height:1122.560000pt;}
.h1_c01222{height:1122.666667pt;}
.w2_c01222{width:105.600000pt;}
.w0_c01222{width:793.760000pt;}
.w1_c01222{width:794.000000pt;}
.x0_c01222{left:0.000000pt;}
.x3_c01222{left:113.472000pt;}
.x1_c01222{left:151.066667pt;}
.x4_c01222{left:223.226667pt;}
.x2_c01222{left:658.213333pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c01223 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c01223 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c01223 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c01223 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




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

.ir_c01224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01224;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01224;src:url('chunks/assets/font_5e549d3f674a23837cb52f9d.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01224;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01224;src:url('chunks/assets/font_588b87438a66226d426e33b4.woff2')format("woff");}.ff4_c01224{font-family:ff4_c01224;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01224{vertical-align:0.000000px;}
.ls0_c01224{letter-spacing:0.000000px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01224{word-spacing:0.000000px;}
._0_c01224{margin-left:-1.390841px;}
._1_c01224{width:1.135201px;}
.fc0_c01224{color:rgb(0,0,0);}
.fs2_c01224{font-size:59.760000px;}
.fs0_c01224{font-size:66.240000px;}
.fs1_c01224{font-size:72.000000px;}
.y0_c01224{bottom:0.000000px;}
.ya_c01224{bottom:25.365000px;}
.y3_c01224{bottom:57.636000px;}
.y2_c01224{bottom:77.796000px;}
.y8_c01224{bottom:146.736000px;}
.y7_c01224{bottom:185.070000px;}
.y9_c01224{bottom:199.665000px;}
.y6_c01224{bottom:222.690000px;}
.y5_c01224{bottom:257.610000px;}
.y4_c01224{bottom:731.265000px;}
.y1_c01224{bottom:1194.660000px;}
.h5_c01224{height:39.060000px;}
.h2_c01224{height:48.062812px;}
.h3_c01224{height:50.229844px;}
.h6_c01224{height:53.428008px;}
.h4_c01224{height:64.546875px;}
.h0_c01224{height:1262.880000px;}
.h1_c01224{height:1263.000000px;}
.w2_c01224{width:396.060000px;}
.w0_c01224{width:892.980000px;}
.w1_c01224{width:893.250000px;}
.x0_c01224{left:0.000000px;}
.x3_c01224{left:127.656000px;}
.x1_c01224{left:169.950000px;}
.x5_c01224{left:537.225000px;}
.x2_c01224{left:740.490000px;}
.x4_c01224{left:765.510000px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls0_c01224{letter-spacing:0.000000pt;}
.ws0_c01224{word-spacing:0.000000pt;}
._0_c01224{margin-left:-1.236303pt;}
._1_c01224{width:1.009068pt;}
.fs2_c01224{font-size:53.120000pt;}
.fs0_c01224{font-size:58.880000pt;}
.fs1_c01224{font-size:64.000000pt;}
.y0_c01224{bottom:0.000000pt;}
.ya_c01224{bottom:22.546667pt;}
.y3_c01224{bottom:51.232000pt;}
.y2_c01224{bottom:69.152000pt;}
.y8_c01224{bottom:130.432000pt;}
.y7_c01224{bottom:164.506667pt;}
.y9_c01224{bottom:177.480000pt;}
.y6_c01224{bottom:197.946667pt;}
.y5_c01224{bottom:228.986667pt;}
.y4_c01224{bottom:650.013333pt;}
.y1_c01224{bottom:1061.920000pt;}
.h5_c01224{height:34.720000pt;}
.h2_c01224{height:42.722500pt;}
.h3_c01224{height:44.648750pt;}
.h6_c01224{height:47.491563pt;}
.h4_c01224{height:57.375000pt;}
.h0_c01224{height:1122.560000pt;}
.h1_c01224{height:1122.666667pt;}
.w2_c01224{width:352.053333pt;}
.w0_c01224{width:793.760000pt;}
.w1_c01224{width:794.000000pt;}
.x0_c01224{left:0.000000pt;}
.x3_c01224{left:113.472000pt;}
.x1_c01224{left:151.066667pt;}
.x5_c01224{left:477.533333pt;}
.x2_c01224{left:658.213333pt;}
.x4_c01224{left:680.453333pt;}
}





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

.ir_c01225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01225;src:url('chunks/assets/font_cbe423bc4ff9385ecced807a.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01225;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01225{vertical-align:0.000000px;}
.ls0_c01225{letter-spacing:0.000000px;}
.sc__c01225{text-shadow:none;}
.sc0_c01225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01225{-webkit-text-stroke:0px transparent;}
.sc0_c01225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01225{word-spacing:-0.720000px;}
.ws1_c01225{word-spacing:0.288000px;}
.fc0_c01225{color:rgb(0,0,0);}
.fs0_c01225{font-size:66.240000px;}
.y0_c01225{bottom:0.000000px;}
.y2_c01225{bottom:77.796000px;}
.y1_c01225{bottom:1194.660000px;}
.h2_c01225{height:48.062812px;}
.h3_c01225{height:50.229844px;}
.h0_c01225{height:1262.880000px;}
.h1_c01225{height:1263.000000px;}
.w0_c01225{width:892.980000px;}
.w1_c01225{width:893.250000px;}
.x0_c01225{left:0.000000px;}
.x1_c01225{left:127.656000px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls0_c01225{letter-spacing:0.000000pt;}
.ws0_c01225{word-spacing:-0.640000pt;}
.ws1_c01225{word-spacing:0.256000pt;}
.fs0_c01225{font-size:58.880000pt;}
.y0_c01225{bottom:0.000000pt;}
.y2_c01225{bottom:69.152000pt;}
.y1_c01225{bottom:1061.920000pt;}
.h2_c01225{height:42.722500pt;}
.h3_c01225{height:44.648750pt;}
.h0_c01225{height:1122.560000pt;}
.h1_c01225{height:1122.666667pt;}
.w0_c01225{width:793.760000pt;}
.w1_c01225{width:794.000000pt;}
.x0_c01225{left:0.000000pt;}
.x1_c01225{left:113.472000pt;}
}





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

.ir_c01226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01226;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01226;src:url('chunks/assets/font_2c9862a8575f3c46b90004ea.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01226;src:url('chunks/assets/font_08109274024dafae2fef4e49.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:0.987793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01226;src:url('chunks/assets/font_8d181e85d2aeb57d56622461.woff2')format("woff");}.ff4_c01226{font-family:ff4_c01226;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:ff5_c01226;src:url('chunks/assets/font_60cf376fb101c85aa70904c4.woff2')format("woff");}.ff5_c01226{font-family:ff5_c01226;line-height:0.915039;font-style:normal;font-weight: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_c01226;src:url('chunks/assets/font_b9c10240995a4ec140b276c9.woff2')format("woff");}.ff6_c01226{font-family:ff6_c01226;line-height:1.010254;font-style:normal;font-weight: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_c01226;src:url('chunks/assets/font_283648f077efdc40c14e6b27.woff2')format("woff");}.ff7_c01226{font-family:ff7_c01226;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:ff8_c01226;src:url('chunks/assets/font_f4c30d9bad9026e11451cfc4.woff2')format("woff");}.ff8_c01226{font-family:ff8_c01226;line-height:1.104492;font-style:normal;font-weight: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_c01226;src:url('chunks/assets/font_27614d233c68d2813f355cf4.woff2')format("woff");}.ff9_c01226{font-family:ff9_c01226;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01226{vertical-align:0.000000px;}
.ls4_c01226{letter-spacing:-0.540600px;}
.ls3_c01226{letter-spacing:-0.072000px;}
.ls2_c01226{letter-spacing:0.000000px;}
.ls5_c01226{letter-spacing:0.288000px;}
.ls0_c01226{letter-spacing:20.784000px;}
.ls1_c01226{letter-spacing:20.808000px;}
.sc__c01226{text-shadow:none;}
.sc1_c01226{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0_c01226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01226{-webkit-text-stroke:0px transparent;}
.sc1_c01226{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01226{word-spacing:-23.418720px;}
.ws1_c01226{word-spacing:-20.554560px;}
.ws0_c01226{word-spacing:-18.000000px;}
.ws3_c01226{word-spacing:0.000000px;}
._8_c01226{margin-left:-4.199976px;}
._3_c01226{margin-left:-2.695848px;}
._0_c01226{margin-left:-1.390841px;}
._1_c01226{width:1.052977px;}
._2_c01226{width:2.221249px;}
._5_c01226{width:3.812524px;}
._4_c01226{width:4.824000px;}
._7_c01226{width:6.096024px;}
._6_c01226{width:7.488000px;}
.fc1_c01226{color:rgb(238,119,0);}
.fc0_c01226{color:rgb(0,0,0);}
.fs0_c01226{font-size:66.240000px;}
.fs2_c01226{font-size:72.000000px;}
.fs3_c01226{font-size:84.240000px;}
.fs1_c01226{font-size:95.760000px;}
.y0_c01226{bottom:0.000000px;}
.y9_c01226{bottom:5.220000px;}
.y14_c01226{bottom:8.460000px;}
.y15_c01226{bottom:8.640000px;}
.y11_c01226{bottom:8.820000px;}
.y10_c01226{bottom:14.760000px;}
.yd_c01226{bottom:19.095000px;}
.y8_c01226{bottom:31.320000px;}
.y13_c01226{bottom:34.560000px;}
.yf_c01226{bottom:40.905000px;}
.yb_c01226{bottom:45.000000px;}
.y2_c01226{bottom:77.796000px;}
.y2a_c01226{bottom:181.110000px;}
.y29_c01226{bottom:204.870000px;}
.y28_c01226{bottom:228.630000px;}
.y27_c01226{bottom:252.390000px;}
.y26_c01226{bottom:276.330000px;}
.y25_c01226{bottom:300.135000px;}
.y24_c01226{bottom:323.895000px;}
.y23_c01226{bottom:347.655000px;}
.y22_c01226{bottom:371.595000px;}
.y21_c01226{bottom:395.355000px;}
.y20_c01226{bottom:419.115000px;}
.y1f_c01226{bottom:442.875000px;}
.y1e_c01226{bottom:481.755000px;}
.y1d_c01226{bottom:505.515000px;}
.y1c_c01226{bottom:529.275000px;}
.y1b_c01226{bottom:553.215000px;}
.y1a_c01226{bottom:577.005000px;}
.y19_c01226{bottom:600.765000px;}
.y18_c01226{bottom:624.525000px;}
.y17_c01226{bottom:648.285000px;}
.y16_c01226{bottom:693.645000px;}
.y12_c01226{bottom:755.745000px;}
.ye_c01226{bottom:813.525000px;}
.yc_c01226{bottom:877.635000px;}
.ya_c01226{bottom:877.650000px;}
.y7_c01226{bottom:945.870000px;}
.y6_c01226{bottom:1031.190000px;}
.y5_c01226{bottom:1064.490000px;}
.y4_c01226{bottom:1097.790000px;}
.y3_c01226{bottom:1131.120000px;}
.y1_c01226{bottom:1194.660000px;}
.h2_c01226{height:48.062812px;}
.h3_c01226{height:50.229844px;}
.h7_c01226{height:52.417969px;}
.h5_c01226{height:54.525000px;}
.hd_c01226{height:57.775500px;}
.hc_c01226{height:57.780000px;}
.h6_c01226{height:63.550195px;}
.hb_c01226{height:64.102500px;}
.hf_c01226{height:64.546875px;}
.h8_c01226{height:68.205000px;}
.h9_c01226{height:68.211000px;}
.ha_c01226{height:68.220000px;}
.h4_c01226{height:69.575625px;}
.he_c01226{height:87.859687px;}
.h0_c01226{height:1262.880000px;}
.h1_c01226{height:1263.000000px;}
.w3_c01226{width:230.415000px;}
.w4_c01226{width:230.430000px;}
.w2_c01226{width:403.626000px;}
.w0_c01226{width:892.980000px;}
.w1_c01226{width:893.250000px;}
.x0_c01226{left:0.000000px;}
.x5_c01226{left:10.251000px;}
.x6_c01226{left:31.485000px;}
.x3_c01226{left:127.656000px;}
.x1_c01226{left:169.950000px;}
.x4_c01226{left:191.550000px;}
.x7_c01226{left:531.300000px;}
.x2_c01226{left:740.490000px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls4_c01226{letter-spacing:-0.480533pt;}
.ls3_c01226{letter-spacing:-0.064000pt;}
.ls2_c01226{letter-spacing:0.000000pt;}
.ls5_c01226{letter-spacing:0.256000pt;}
.ls0_c01226{letter-spacing:18.474667pt;}
.ls1_c01226{letter-spacing:18.496000pt;}
.ws2_c01226{word-spacing:-20.816640pt;}
.ws1_c01226{word-spacing:-18.270720pt;}
.ws0_c01226{word-spacing:-16.000000pt;}
.ws3_c01226{word-spacing:0.000000pt;}
._8_c01226{margin-left:-3.733312pt;}
._3_c01226{margin-left:-2.396310pt;}
._0_c01226{margin-left:-1.236303pt;}
._1_c01226{width:0.935980pt;}
._2_c01226{width:1.974444pt;}
._5_c01226{width:3.388910pt;}
._4_c01226{width:4.288000pt;}
._7_c01226{width:5.418688pt;}
._6_c01226{width:6.656000pt;}
.fs0_c01226{font-size:58.880000pt;}
.fs2_c01226{font-size:64.000000pt;}
.fs3_c01226{font-size:74.880000pt;}
.fs1_c01226{font-size:85.120000pt;}
.y0_c01226{bottom:0.000000pt;}
.y9_c01226{bottom:4.640000pt;}
.y14_c01226{bottom:7.520000pt;}
.y15_c01226{bottom:7.680000pt;}
.y11_c01226{bottom:7.840000pt;}
.y10_c01226{bottom:13.120000pt;}
.yd_c01226{bottom:16.973333pt;}
.y8_c01226{bottom:27.840000pt;}
.y13_c01226{bottom:30.720000pt;}
.yf_c01226{bottom:36.360000pt;}
.yb_c01226{bottom:40.000000pt;}
.y2_c01226{bottom:69.152000pt;}
.y2a_c01226{bottom:160.986667pt;}
.y29_c01226{bottom:182.106667pt;}
.y28_c01226{bottom:203.226667pt;}
.y27_c01226{bottom:224.346667pt;}
.y26_c01226{bottom:245.626667pt;}
.y25_c01226{bottom:266.786667pt;}
.y24_c01226{bottom:287.906667pt;}
.y23_c01226{bottom:309.026667pt;}
.y22_c01226{bottom:330.306667pt;}
.y21_c01226{bottom:351.426667pt;}
.y20_c01226{bottom:372.546667pt;}
.y1f_c01226{bottom:393.666667pt;}
.y1e_c01226{bottom:428.226667pt;}
.y1d_c01226{bottom:449.346667pt;}
.y1c_c01226{bottom:470.466667pt;}
.y1b_c01226{bottom:491.746667pt;}
.y1a_c01226{bottom:512.893333pt;}
.y19_c01226{bottom:534.013333pt;}
.y18_c01226{bottom:555.133333pt;}
.y17_c01226{bottom:576.253333pt;}
.y16_c01226{bottom:616.573333pt;}
.y12_c01226{bottom:671.773333pt;}
.ye_c01226{bottom:723.133333pt;}
.yc_c01226{bottom:780.120000pt;}
.ya_c01226{bottom:780.133333pt;}
.y7_c01226{bottom:840.773333pt;}
.y6_c01226{bottom:916.613333pt;}
.y5_c01226{bottom:946.213333pt;}
.y4_c01226{bottom:975.813333pt;}
.y3_c01226{bottom:1005.440000pt;}
.y1_c01226{bottom:1061.920000pt;}
.h2_c01226{height:42.722500pt;}
.h3_c01226{height:44.648750pt;}
.h7_c01226{height:46.593750pt;}
.h5_c01226{height:48.466667pt;}
.hd_c01226{height:51.356000pt;}
.hc_c01226{height:51.360000pt;}
.h6_c01226{height:56.489062pt;}
.hb_c01226{height:56.980000pt;}
.hf_c01226{height:57.375000pt;}
.h8_c01226{height:60.626667pt;}
.h9_c01226{height:60.632000pt;}
.ha_c01226{height:60.640000pt;}
.h4_c01226{height:61.845000pt;}
.he_c01226{height:78.097500pt;}
.h0_c01226{height:1122.560000pt;}
.h1_c01226{height:1122.666667pt;}
.w3_c01226{width:204.813333pt;}
.w4_c01226{width:204.826667pt;}
.w2_c01226{width:358.778667pt;}
.w0_c01226{width:793.760000pt;}
.w1_c01226{width:794.000000pt;}
.x0_c01226{left:0.000000pt;}
.x5_c01226{left:9.112000pt;}
.x6_c01226{left:27.986667pt;}
.x3_c01226{left:113.472000pt;}
.x1_c01226{left:151.066667pt;}
.x4_c01226{left:170.266667pt;}
.x7_c01226{left:472.266667pt;}
.x2_c01226{left:658.213333pt;}
}





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

.ir_c01227:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01227;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01227;src:url('chunks/assets/font_d4f66e54d09faf53c7b708eb.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01227;src:url('chunks/assets/font_9bcf9b12a7820958c4342c9f.woff2')format("woff");}.ff3_c01227{font-family:ff3_c01227;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01227;src:url('chunks/assets/font_274677e0880b72c0103334d5.woff2')format("woff");}.ff4_c01227{font-family:ff4_c01227;line-height:1.104492;font-style:normal;font-weight: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_c01227;src:url('chunks/assets/font_c3589befa8d4b226d717a887.woff2')format("woff");}.ff5_c01227{font-family:ff5_c01227;line-height:1.575000;font-style:normal;font-weight: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_c01227;src:url('chunks/assets/font_26cf88076ebb4f4b35a4aafd.woff2')format("woff");}.ff6_c01227{font-family:ff6_c01227;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01227{vertical-align:0.000000px;}
.ls4_c01227{letter-spacing:-0.272400px;}
.ls2_c01227{letter-spacing:-0.181200px;}
.ls5_c01227{letter-spacing:-0.152400px;}
.ls1_c01227{letter-spacing:0.000000px;}
.ls3_c01227{letter-spacing:0.150000px;}
.ls0_c01227{letter-spacing:21.750240px;}
.sc__c01227{text-shadow:none;}
.sc0_c01227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01227{-webkit-text-stroke:0px transparent;}
.sc0_c01227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01227{word-spacing:-21.035520px;}
.ws1_c01227{word-spacing:0.000000px;}
._18_c01227{margin-left:-5.760000px;}
._16_c01227{margin-left:-4.248000px;}
._17_c01227{margin-left:-3.168000px;}
._0_c01227{margin-left:-1.258891px;}
._3_c01227{width:1.186891px;}
._b_c01227{width:2.952000px;}
._15_c01227{width:4.608000px;}
._a_c01227{width:5.976000px;}
._9_c01227{width:6.984000px;}
._12_c01227{width:8.389109px;}
._8_c01227{width:9.864000px;}
._2_c01227{width:10.872000px;}
._1_c01227{width:12.240000px;}
._13_c01227{width:13.464000px;}
._14_c01227{width:14.472000px;}
._19_c01227{width:15.624000px;}
._7_c01227{width:17.533109px;}
._6_c01227{width:18.576000px;}
._4_c01227{width:23.544000px;}
._5_c01227{width:24.552000px;}
._d_c01227{width:26.242891px;}
._c_c01227{width:27.504000px;}
._11_c01227{width:31.029782px;}
._10_c01227{width:32.184000px;}
._f_c01227{width:50.112000px;}
._e_c01227{width:51.192000px;}
.fc0_c01227{color:rgb(0,0,0);}
.fs3_c01227{font-size:38.880000px;}
.fs2_c01227{font-size:48.240000px;}
.fs4_c01227{font-size:59.760000px;}
.fs0_c01227{font-size:66.240000px;}
.fs1_c01227{font-size:72.000000px;}
.y0_c01227{bottom:0.000000px;}
.y31_c01227{bottom:6.480000px;}
.y3_c01227{bottom:57.636000px;}
.y2_c01227{bottom:77.796000px;}
.y2f_c01227{bottom:109.296000px;}
.y2e_c01227{bottom:128.376000px;}
.y2d_c01227{bottom:133.596000px;}
.y2c_c01227{bottom:148.176000px;}
.y2b_c01227{bottom:205.230000px;}
.y2a_c01227{bottom:228.990000px;}
.y29_c01227{bottom:252.750000px;}
.y28_c01227{bottom:276.690000px;}
.y27_c01227{bottom:300.495000px;}
.y26_c01227{bottom:324.255000px;}
.y25_c01227{bottom:348.015000px;}
.y24_c01227{bottom:371.955000px;}
.y22_c01227{bottom:395.715000px;}
.y23_c01227{bottom:401.655000px;}
.y21_c01227{bottom:419.475000px;}
.y20_c01227{bottom:443.235000px;}
.y1f_c01227{bottom:466.995000px;}
.y1e_c01227{bottom:490.935000px;}
.y1d_c01227{bottom:529.635000px;}
.y1c_c01227{bottom:553.575000px;}
.y1b_c01227{bottom:577.365000px;}
.y1a_c01227{bottom:601.125000px;}
.y19_c01227{bottom:624.885000px;}
.y18_c01227{bottom:648.645000px;}
.y17_c01227{bottom:672.585000px;}
.y16_c01227{bottom:696.345000px;}
.y15_c01227{bottom:720.105000px;}
.y14_c01227{bottom:743.865000px;}
.y13_c01227{bottom:767.805000px;}
.y12_c01227{bottom:806.505000px;}
.y30_c01227{bottom:827.925000px;}
.y11_c01227{bottom:830.265000px;}
.y10_c01227{bottom:854.250000px;}
.yf_c01227{bottom:878.010000px;}
.ye_c01227{bottom:901.770000px;}
.yd_c01227{bottom:925.530000px;}
.yc_c01227{bottom:949.470000px;}
.yb_c01227{bottom:973.230000px;}
.ya_c01227{bottom:996.990000px;}
.y9_c01227{bottom:1020.750000px;}
.y8_c01227{bottom:1044.690000px;}
.y7_c01227{bottom:1068.630000px;}
.y6_c01227{bottom:1092.390000px;}
.y5_c01227{bottom:1115.970000px;}
.y4_c01227{bottom:1139.940000px;}
.y1_c01227{bottom:1194.660000px;}
.h9_c01227{height:20.362500px;}
.h7_c01227{height:29.482734px;}
.h6_c01227{height:43.246406px;}
.h2_c01227{height:48.062812px;}
.h3_c01227{height:50.229844px;}
.ha_c01227{height:53.428008px;}
.h8_c01227{height:63.763920px;}
.h4_c01227{height:64.546875px;}
.h5_c01227{height:1262.865000px;}
.h0_c01227{height:1262.880000px;}
.h1_c01227{height:1263.000000px;}
.w3_c01227{width:193.515000px;}
.w2_c01227{width:892.957500px;}
.w0_c01227{width:892.980000px;}
.w1_c01227{width:893.250000px;}
.x0_c01227{left:0.000000px;}
.x1_c01227{left:127.656000px;}
.x5_c01227{left:142.236000px;}
.x2_c01227{left:239.587500px;}
.x3_c01227{left:259.590000px;}
.x4_c01227{left:343.695000px;}
.x6_c01227{left:573.420000px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls4_c01227{letter-spacing:-0.242133pt;}
.ls2_c01227{letter-spacing:-0.161067pt;}
.ls5_c01227{letter-spacing:-0.135467pt;}
.ls1_c01227{letter-spacing:0.000000pt;}
.ls3_c01227{letter-spacing:0.133333pt;}
.ls0_c01227{letter-spacing:19.333547pt;}
.ws0_c01227{word-spacing:-18.698240pt;}
.ws1_c01227{word-spacing:0.000000pt;}
._18_c01227{margin-left:-5.120000pt;}
._16_c01227{margin-left:-3.776000pt;}
._17_c01227{margin-left:-2.816000pt;}
._0_c01227{margin-left:-1.119014pt;}
._3_c01227{width:1.055014pt;}
._b_c01227{width:2.624000pt;}
._15_c01227{width:4.096000pt;}
._a_c01227{width:5.312000pt;}
._9_c01227{width:6.208000pt;}
._12_c01227{width:7.456986pt;}
._8_c01227{width:8.768000pt;}
._2_c01227{width:9.664000pt;}
._1_c01227{width:10.880000pt;}
._13_c01227{width:11.968000pt;}
._14_c01227{width:12.864000pt;}
._19_c01227{width:13.888000pt;}
._7_c01227{width:15.584986pt;}
._6_c01227{width:16.512000pt;}
._4_c01227{width:20.928000pt;}
._5_c01227{width:21.824000pt;}
._d_c01227{width:23.327014pt;}
._c_c01227{width:24.448000pt;}
._11_c01227{width:27.582029pt;}
._10_c01227{width:28.608000pt;}
._f_c01227{width:44.544000pt;}
._e_c01227{width:45.504000pt;}
.fs3_c01227{font-size:34.560000pt;}
.fs2_c01227{font-size:42.880000pt;}
.fs4_c01227{font-size:53.120000pt;}
.fs0_c01227{font-size:58.880000pt;}
.fs1_c01227{font-size:64.000000pt;}
.y0_c01227{bottom:0.000000pt;}
.y31_c01227{bottom:5.760000pt;}
.y3_c01227{bottom:51.232000pt;}
.y2_c01227{bottom:69.152000pt;}
.y2f_c01227{bottom:97.152000pt;}
.y2e_c01227{bottom:114.112000pt;}
.y2d_c01227{bottom:118.752000pt;}
.y2c_c01227{bottom:131.712000pt;}
.y2b_c01227{bottom:182.426667pt;}
.y2a_c01227{bottom:203.546667pt;}
.y29_c01227{bottom:224.666667pt;}
.y28_c01227{bottom:245.946667pt;}
.y27_c01227{bottom:267.106667pt;}
.y26_c01227{bottom:288.226667pt;}
.y25_c01227{bottom:309.346667pt;}
.y24_c01227{bottom:330.626667pt;}
.y22_c01227{bottom:351.746667pt;}
.y23_c01227{bottom:357.026667pt;}
.y21_c01227{bottom:372.866667pt;}
.y20_c01227{bottom:393.986667pt;}
.y1f_c01227{bottom:415.106667pt;}
.y1e_c01227{bottom:436.386667pt;}
.y1d_c01227{bottom:470.786667pt;}
.y1c_c01227{bottom:492.066667pt;}
.y1b_c01227{bottom:513.213333pt;}
.y1a_c01227{bottom:534.333333pt;}
.y19_c01227{bottom:555.453333pt;}
.y18_c01227{bottom:576.573333pt;}
.y17_c01227{bottom:597.853333pt;}
.y16_c01227{bottom:618.973333pt;}
.y15_c01227{bottom:640.093333pt;}
.y14_c01227{bottom:661.213333pt;}
.y13_c01227{bottom:682.493333pt;}
.y12_c01227{bottom:716.893333pt;}
.y30_c01227{bottom:735.933333pt;}
.y11_c01227{bottom:738.013333pt;}
.y10_c01227{bottom:759.333333pt;}
.yf_c01227{bottom:780.453333pt;}
.ye_c01227{bottom:801.573333pt;}
.yd_c01227{bottom:822.693333pt;}
.yc_c01227{bottom:843.973333pt;}
.yb_c01227{bottom:865.093333pt;}
.ya_c01227{bottom:886.213333pt;}
.y9_c01227{bottom:907.333333pt;}
.y8_c01227{bottom:928.613333pt;}
.y7_c01227{bottom:949.893333pt;}
.y6_c01227{bottom:971.013333pt;}
.y5_c01227{bottom:991.973333pt;}
.y4_c01227{bottom:1013.280000pt;}
.y1_c01227{bottom:1061.920000pt;}
.h9_c01227{height:18.100000pt;}
.h7_c01227{height:26.206875pt;}
.h6_c01227{height:38.441250pt;}
.h2_c01227{height:42.722500pt;}
.h3_c01227{height:44.648750pt;}
.ha_c01227{height:47.491563pt;}
.h8_c01227{height:56.679040pt;}
.h4_c01227{height:57.375000pt;}
.h5_c01227{height:1122.546667pt;}
.h0_c01227{height:1122.560000pt;}
.h1_c01227{height:1122.666667pt;}
.w3_c01227{width:172.013333pt;}
.w2_c01227{width:793.740000pt;}
.w0_c01227{width:793.760000pt;}
.w1_c01227{width:794.000000pt;}
.x0_c01227{left:0.000000pt;}
.x1_c01227{left:113.472000pt;}
.x5_c01227{left:126.432000pt;}
.x2_c01227{left:212.966667pt;}
.x3_c01227{left:230.746667pt;}
.x4_c01227{left:305.506667pt;}
.x6_c01227{left:509.706667pt;}
}





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

.ir_c01228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01228;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01228;src:url('chunks/assets/font_e7b890fb1b37b7a47f4e3868.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01228;src:url('chunks/assets/font_bebeef604a1608758b247035.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01228;src:url('chunks/assets/font_95a9b5bd23b93d1878f62765.woff2')format("woff");}.ff4_c01228{font-family:ff4_c01228;line-height:1.575000;font-style:normal;font-weight: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_c01228;src:url('chunks/assets/font_823062b2a856aee450a7f380.woff2')format("woff");}.ff5_c01228{font-family:ff5_c01228;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01228{vertical-align:0.000000px;}
.ls4_c01228{letter-spacing:-0.272400px;}
.ls2_c01228{letter-spacing:-0.181200px;}
.ls1_c01228{letter-spacing:0.000000px;}
.ls3_c01228{letter-spacing:0.150000px;}
.ls0_c01228{letter-spacing:0.174240px;}
.sc__c01228{text-shadow:none;}
.sc0_c01228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01228{-webkit-text-stroke:0px transparent;}
.sc0_c01228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01228{word-spacing:-20.016000px;}
.ws1_c01228{word-spacing:0.000000px;}
._10_c01228{margin-left:-5.540524px;}
._c_c01228{margin-left:-4.225159px;}
._d_c01228{margin-left:-2.592000px;}
._0_c01228{margin-left:-1.390841px;}
._2_c01228{width:1.008000px;}
._8_c01228{width:3.020524px;}
._1_c01228{width:4.104000px;}
._3_c01228{width:5.256000px;}
._f_c01228{width:7.150841px;}
._e_c01228{width:8.208000px;}
._12_c01228{width:9.216000px;}
._5_c01228{width:14.040000px;}
._4_c01228{width:15.048000px;}
._7_c01228{width:16.449659px;}
._6_c01228{width:17.568000px;}
._13_c01228{width:18.734365px;}
._11_c01228{width:21.600000px;}
._a_c01228{width:23.472000px;}
._9_c01228{width:24.840000px;}
._b_c01228{width:26.424000px;}
.fc0_c01228{color:rgb(0,0,0);}
.fs3_c01228{font-size:38.880000px;}
.fs2_c01228{font-size:48.240000px;}
.fs4_c01228{font-size:59.760000px;}
.fs0_c01228{font-size:66.240000px;}
.fs1_c01228{font-size:72.000000px;}
.y0_c01228{bottom:0.000000px;}
.y3_c01228{bottom:57.636000px;}
.y2_c01228{bottom:77.796000px;}
.y32_c01228{bottom:110.196000px;}
.y31_c01228{bottom:115.416000px;}
.y30_c01228{bottom:128.376000px;}
.y2f_c01228{bottom:147.456000px;}
.y2e_c01228{bottom:152.670000px;}
.y2d_c01228{bottom:167.250000px;}
.y2b_c01228{bottom:190.290000px;}
.y2c_c01228{bottom:196.230000px;}
.y2a_c01228{bottom:214.050000px;}
.y29_c01228{bottom:237.810000px;}
.y28_c01228{bottom:261.570000px;}
.y27_c01228{bottom:285.375000px;}
.y26_c01228{bottom:309.315000px;}
.y25_c01228{bottom:333.075000px;}
.y24_c01228{bottom:356.835000px;}
.y23_c01228{bottom:380.595000px;}
.y22_c01228{bottom:419.475000px;}
.y21_c01228{bottom:443.235000px;}
.y20_c01228{bottom:466.995000px;}
.y1f_c01228{bottom:490.935000px;}
.y1e_c01228{bottom:514.695000px;}
.y1d_c01228{bottom:538.455000px;}
.y1c_c01228{bottom:562.215000px;}
.y1b_c01228{bottom:601.125000px;}
.y1a_c01228{bottom:624.885000px;}
.y19_c01228{bottom:648.645000px;}
.y18_c01228{bottom:672.585000px;}
.y17_c01228{bottom:696.345000px;}
.y16_c01228{bottom:720.105000px;}
.y15_c01228{bottom:743.865000px;}
.y14_c01228{bottom:767.805000px;}
.y13_c01228{bottom:791.565000px;}
.y12_c01228{bottom:815.325000px;}
.y11_c01228{bottom:839.085000px;}
.y10_c01228{bottom:878.010000px;}
.yf_c01228{bottom:901.770000px;}
.yd_c01228{bottom:925.530000px;}
.ye_c01228{bottom:931.470000px;}
.yc_c01228{bottom:949.470000px;}
.yb_c01228{bottom:973.230000px;}
.ya_c01228{bottom:996.990000px;}
.y9_c01228{bottom:1020.750000px;}
.y8_c01228{bottom:1044.690000px;}
.y7_c01228{bottom:1068.450000px;}
.y6_c01228{bottom:1092.210000px;}
.y5_c01228{bottom:1115.970000px;}
.y4_c01228{bottom:1139.940000px;}
.y1_c01228{bottom:1194.660000px;}
.h7_c01228{height:29.482734px;}
.h6_c01228{height:43.246406px;}
.h2_c01228{height:48.062812px;}
.h3_c01228{height:50.229844px;}
.h8_c01228{height:63.763920px;}
.h4_c01228{height:64.546875px;}
.h5_c01228{height:1262.865000px;}
.h0_c01228{height:1262.880000px;}
.h1_c01228{height:1263.000000px;}
.w2_c01228{width:892.957500px;}
.w0_c01228{width:892.980000px;}
.w1_c01228{width:893.250000px;}
.x0_c01228{left:0.000000px;}
.x3_c01228{left:127.656000px;}
.x9_c01228{left:142.236000px;}
.x1_c01228{left:169.950000px;}
.x4_c01228{left:200.707500px;}
.x5_c01228{left:220.710000px;}
.x8_c01228{left:343.695000px;}
.x6_c01228{left:701.587500px;}
.x7_c01228{left:721.590000px;}
.x2_c01228{left:740.490000px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls4_c01228{letter-spacing:-0.242133pt;}
.ls2_c01228{letter-spacing:-0.161067pt;}
.ls1_c01228{letter-spacing:0.000000pt;}
.ls3_c01228{letter-spacing:0.133333pt;}
.ls0_c01228{letter-spacing:0.154880pt;}
.ws0_c01228{word-spacing:-17.792000pt;}
.ws1_c01228{word-spacing:0.000000pt;}
._10_c01228{margin-left:-4.924910pt;}
._c_c01228{margin-left:-3.755697pt;}
._d_c01228{margin-left:-2.304000pt;}
._0_c01228{margin-left:-1.236303pt;}
._2_c01228{width:0.896000pt;}
._8_c01228{width:2.684910pt;}
._1_c01228{width:3.648000pt;}
._3_c01228{width:4.672000pt;}
._f_c01228{width:6.356303pt;}
._e_c01228{width:7.296000pt;}
._12_c01228{width:8.192000pt;}
._5_c01228{width:12.480000pt;}
._4_c01228{width:13.376000pt;}
._7_c01228{width:14.621919pt;}
._6_c01228{width:15.616000pt;}
._13_c01228{width:16.652769pt;}
._11_c01228{width:19.200000pt;}
._a_c01228{width:20.864000pt;}
._9_c01228{width:22.080000pt;}
._b_c01228{width:23.488000pt;}
.fs3_c01228{font-size:34.560000pt;}
.fs2_c01228{font-size:42.880000pt;}
.fs4_c01228{font-size:53.120000pt;}
.fs0_c01228{font-size:58.880000pt;}
.fs1_c01228{font-size:64.000000pt;}
.y0_c01228{bottom:0.000000pt;}
.y3_c01228{bottom:51.232000pt;}
.y2_c01228{bottom:69.152000pt;}
.y32_c01228{bottom:97.952000pt;}
.y31_c01228{bottom:102.592000pt;}
.y30_c01228{bottom:114.112000pt;}
.y2f_c01228{bottom:131.072000pt;}
.y2e_c01228{bottom:135.706667pt;}
.y2d_c01228{bottom:148.666667pt;}
.y2b_c01228{bottom:169.146667pt;}
.y2c_c01228{bottom:174.426667pt;}
.y2a_c01228{bottom:190.266667pt;}
.y29_c01228{bottom:211.386667pt;}
.y28_c01228{bottom:232.506667pt;}
.y27_c01228{bottom:253.666667pt;}
.y26_c01228{bottom:274.946667pt;}
.y25_c01228{bottom:296.066667pt;}
.y24_c01228{bottom:317.186667pt;}
.y23_c01228{bottom:338.306667pt;}
.y22_c01228{bottom:372.866667pt;}
.y21_c01228{bottom:393.986667pt;}
.y20_c01228{bottom:415.106667pt;}
.y1f_c01228{bottom:436.386667pt;}
.y1e_c01228{bottom:457.506667pt;}
.y1d_c01228{bottom:478.626667pt;}
.y1c_c01228{bottom:499.746667pt;}
.y1b_c01228{bottom:534.333333pt;}
.y1a_c01228{bottom:555.453333pt;}
.y19_c01228{bottom:576.573333pt;}
.y18_c01228{bottom:597.853333pt;}
.y17_c01228{bottom:618.973333pt;}
.y16_c01228{bottom:640.093333pt;}
.y15_c01228{bottom:661.213333pt;}
.y14_c01228{bottom:682.493333pt;}
.y13_c01228{bottom:703.613333pt;}
.y12_c01228{bottom:724.733333pt;}
.y11_c01228{bottom:745.853333pt;}
.y10_c01228{bottom:780.453333pt;}
.yf_c01228{bottom:801.573333pt;}
.yd_c01228{bottom:822.693333pt;}
.ye_c01228{bottom:827.973333pt;}
.yc_c01228{bottom:843.973333pt;}
.yb_c01228{bottom:865.093333pt;}
.ya_c01228{bottom:886.213333pt;}
.y9_c01228{bottom:907.333333pt;}
.y8_c01228{bottom:928.613333pt;}
.y7_c01228{bottom:949.733333pt;}
.y6_c01228{bottom:970.853333pt;}
.y5_c01228{bottom:991.973333pt;}
.y4_c01228{bottom:1013.280000pt;}
.y1_c01228{bottom:1061.920000pt;}
.h7_c01228{height:26.206875pt;}
.h6_c01228{height:38.441250pt;}
.h2_c01228{height:42.722500pt;}
.h3_c01228{height:44.648750pt;}
.h8_c01228{height:56.679040pt;}
.h4_c01228{height:57.375000pt;}
.h5_c01228{height:1122.546667pt;}
.h0_c01228{height:1122.560000pt;}
.h1_c01228{height:1122.666667pt;}
.w2_c01228{width:793.740000pt;}
.w0_c01228{width:793.760000pt;}
.w1_c01228{width:794.000000pt;}
.x0_c01228{left:0.000000pt;}
.x3_c01228{left:113.472000pt;}
.x9_c01228{left:126.432000pt;}
.x1_c01228{left:151.066667pt;}
.x4_c01228{left:178.406667pt;}
.x5_c01228{left:196.186667pt;}
.x8_c01228{left:305.506667pt;}
.x6_c01228{left:623.633333pt;}
.x7_c01228{left:641.413333pt;}
.x2_c01228{left:658.213333pt;}
}





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

.ir_c01229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01229;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01229;src:url('chunks/assets/font_65354e877b483216cdb5103d.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01229;src:url('chunks/assets/font_a4c7e10411069fe754ab0ee0.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01229;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01229{font-family:ff4_c01229;line-height:1.113281;font-style:normal;font-weight: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_c01229;src:url('chunks/assets/font_1659b03cbeea1f84b66ccf57.woff2')format("woff");}.ff5_c01229{font-family:ff5_c01229;line-height:1.575000;font-style:normal;font-weight: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_c01229;src:url('chunks/assets/font_97fde57d3617512d4969f3e0.woff2')format("woff");}.ff6_c01229{font-family:ff6_c01229;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01229{vertical-align:0.000000px;}
.ls5_c01229{letter-spacing:-0.272400px;}
.ls3_c01229{letter-spacing:-0.181200px;}
.ls2_c01229{letter-spacing:0.000000px;}
.ls4_c01229{letter-spacing:0.150000px;}
.ls1_c01229{letter-spacing:0.152400px;}
.ls0_c01229{letter-spacing:0.174240px;}
.sc__c01229{text-shadow:none;}
.sc0_c01229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01229{-webkit-text-stroke:0px transparent;}
.sc0_c01229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01229{word-spacing:-21.187920px;}
.ws1_c01229{word-spacing:0.000000px;}
._7_c01229{margin-left:-5.271350px;}
._6_c01229{margin-left:-3.944650px;}
._3_c01229{margin-left:-2.810218px;}
._0_c01229{margin-left:-1.258891px;}
._2_c01229{width:1.512000px;}
._1_c01229{width:2.808000px;}
._10_c01229{width:3.830098px;}
._9_c01229{width:4.834915px;}
._8_c01229{width:5.904000px;}
._b_c01229{width:7.992000px;}
._a_c01229{width:9.792000px;}
._f_c01229{width:10.800000px;}
._e_c01229{width:11.808000px;}
._d_c01229{width:13.752000px;}
._c_c01229{width:15.336000px;}
._5_c01229{width:16.376674px;}
._4_c01229{width:17.496000px;}
.fc0_c01229{color:rgb(0,0,0);}
.fs4_c01229{font-size:38.880000px;}
.fs2_c01229{font-size:48.240000px;}
.fs5_c01229{font-size:59.760000px;}
.fs0_c01229{font-size:66.240000px;}
.fs1_c01229{font-size:72.000000px;}
.fs3_c01229{font-size:84.240000px;}
.y0_c01229{bottom:0.000000px;}
.y3_c01229{bottom:57.636000px;}
.y2_c01229{bottom:77.796000px;}
.y2b_c01229{bottom:110.196000px;}
.y2a_c01229{bottom:115.416000px;}
.y29_c01229{bottom:129.996000px;}
.y28_c01229{bottom:201.990000px;}
.y27_c01229{bottom:244.830000px;}
.y26_c01229{bottom:287.535000px;}
.y25_c01229{bottom:330.375000px;}
.y24_c01229{bottom:371.955000px;}
.y23_c01229{bottom:395.715000px;}
.y22_c01229{bottom:419.475000px;}
.y21_c01229{bottom:443.235000px;}
.y20_c01229{bottom:466.995000px;}
.y1f_c01229{bottom:490.935000px;}
.y1e_c01229{bottom:529.635000px;}
.y1d_c01229{bottom:553.575000px;}
.y1c_c01229{bottom:577.365000px;}
.y1b_c01229{bottom:601.125000px;}
.y1a_c01229{bottom:624.885000px;}
.y19_c01229{bottom:648.645000px;}
.y18_c01229{bottom:672.585000px;}
.y17_c01229{bottom:696.345000px;}
.y16_c01229{bottom:720.105000px;}
.y15_c01229{bottom:743.865000px;}
.y14_c01229{bottom:767.805000px;}
.y13_c01229{bottom:791.565000px;}
.y12_c01229{bottom:815.325000px;}
.y10_c01229{bottom:839.085000px;}
.y11_c01229{bottom:845.025000px;}
.yf_c01229{bottom:863.070000px;}
.ye_c01229{bottom:886.830000px;}
.yd_c01229{bottom:910.590000px;}
.yc_c01229{bottom:934.350000px;}
.yb_c01229{bottom:958.290000px;}
.ya_c01229{bottom:982.050000px;}
.y9_c01229{bottom:1005.810000px;}
.y8_c01229{bottom:1029.570000px;}
.y7_c01229{bottom:1068.450000px;}
.y6_c01229{bottom:1092.210000px;}
.y5_c01229{bottom:1115.970000px;}
.y4_c01229{bottom:1139.940000px;}
.y1_c01229{bottom:1194.660000px;}
.h8_c01229{height:29.482734px;}
.h6_c01229{height:43.246406px;}
.h2_c01229{height:48.062812px;}
.h3_c01229{height:50.229844px;}
.h9_c01229{height:63.763920px;}
.h4_c01229{height:64.546875px;}
.h7_c01229{height:76.054570px;}
.h5_c01229{height:1262.865000px;}
.h0_c01229{height:1262.880000px;}
.h1_c01229{height:1263.000000px;}
.w2_c01229{width:892.957500px;}
.w0_c01229{width:892.980000px;}
.w1_c01229{width:893.250000px;}
.x0_c01229{left:0.000000px;}
.x1_c01229{left:127.656000px;}
.x5_c01229{left:142.236000px;}
.x4_c01229{left:343.695000px;}
.x2_c01229{left:426.292500px;}
.x3_c01229{left:446.295000px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls5_c01229{letter-spacing:-0.242133pt;}
.ls3_c01229{letter-spacing:-0.161067pt;}
.ls2_c01229{letter-spacing:0.000000pt;}
.ls4_c01229{letter-spacing:0.133333pt;}
.ls1_c01229{letter-spacing:0.135467pt;}
.ls0_c01229{letter-spacing:0.154880pt;}
.ws0_c01229{word-spacing:-18.833707pt;}
.ws1_c01229{word-spacing:0.000000pt;}
._7_c01229{margin-left:-4.685645pt;}
._6_c01229{margin-left:-3.506355pt;}
._3_c01229{margin-left:-2.497971pt;}
._0_c01229{margin-left:-1.119014pt;}
._2_c01229{width:1.344000pt;}
._1_c01229{width:2.496000pt;}
._10_c01229{width:3.404531pt;}
._9_c01229{width:4.297702pt;}
._8_c01229{width:5.248000pt;}
._b_c01229{width:7.104000pt;}
._a_c01229{width:8.704000pt;}
._f_c01229{width:9.600000pt;}
._e_c01229{width:10.496000pt;}
._d_c01229{width:12.224000pt;}
._c_c01229{width:13.632000pt;}
._5_c01229{width:14.557043pt;}
._4_c01229{width:15.552000pt;}
.fs4_c01229{font-size:34.560000pt;}
.fs2_c01229{font-size:42.880000pt;}
.fs5_c01229{font-size:53.120000pt;}
.fs0_c01229{font-size:58.880000pt;}
.fs1_c01229{font-size:64.000000pt;}
.fs3_c01229{font-size:74.880000pt;}
.y0_c01229{bottom:0.000000pt;}
.y3_c01229{bottom:51.232000pt;}
.y2_c01229{bottom:69.152000pt;}
.y2b_c01229{bottom:97.952000pt;}
.y2a_c01229{bottom:102.592000pt;}
.y29_c01229{bottom:115.552000pt;}
.y28_c01229{bottom:179.546667pt;}
.y27_c01229{bottom:217.626667pt;}
.y26_c01229{bottom:255.586667pt;}
.y25_c01229{bottom:293.666667pt;}
.y24_c01229{bottom:330.626667pt;}
.y23_c01229{bottom:351.746667pt;}
.y22_c01229{bottom:372.866667pt;}
.y21_c01229{bottom:393.986667pt;}
.y20_c01229{bottom:415.106667pt;}
.y1f_c01229{bottom:436.386667pt;}
.y1e_c01229{bottom:470.786667pt;}
.y1d_c01229{bottom:492.066667pt;}
.y1c_c01229{bottom:513.213333pt;}
.y1b_c01229{bottom:534.333333pt;}
.y1a_c01229{bottom:555.453333pt;}
.y19_c01229{bottom:576.573333pt;}
.y18_c01229{bottom:597.853333pt;}
.y17_c01229{bottom:618.973333pt;}
.y16_c01229{bottom:640.093333pt;}
.y15_c01229{bottom:661.213333pt;}
.y14_c01229{bottom:682.493333pt;}
.y13_c01229{bottom:703.613333pt;}
.y12_c01229{bottom:724.733333pt;}
.y10_c01229{bottom:745.853333pt;}
.y11_c01229{bottom:751.133333pt;}
.yf_c01229{bottom:767.173333pt;}
.ye_c01229{bottom:788.293333pt;}
.yd_c01229{bottom:809.413333pt;}
.yc_c01229{bottom:830.533333pt;}
.yb_c01229{bottom:851.813333pt;}
.ya_c01229{bottom:872.933333pt;}
.y9_c01229{bottom:894.053333pt;}
.y8_c01229{bottom:915.173333pt;}
.y7_c01229{bottom:949.733333pt;}
.y6_c01229{bottom:970.853333pt;}
.y5_c01229{bottom:991.973333pt;}
.y4_c01229{bottom:1013.280000pt;}
.y1_c01229{bottom:1061.920000pt;}
.h8_c01229{height:26.206875pt;}
.h6_c01229{height:38.441250pt;}
.h2_c01229{height:42.722500pt;}
.h3_c01229{height:44.648750pt;}
.h9_c01229{height:56.679040pt;}
.h4_c01229{height:57.375000pt;}
.h7_c01229{height:67.604062pt;}
.h5_c01229{height:1122.546667pt;}
.h0_c01229{height:1122.560000pt;}
.h1_c01229{height:1122.666667pt;}
.w2_c01229{width:793.740000pt;}
.w0_c01229{width:793.760000pt;}
.w1_c01229{width:794.000000pt;}
.x0_c01229{left:0.000000pt;}
.x1_c01229{left:113.472000pt;}
.x5_c01229{left:126.432000pt;}
.x4_c01229{left:305.506667pt;}
.x2_c01229{left:378.926667pt;}
.x3_c01229{left:396.706667pt;}
}





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

.ir_c01230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01230;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01230;src:url('chunks/assets/font_e57e95ff0ac80b822786e108.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01230;src:url('chunks/assets/font_151da70068d6494d4f499d5d.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01230;src:url('chunks/assets/font_e37d1ce0903c8437398f260b.woff2')format("woff");}.ff4_c01230{font-family:ff4_c01230;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01230;src:url('chunks/assets/font_491de02a7bbf534ef634fbff.woff2')format("woff");}.ff5_c01230{font-family:ff5_c01230;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.ls2_c01230{letter-spacing:-0.576000px;}
.ls4_c01230{letter-spacing:-0.432000px;}
.ls1_c01230{letter-spacing:0.000000px;}
.ls3_c01230{letter-spacing:0.288000px;}
.ls5_c01230{letter-spacing:0.504000px;}
.ls0_c01230{letter-spacing:37.584000px;}
.sc__c01230{text-shadow:none;}
.sc0_c01230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01230{-webkit-text-stroke:0px transparent;}
.sc0_c01230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01230{word-spacing:-20.520000px;}
.ws1_c01230{word-spacing:0.000000px;}
._1b_c01230{margin-left:-5.233159px;}
._e_c01230{margin-left:-3.384000px;}
._0_c01230{margin-left:-1.390841px;}
._1_c01230{width:1.368000px;}
._2_c01230{width:2.507976px;}
._b_c01230{width:4.221683px;}
._5_c01230{width:5.400000px;}
._4_c01230{width:6.408000px;}
._6_c01230{width:7.632000px;}
._3_c01230{width:8.856000px;}
._8_c01230{width:10.008000px;}
._7_c01230{width:11.736000px;}
._f_c01230{width:12.960000px;}
._10_c01230{width:14.650865px;}
._d_c01230{width:16.128000px;}
._a_c01230{width:17.208000px;}
._9_c01230{width:18.288000px;}
._15_c01230{width:21.384000px;}
._14_c01230{width:23.494841px;}
._13_c01230{width:24.840000px;}
._c_c01230{width:27.792000px;}
._17_c01230{width:29.880000px;}
._1a_c01230{width:33.862841px;}
._19_c01230{width:35.136000px;}
._18_c01230{width:38.304000px;}
._12_c01230{width:40.104000px;}
._11_c01230{width:41.400000px;}
._1e_c01230{width:44.734841px;}
._16_c01230{width:45.936000px;}
._1d_c01230{width:72.216000px;}
._1c_c01230{width:73.224000px;}
.fc0_c01230{color:rgb(0,0,0);}
.fs3_c01230{font-size:59.760000px;}
.fs0_c01230{font-size:66.240000px;}
.fs2_c01230{font-size:72.000000px;}
.fs1_c01230{font-size:84.240000px;}
.y0_c01230{bottom:0.000000px;}
.y31_c01230{bottom:5.595000px;}
.y33_c01230{bottom:12.051000px;}
.y30_c01230{bottom:23.055000px;}
.y3_c01230{bottom:57.636000px;}
.y2_c01230{bottom:77.796000px;}
.y2e_c01230{bottom:124.776000px;}
.y32_c01230{bottom:132.525000px;}
.y2d_c01230{bottom:148.536000px;}
.y2c_c01230{bottom:172.290000px;}
.y2b_c01230{bottom:196.050000px;}
.y2a_c01230{bottom:219.810000px;}
.y29_c01230{bottom:243.750000px;}
.y28_c01230{bottom:267.510000px;}
.y27_c01230{bottom:291.315000px;}
.y26_c01230{bottom:315.075000px;}
.y25_c01230{bottom:339.015000px;}
.y24_c01230{bottom:362.775000px;}
.y23_c01230{bottom:386.535000px;}
.y22_c01230{bottom:410.295000px;}
.y21_c01230{bottom:434.235000px;}
.y20_c01230{bottom:457.995000px;}
.y1f_c01230{bottom:481.755000px;}
.y1e_c01230{bottom:505.515000px;}
.y2f_c01230{bottom:525.660000px;}
.y1d_c01230{bottom:544.395000px;}
.y1c_c01230{bottom:568.185000px;}
.y1b_c01230{bottom:591.945000px;}
.y1a_c01230{bottom:615.885000px;}
.y19_c01230{bottom:639.645000px;}
.y18_c01230{bottom:663.405000px;}
.y17_c01230{bottom:687.165000px;}
.y16_c01230{bottom:711.105000px;}
.y15_c01230{bottom:734.865000px;}
.y14_c01230{bottom:758.625000px;}
.y13_c01230{bottom:782.385000px;}
.y12_c01230{bottom:806.325000px;}
.y11_c01230{bottom:830.085000px;}
.y10_c01230{bottom:853.890000px;}
.yf_c01230{bottom:877.650000px;}
.ye_c01230{bottom:901.410000px;}
.yd_c01230{bottom:925.350000px;}
.yc_c01230{bottom:949.110000px;}
.yb_c01230{bottom:972.870000px;}
.ya_c01230{bottom:996.630000px;}
.y9_c01230{bottom:1020.570000px;}
.y8_c01230{bottom:1044.330000px;}
.y7_c01230{bottom:1068.090000px;}
.y6_c01230{bottom:1091.850000px;}
.y5_c01230{bottom:1113.270000px;}
.y4_c01230{bottom:1137.240000px;}
.y1_c01230{bottom:1194.660000px;}
.h8_c01230{height:25.920000px;}
.h6_c01230{height:36.720000px;}
.h2_c01230{height:48.062812px;}
.h3_c01230{height:50.229844px;}
.h7_c01230{height:53.428008px;}
.h5_c01230{height:64.546875px;}
.h4_c01230{height:87.859687px;}
.h0_c01230{height:1262.880000px;}
.h1_c01230{height:1263.000000px;}
.w2_c01230{width:273.855000px;}
.w3_c01230{width:376.815000px;}
.w0_c01230{width:892.980000px;}
.w1_c01230{width:893.250000px;}
.x0_c01230{left:0.000000px;}
.x3_c01230{left:127.656000px;}
.x1_c01230{left:169.950000px;}
.x5_c01230{left:488.415000px;}
.x4_c01230{left:514.545000px;}
.x2_c01230{left:740.490000px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls2_c01230{letter-spacing:-0.512000pt;}
.ls4_c01230{letter-spacing:-0.384000pt;}
.ls1_c01230{letter-spacing:0.000000pt;}
.ls3_c01230{letter-spacing:0.256000pt;}
.ls5_c01230{letter-spacing:0.448000pt;}
.ls0_c01230{letter-spacing:33.408000pt;}
.ws0_c01230{word-spacing:-18.240000pt;}
.ws1_c01230{word-spacing:0.000000pt;}
._1b_c01230{margin-left:-4.651697pt;}
._e_c01230{margin-left:-3.008000pt;}
._0_c01230{margin-left:-1.236303pt;}
._1_c01230{width:1.216000pt;}
._2_c01230{width:2.229312pt;}
._b_c01230{width:3.752607pt;}
._5_c01230{width:4.800000pt;}
._4_c01230{width:5.696000pt;}
._6_c01230{width:6.784000pt;}
._3_c01230{width:7.872000pt;}
._8_c01230{width:8.896000pt;}
._7_c01230{width:10.432000pt;}
._f_c01230{width:11.520000pt;}
._10_c01230{width:13.022991pt;}
._d_c01230{width:14.336000pt;}
._a_c01230{width:15.296000pt;}
._9_c01230{width:16.256000pt;}
._15_c01230{width:19.008000pt;}
._14_c01230{width:20.884303pt;}
._13_c01230{width:22.080000pt;}
._c_c01230{width:24.704000pt;}
._17_c01230{width:26.560000pt;}
._1a_c01230{width:30.100303pt;}
._19_c01230{width:31.232000pt;}
._18_c01230{width:34.048000pt;}
._12_c01230{width:35.648000pt;}
._11_c01230{width:36.800000pt;}
._1e_c01230{width:39.764303pt;}
._16_c01230{width:40.832000pt;}
._1d_c01230{width:64.192000pt;}
._1c_c01230{width:65.088000pt;}
.fs3_c01230{font-size:53.120000pt;}
.fs0_c01230{font-size:58.880000pt;}
.fs2_c01230{font-size:64.000000pt;}
.fs1_c01230{font-size:74.880000pt;}
.y0_c01230{bottom:0.000000pt;}
.y31_c01230{bottom:4.973333pt;}
.y33_c01230{bottom:10.712000pt;}
.y30_c01230{bottom:20.493333pt;}
.y3_c01230{bottom:51.232000pt;}
.y2_c01230{bottom:69.152000pt;}
.y2e_c01230{bottom:110.912000pt;}
.y32_c01230{bottom:117.800000pt;}
.y2d_c01230{bottom:132.032000pt;}
.y2c_c01230{bottom:153.146667pt;}
.y2b_c01230{bottom:174.266667pt;}
.y2a_c01230{bottom:195.386667pt;}
.y29_c01230{bottom:216.666667pt;}
.y28_c01230{bottom:237.786667pt;}
.y27_c01230{bottom:258.946667pt;}
.y26_c01230{bottom:280.066667pt;}
.y25_c01230{bottom:301.346667pt;}
.y24_c01230{bottom:322.466667pt;}
.y23_c01230{bottom:343.586667pt;}
.y22_c01230{bottom:364.706667pt;}
.y21_c01230{bottom:385.986667pt;}
.y20_c01230{bottom:407.106667pt;}
.y1f_c01230{bottom:428.226667pt;}
.y1e_c01230{bottom:449.346667pt;}
.y2f_c01230{bottom:467.253333pt;}
.y1d_c01230{bottom:483.906667pt;}
.y1c_c01230{bottom:505.053333pt;}
.y1b_c01230{bottom:526.173333pt;}
.y1a_c01230{bottom:547.453333pt;}
.y19_c01230{bottom:568.573333pt;}
.y18_c01230{bottom:589.693333pt;}
.y17_c01230{bottom:610.813333pt;}
.y16_c01230{bottom:632.093333pt;}
.y15_c01230{bottom:653.213333pt;}
.y14_c01230{bottom:674.333333pt;}
.y13_c01230{bottom:695.453333pt;}
.y12_c01230{bottom:716.733333pt;}
.y11_c01230{bottom:737.853333pt;}
.y10_c01230{bottom:759.013333pt;}
.yf_c01230{bottom:780.133333pt;}
.ye_c01230{bottom:801.253333pt;}
.yd_c01230{bottom:822.533333pt;}
.yc_c01230{bottom:843.653333pt;}
.yb_c01230{bottom:864.773333pt;}
.ya_c01230{bottom:885.893333pt;}
.y9_c01230{bottom:907.173333pt;}
.y8_c01230{bottom:928.293333pt;}
.y7_c01230{bottom:949.413333pt;}
.y6_c01230{bottom:970.533333pt;}
.y5_c01230{bottom:989.573333pt;}
.y4_c01230{bottom:1010.880000pt;}
.y1_c01230{bottom:1061.920000pt;}
.h8_c01230{height:23.040000pt;}
.h6_c01230{height:32.640000pt;}
.h2_c01230{height:42.722500pt;}
.h3_c01230{height:44.648750pt;}
.h7_c01230{height:47.491563pt;}
.h5_c01230{height:57.375000pt;}
.h4_c01230{height:78.097500pt;}
.h0_c01230{height:1122.560000pt;}
.h1_c01230{height:1122.666667pt;}
.w2_c01230{width:243.426667pt;}
.w3_c01230{width:334.946667pt;}
.w0_c01230{width:793.760000pt;}
.w1_c01230{width:794.000000pt;}
.x0_c01230{left:0.000000pt;}
.x3_c01230{left:113.472000pt;}
.x1_c01230{left:151.066667pt;}
.x5_c01230{left:434.146667pt;}
.x4_c01230{left:457.373333pt;}
.x2_c01230{left:658.213333pt;}
}





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

.ir_c01231:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01231;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01231;src:url('chunks/assets/font_e57e95ff0ac80b822786e108.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01231;src:url('chunks/assets/font_1e1655eb7e037d826cbb5c22.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01231;src:url('chunks/assets/font_9e1f54c1bbcca6760fde270b.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01231{vertical-align:0.000000px;}
.ls0_c01231{letter-spacing:0.000000px;}
.sc__c01231{text-shadow:none;}
.sc0_c01231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01231{-webkit-text-stroke:0px transparent;}
.sc0_c01231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01231{word-spacing:0.000000px;}
._a_c01231{margin-left:-5.104411px;}
._9_c01231{margin-left:-3.960000px;}
._d_c01231{margin-left:-2.693419px;}
._0_c01231{margin-left:-1.258891px;}
._2_c01231{width:1.270915px;}
._4_c01231{width:3.074170px;}
._5_c01231{width:4.320000px;}
._3_c01231{width:5.472000px;}
._1_c01231{width:6.480000px;}
._c_c01231{width:8.568000px;}
._b_c01231{width:9.720000px;}
._8_c01231{width:12.901061px;}
._7_c01231{width:14.410915px;}
._f_c01231{width:16.916674px;}
._e_c01231{width:18.000000px;}
._6_c01231{width:21.240000px;}
.fc0_c01231{color:rgb(0,0,0);}
.fs2_c01231{font-size:59.760000px;}
.fs0_c01231{font-size:66.240000px;}
.fs1_c01231{font-size:72.000000px;}
.y0_c01231{bottom:0.000000px;}
.y1c_c01231{bottom:7.200000px;}
.y3_c01231{bottom:57.636000px;}
.y2_c01231{bottom:77.796000px;}
.y1a_c01231{bottom:223.230000px;}
.y19_c01231{bottom:262.110000px;}
.y18_c01231{bottom:300.855000px;}
.y17_c01231{bottom:324.795000px;}
.y16_c01231{bottom:348.555000px;}
.y15_c01231{bottom:372.315000px;}
.y14_c01231{bottom:396.075000px;}
.y13_c01231{bottom:420.015000px;}
.y12_c01231{bottom:443.775000px;}
.y11_c01231{bottom:467.535000px;}
.y10_c01231{bottom:491.295000px;}
.yf_c01231{bottom:515.235000px;}
.ye_c01231{bottom:538.995000px;}
.yd_c01231{bottom:562.755000px;}
.yc_c01231{bottom:601.665000px;}
.y1b_c01231{bottom:611.205000px;}
.yb_c01231{bottom:636.585000px;}
.ya_c01231{bottom:996.990000px;}
.y9_c01231{bottom:1020.750000px;}
.y8_c01231{bottom:1044.690000px;}
.y7_c01231{bottom:1068.450000px;}
.y6_c01231{bottom:1092.210000px;}
.y5_c01231{bottom:1115.970000px;}
.y4_c01231{bottom:1139.940000px;}
.y1_c01231{bottom:1194.660000px;}
.h5_c01231{height:21.060000px;}
.h2_c01231{height:48.062812px;}
.h3_c01231{height:50.229844px;}
.h6_c01231{height:53.428008px;}
.h4_c01231{height:64.546875px;}
.h0_c01231{height:1262.880000px;}
.h1_c01231{height:1263.000000px;}
.w2_c01231{width:380.235000px;}
.w0_c01231{width:892.980000px;}
.w1_c01231{width:893.250000px;}
.x0_c01231{left:0.000000px;}
.x1_c01231{left:127.656000px;}
.x4_c01231{left:194.985000px;}
.x3_c01231{left:446.475000px;}
.x2_c01231{left:699.630000px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls0_c01231{letter-spacing:0.000000pt;}
.ws0_c01231{word-spacing:0.000000pt;}
._a_c01231{margin-left:-4.537254pt;}
._9_c01231{margin-left:-3.520000pt;}
._d_c01231{margin-left:-2.394150pt;}
._0_c01231{margin-left:-1.119014pt;}
._2_c01231{width:1.129702pt;}
._4_c01231{width:2.732595pt;}
._5_c01231{width:3.840000pt;}
._3_c01231{width:4.864000pt;}
._1_c01231{width:5.760000pt;}
._c_c01231{width:7.616000pt;}
._b_c01231{width:8.640000pt;}
._8_c01231{width:11.467610pt;}
._7_c01231{width:12.809702pt;}
._f_c01231{width:15.037043pt;}
._e_c01231{width:16.000000pt;}
._6_c01231{width:18.880000pt;}
.fs2_c01231{font-size:53.120000pt;}
.fs0_c01231{font-size:58.880000pt;}
.fs1_c01231{font-size:64.000000pt;}
.y0_c01231{bottom:0.000000pt;}
.y1c_c01231{bottom:6.400000pt;}
.y3_c01231{bottom:51.232000pt;}
.y2_c01231{bottom:69.152000pt;}
.y1a_c01231{bottom:198.426667pt;}
.y19_c01231{bottom:232.986667pt;}
.y18_c01231{bottom:267.426667pt;}
.y17_c01231{bottom:288.706667pt;}
.y16_c01231{bottom:309.826667pt;}
.y15_c01231{bottom:330.946667pt;}
.y14_c01231{bottom:352.066667pt;}
.y13_c01231{bottom:373.346667pt;}
.y12_c01231{bottom:394.466667pt;}
.y11_c01231{bottom:415.586667pt;}
.y10_c01231{bottom:436.706667pt;}
.yf_c01231{bottom:457.986667pt;}
.ye_c01231{bottom:479.106667pt;}
.yd_c01231{bottom:500.226667pt;}
.yc_c01231{bottom:534.813333pt;}
.y1b_c01231{bottom:543.293333pt;}
.yb_c01231{bottom:565.853333pt;}
.ya_c01231{bottom:886.213333pt;}
.y9_c01231{bottom:907.333333pt;}
.y8_c01231{bottom:928.613333pt;}
.y7_c01231{bottom:949.733333pt;}
.y6_c01231{bottom:970.853333pt;}
.y5_c01231{bottom:991.973333pt;}
.y4_c01231{bottom:1013.280000pt;}
.y1_c01231{bottom:1061.920000pt;}
.h5_c01231{height:18.720000pt;}
.h2_c01231{height:42.722500pt;}
.h3_c01231{height:44.648750pt;}
.h6_c01231{height:47.491563pt;}
.h4_c01231{height:57.375000pt;}
.h0_c01231{height:1122.560000pt;}
.h1_c01231{height:1122.666667pt;}
.w2_c01231{width:337.986667pt;}
.w0_c01231{width:793.760000pt;}
.w1_c01231{width:794.000000pt;}
.x0_c01231{left:0.000000pt;}
.x1_c01231{left:113.472000pt;}
.x4_c01231{left:173.320000pt;}
.x3_c01231{left:396.866667pt;}
.x2_c01231{left:621.893333pt;}
}





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

.ir_c01232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01232;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01232;src:url('chunks/assets/font_602747b0910f526cf399f6be.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01232;src:url('chunks/assets/font_4093060e9234f1c4e72a35d7.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01232;src:url('chunks/assets/font_60ed3866687861c0eef49baf.woff2')format("woff");}.ff4_c01232{font-family:ff4_c01232;line-height:1.575000;font-style:normal;font-weight: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_c01232;src:url('chunks/assets/font_4ec11738903d58deec87335c.woff2')format("woff");}.ff5_c01232{font-family:ff5_c01232;line-height:1.181152;font-style:normal;font-weight: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_c01232;src:url('chunks/assets/font_e9373d72dff9daebdf9d72b5.woff2')format("woff");}.ff6_c01232{font-family:ff6_c01232;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01232{vertical-align:0.000000px;}
.ls1_c01232{letter-spacing:-0.576000px;}
.ls4_c01232{letter-spacing:-0.247800px;}
.ls2_c01232{letter-spacing:-0.181200px;}
.ls0_c01232{letter-spacing:0.000000px;}
.ls3_c01232{letter-spacing:0.150000px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01232{word-spacing:0.000000px;}
._1_c01232{margin-left:-3.456000px;}
._0_c01232{margin-left:-1.390841px;}
._4_c01232{width:1.178341px;}
._3_c01232{width:2.264380px;}
._2_c01232{width:3.864024px;}
._7_c01232{width:5.832000px;}
._6_c01232{width:7.992000px;}
._5_c01232{width:9.144000px;}
._8_c01232{width:10.584000px;}
._c_c01232{width:12.456000px;}
._d_c01232{width:14.494841px;}
._b_c01232{width:15.624000px;}
._9_c01232{width:18.310841px;}
._a_c01232{width:21.168000px;}
._e_c01232{width:25.740604px;}
._f_c01232{width:27.250545px;}
.fc0_c01232{color:rgb(0,0,0);}
.fs3_c01232{font-size:38.880000px;}
.fs2_c01232{font-size:48.240000px;}
.fs4_c01232{font-size:59.760000px;}
.fs0_c01232{font-size:66.240000px;}
.fs1_c01232{font-size:72.000000px;}
.y0_c01232{bottom:0.000000px;}
.y25_c01232{bottom:14.205000px;}
.y3_c01232{bottom:57.636000px;}
.y2_c01232{bottom:77.796000px;}
.y23_c01232{bottom:109.296000px;}
.y22_c01232{bottom:127.476000px;}
.y21_c01232{bottom:132.696000px;}
.y20_c01232{bottom:147.276000px;}
.y1f_c01232{bottom:196.410000px;}
.y1e_c01232{bottom:220.170000px;}
.y1d_c01232{bottom:243.930000px;}
.y1c_c01232{bottom:267.870000px;}
.y1b_c01232{bottom:291.675000px;}
.y1a_c01232{bottom:315.435000px;}
.y19_c01232{bottom:339.195000px;}
.y18_c01232{bottom:363.135000px;}
.y17_c01232{bottom:386.895000px;}
.y15_c01232{bottom:410.655000px;}
.y16_c01232{bottom:416.595000px;}
.y14_c01232{bottom:434.415000px;}
.y13_c01232{bottom:458.175000px;}
.y12_c01232{bottom:482.115000px;}
.y11_c01232{bottom:505.875000px;}
.y10_c01232{bottom:529.635000px;}
.yf_c01232{bottom:553.395000px;}
.ye_c01232{bottom:577.365000px;}
.yd_c01232{bottom:601.125000px;}
.yc_c01232{bottom:639.825000px;}
.yb_c01232{bottom:663.765000px;}
.ya_c01232{bottom:687.525000px;}
.y9_c01232{bottom:711.285000px;}
.y8_c01232{bottom:735.045000px;}
.y7_c01232{bottom:758.985000px;}
.y6_c01232{bottom:782.745000px;}
.y24_c01232{bottom:820.920000px;}
.y5_c01232{bottom:821.445000px;}
.y4_c01232{bottom:856.410000px;}
.y1_c01232{bottom:1194.660000px;}
.h9_c01232{height:28.102500px;}
.h7_c01232{height:41.484960px;}
.h6_c01232{height:43.246406px;}
.h2_c01232{height:48.062812px;}
.h3_c01232{height:50.229844px;}
.ha_c01232{height:53.428008px;}
.h8_c01232{height:63.763920px;}
.h4_c01232{height:64.546875px;}
.h5_c01232{height:1262.865000px;}
.h0_c01232{height:1262.880000px;}
.h1_c01232{height:1263.000000px;}
.w3_c01232{width:393.375000px;}
.w2_c01232{width:892.957500px;}
.w0_c01232{width:892.980000px;}
.w1_c01232{width:893.250000px;}
.x0_c01232{left:0.000000px;}
.x3_c01232{left:127.656000px;}
.x8_c01232{left:146.016000px;}
.x1_c01232{left:169.950000px;}
.x9_c01232{left:191.205000px;}
.x7_c01232{left:343.695000px;}
.x4_c01232{left:701.970000px;}
.x5_c01232{left:712.207500px;}
.x6_c01232{left:732.210000px;}
.x2_c01232{left:740.490000px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls1_c01232{letter-spacing:-0.512000pt;}
.ls4_c01232{letter-spacing:-0.220267pt;}
.ls2_c01232{letter-spacing:-0.161067pt;}
.ls0_c01232{letter-spacing:0.000000pt;}
.ls3_c01232{letter-spacing:0.133333pt;}
.ws0_c01232{word-spacing:0.000000pt;}
._1_c01232{margin-left:-3.072000pt;}
._0_c01232{margin-left:-1.236303pt;}
._4_c01232{width:1.047415pt;}
._3_c01232{width:2.012782pt;}
._2_c01232{width:3.434688pt;}
._7_c01232{width:5.184000pt;}
._6_c01232{width:7.104000pt;}
._5_c01232{width:8.128000pt;}
._8_c01232{width:9.408000pt;}
._c_c01232{width:11.072000pt;}
._d_c01232{width:12.884303pt;}
._b_c01232{width:13.888000pt;}
._9_c01232{width:16.276303pt;}
._a_c01232{width:18.816000pt;}
._e_c01232{width:22.880537pt;}
._f_c01232{width:24.222707pt;}
.fs3_c01232{font-size:34.560000pt;}
.fs2_c01232{font-size:42.880000pt;}
.fs4_c01232{font-size:53.120000pt;}
.fs0_c01232{font-size:58.880000pt;}
.fs1_c01232{font-size:64.000000pt;}
.y0_c01232{bottom:0.000000pt;}
.y25_c01232{bottom:12.626667pt;}
.y3_c01232{bottom:51.232000pt;}
.y2_c01232{bottom:69.152000pt;}
.y23_c01232{bottom:97.152000pt;}
.y22_c01232{bottom:113.312000pt;}
.y21_c01232{bottom:117.952000pt;}
.y20_c01232{bottom:130.912000pt;}
.y1f_c01232{bottom:174.586667pt;}
.y1e_c01232{bottom:195.706667pt;}
.y1d_c01232{bottom:216.826667pt;}
.y1c_c01232{bottom:238.106667pt;}
.y1b_c01232{bottom:259.266667pt;}
.y1a_c01232{bottom:280.386667pt;}
.y19_c01232{bottom:301.506667pt;}
.y18_c01232{bottom:322.786667pt;}
.y17_c01232{bottom:343.906667pt;}
.y15_c01232{bottom:365.026667pt;}
.y16_c01232{bottom:370.306667pt;}
.y14_c01232{bottom:386.146667pt;}
.y13_c01232{bottom:407.266667pt;}
.y12_c01232{bottom:428.546667pt;}
.y11_c01232{bottom:449.666667pt;}
.y10_c01232{bottom:470.786667pt;}
.yf_c01232{bottom:491.906667pt;}
.ye_c01232{bottom:513.213333pt;}
.yd_c01232{bottom:534.333333pt;}
.yc_c01232{bottom:568.733333pt;}
.yb_c01232{bottom:590.013333pt;}
.ya_c01232{bottom:611.133333pt;}
.y9_c01232{bottom:632.253333pt;}
.y8_c01232{bottom:653.373333pt;}
.y7_c01232{bottom:674.653333pt;}
.y6_c01232{bottom:695.773333pt;}
.y24_c01232{bottom:729.706667pt;}
.y5_c01232{bottom:730.173333pt;}
.y4_c01232{bottom:761.253333pt;}
.y1_c01232{bottom:1061.920000pt;}
.h9_c01232{height:24.980000pt;}
.h7_c01232{height:36.875520pt;}
.h6_c01232{height:38.441250pt;}
.h2_c01232{height:42.722500pt;}
.h3_c01232{height:44.648750pt;}
.ha_c01232{height:47.491563pt;}
.h8_c01232{height:56.679040pt;}
.h4_c01232{height:57.375000pt;}
.h5_c01232{height:1122.546667pt;}
.h0_c01232{height:1122.560000pt;}
.h1_c01232{height:1122.666667pt;}
.w3_c01232{width:349.666667pt;}
.w2_c01232{width:793.740000pt;}
.w0_c01232{width:793.760000pt;}
.w1_c01232{width:794.000000pt;}
.x0_c01232{left:0.000000pt;}
.x3_c01232{left:113.472000pt;}
.x8_c01232{left:129.792000pt;}
.x1_c01232{left:151.066667pt;}
.x9_c01232{left:169.960000pt;}
.x7_c01232{left:305.506667pt;}
.x4_c01232{left:623.973333pt;}
.x5_c01232{left:633.073333pt;}
.x6_c01232{left:650.853333pt;}
.x2_c01232{left:658.213333pt;}
}





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

.ir_c01233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01233;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01233;src:url('chunks/assets/font_d55407b960d53983c6e7f63f.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01233;src:url('chunks/assets/font_aa5ddac7cdd66b612229b1f7.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01233;src:url('chunks/assets/font_f112115473491df6a5f6e1d7.woff2')format("woff");}.ff4_c01233{font-family:ff4_c01233;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01233{vertical-align:0.000000px;}
.ls1_c01233{letter-spacing:0.000000px;}
.ls0_c01233{letter-spacing:0.144000px;}
.ls2_c01233{letter-spacing:0.288000px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01233{word-spacing:-20.304000px;}
.ws1_c01233{word-spacing:0.000000px;}
._9_c01233{margin-left:-2.289067px;}
._0_c01233{margin-left:-1.258891px;}
._3_c01233{width:1.067976px;}
._5_c01233{width:2.424240px;}
._2_c01233{width:3.744000px;}
._1_c01233{width:4.824000px;}
._b_c01233{width:6.060024px;}
._7_c01233{width:7.344000px;}
._6_c01233{width:8.784000px;}
._c_c01233{width:9.984096px;}
._4_c01233{width:14.472000px;}
._a_c01233{width:22.104000px;}
._8_c01233{width:1155.900000px;}
.fc0_c01233{color:rgb(0,0,0);}
.fs2_c01233{font-size:59.760000px;}
.fs0_c01233{font-size:66.240000px;}
.fs1_c01233{font-size:72.000000px;}
.y0_c01233{bottom:0.000000px;}
.y1d_c01233{bottom:18.375000px;}
.y3_c01233{bottom:57.636000px;}
.y2_c01233{bottom:77.796000px;}
.y1b_c01233{bottom:139.896000px;}
.y1a_c01233{bottom:178.590000px;}
.y19_c01233{bottom:217.470000px;}
.y18_c01233{bottom:241.230000px;}
.y17_c01233{bottom:264.990000px;}
.y16_c01233{bottom:288.975000px;}
.y15_c01233{bottom:312.735000px;}
.y14_c01233{bottom:336.495000px;}
.y13_c01233{bottom:360.255000px;}
.y12_c01233{bottom:384.195000px;}
.y11_c01233{bottom:407.955000px;}
.y10_c01233{bottom:431.715000px;}
.yf_c01233{bottom:455.475000px;}
.y1c_c01233{bottom:492.180000px;}
.y1e_c01233{bottom:492.540000px;}
.ye_c01233{bottom:494.355000px;}
.yd_c01233{bottom:529.275000px;}
.yc_c01233{bottom:934.350000px;}
.yb_c01233{bottom:958.290000px;}
.ya_c01233{bottom:982.050000px;}
.y9_c01233{bottom:1005.810000px;}
.y8_c01233{bottom:1029.570000px;}
.y7_c01233{bottom:1053.510000px;}
.y6_c01233{bottom:1077.270000px;}
.y5_c01233{bottom:1115.970000px;}
.y4_c01233{bottom:1139.940000px;}
.y1_c01233{bottom:1194.660000px;}
.h5_c01233{height:32.220000px;}
.h2_c01233{height:48.062812px;}
.h3_c01233{height:50.229844px;}
.h6_c01233{height:53.428008px;}
.h4_c01233{height:64.546875px;}
.h0_c01233{height:1262.880000px;}
.h1_c01233{height:1263.000000px;}
.w2_c01233{width:216.030000px;}
.w3_c01233{width:290.055000px;}
.w0_c01233{width:892.980000px;}
.w1_c01233{width:893.250000px;}
.x0_c01233{left:0.000000px;}
.x1_c01233{left:127.656000px;}
.x4_c01233{left:158.445000px;}
.x3_c01233{left:410.835000px;}
.x2_c01233{left:437.655000px;}
.x5_c01233{left:449.355000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls1_c01233{letter-spacing:0.000000pt;}
.ls0_c01233{letter-spacing:0.128000pt;}
.ls2_c01233{letter-spacing:0.256000pt;}
.ws0_c01233{word-spacing:-18.048000pt;}
.ws1_c01233{word-spacing:0.000000pt;}
._9_c01233{margin-left:-2.034726pt;}
._0_c01233{margin-left:-1.119014pt;}
._3_c01233{width:0.949312pt;}
._5_c01233{width:2.154880pt;}
._2_c01233{width:3.328000pt;}
._1_c01233{width:4.288000pt;}
._b_c01233{width:5.386688pt;}
._7_c01233{width:6.528000pt;}
._6_c01233{width:7.808000pt;}
._c_c01233{width:8.874752pt;}
._4_c01233{width:12.864000pt;}
._a_c01233{width:19.648000pt;}
._8_c01233{width:1027.466667pt;}
.fs2_c01233{font-size:53.120000pt;}
.fs0_c01233{font-size:58.880000pt;}
.fs1_c01233{font-size:64.000000pt;}
.y0_c01233{bottom:0.000000pt;}
.y1d_c01233{bottom:16.333333pt;}
.y3_c01233{bottom:51.232000pt;}
.y2_c01233{bottom:69.152000pt;}
.y1b_c01233{bottom:124.352000pt;}
.y1a_c01233{bottom:158.746667pt;}
.y19_c01233{bottom:193.306667pt;}
.y18_c01233{bottom:214.426667pt;}
.y17_c01233{bottom:235.546667pt;}
.y16_c01233{bottom:256.866667pt;}
.y15_c01233{bottom:277.986667pt;}
.y14_c01233{bottom:299.106667pt;}
.y13_c01233{bottom:320.226667pt;}
.y12_c01233{bottom:341.506667pt;}
.y11_c01233{bottom:362.626667pt;}
.y10_c01233{bottom:383.746667pt;}
.yf_c01233{bottom:404.866667pt;}
.y1c_c01233{bottom:437.493333pt;}
.y1e_c01233{bottom:437.813333pt;}
.ye_c01233{bottom:439.426667pt;}
.yd_c01233{bottom:470.466667pt;}
.yc_c01233{bottom:830.533333pt;}
.yb_c01233{bottom:851.813333pt;}
.ya_c01233{bottom:872.933333pt;}
.y9_c01233{bottom:894.053333pt;}
.y8_c01233{bottom:915.173333pt;}
.y7_c01233{bottom:936.453333pt;}
.y6_c01233{bottom:957.573333pt;}
.y5_c01233{bottom:991.973333pt;}
.y4_c01233{bottom:1013.280000pt;}
.y1_c01233{bottom:1061.920000pt;}
.h5_c01233{height:28.640000pt;}
.h2_c01233{height:42.722500pt;}
.h3_c01233{height:44.648750pt;}
.h6_c01233{height:47.491563pt;}
.h4_c01233{height:57.375000pt;}
.h0_c01233{height:1122.560000pt;}
.h1_c01233{height:1122.666667pt;}
.w2_c01233{width:192.026667pt;}
.w3_c01233{width:257.826667pt;}
.w0_c01233{width:793.760000pt;}
.w1_c01233{width:794.000000pt;}
.x0_c01233{left:0.000000pt;}
.x1_c01233{left:113.472000pt;}
.x4_c01233{left:140.840000pt;}
.x3_c01233{left:365.186667pt;}
.x2_c01233{left:389.026667pt;}
.x5_c01233{left:399.426667pt;}
}





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

.ir_c01234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01234;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01234;src:url('chunks/assets/font_97962d7899f2a55cc7b66cbf.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01234;src:url('chunks/assets/font_217f4aa94ea3468cfea4b1f9.woff2')format("woff");}.ff3_c01234{font-family:ff3_c01234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01234;src:url('chunks/assets/font_dfde73aa470989ebd4200fed.woff2')format("woff");}.ff4_c01234{font-family:ff4_c01234;line-height:1.106934;font-style:normal;font-weight: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_c01234;src:url('chunks/assets/font_01dde27552d7d214914a554e.woff2')format("woff");}.ff5_c01234{font-family:ff5_c01234;line-height:1.575000;font-style:normal;font-weight: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_c01234;src:url('chunks/assets/font_6d2c7493a7ac32df122745e8.woff2')format("woff");}.ff6_c01234{font-family:ff6_c01234;line-height:1.181152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01234{vertical-align:0.000000px;}
.ls6_c01234{letter-spacing:-0.272400px;}
.ls4_c01234{letter-spacing:-0.181200px;}
.ls3_c01234{letter-spacing:0.000000px;}
.ls5_c01234{letter-spacing:0.150000px;}
.ls2_c01234{letter-spacing:0.152400px;}
.ls0_c01234{letter-spacing:0.288000px;}
.ls1_c01234{letter-spacing:17.454240px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01234{word-spacing:-21.187920px;}
.ws0_c01234{word-spacing:-20.304000px;}
.ws2_c01234{word-spacing:0.000000px;}
._d_c01234{margin-left:-3.436635px;}
._e_c01234{margin-left:-2.425159px;}
._0_c01234{margin-left:-1.390841px;}
._3_c01234{width:1.152000px;}
._c_c01234{width:2.830841px;}
._b_c01234{width:3.888000px;}
._10_c01234{width:4.896000px;}
._8_c01234{width:5.949683px;}
._7_c01234{width:6.984000px;}
._4_c01234{width:8.856000px;}
._f_c01234{width:9.864000px;}
._a_c01234{width:13.824000px;}
._9_c01234{width:15.408000px;}
._2_c01234{width:21.096000px;}
._1_c01234{width:22.320000px;}
._6_c01234{width:25.533683px;}
._5_c01234{width:26.640000px;}
.fc0_c01234{color:rgb(0,0,0);}
.fs4_c01234{font-size:38.880000px;}
.fs3_c01234{font-size:48.240000px;}
.fs5_c01234{font-size:59.760000px;}
.fs0_c01234{font-size:66.240000px;}
.fs2_c01234{font-size:72.000000px;}
.fs1_c01234{font-size:84.240000px;}
.y0_c01234{bottom:0.000000px;}
.y3_c01234{bottom:57.636000px;}
.y2_c01234{bottom:77.796000px;}
.y20_c01234{bottom:109.296000px;}
.y1f_c01234{bottom:128.376000px;}
.y1e_c01234{bottom:133.596000px;}
.y1d_c01234{bottom:148.176000px;}
.y1c_c01234{bottom:562.035000px;}
.y1b_c01234{bottom:600.765000px;}
.y1a_c01234{bottom:624.705000px;}
.y19_c01234{bottom:648.465000px;}
.y18_c01234{bottom:672.225000px;}
.y17_c01234{bottom:695.985000px;}
.y16_c01234{bottom:719.745000px;}
.y15_c01234{bottom:743.685000px;}
.y14_c01234{bottom:767.445000px;}
.y12_c01234{bottom:806.325000px;}
.y13_c01234{bottom:812.265000px;}
.y11_c01234{bottom:830.085000px;}
.y10_c01234{bottom:853.890000px;}
.yf_c01234{bottom:877.650000px;}
.ye_c01234{bottom:901.410000px;}
.yd_c01234{bottom:925.350000px;}
.yc_c01234{bottom:949.110000px;}
.yb_c01234{bottom:972.870000px;}
.ya_c01234{bottom:996.630000px;}
.y9_c01234{bottom:1020.570000px;}
.y8_c01234{bottom:1044.330000px;}
.y7_c01234{bottom:1068.090000px;}
.y6_c01234{bottom:1091.850000px;}
.y5_c01234{bottom:1113.270000px;}
.y4_c01234{bottom:1137.240000px;}
.y1_c01234{bottom:1194.660000px;}
.h8_c01234{height:29.482734px;}
.h7_c01234{height:43.246406px;}
.h2_c01234{height:48.062812px;}
.h3_c01234{height:50.229844px;}
.h9_c01234{height:63.763920px;}
.h5_c01234{height:64.546875px;}
.h4_c01234{height:87.859687px;}
.h6_c01234{height:1262.865000px;}
.h0_c01234{height:1262.880000px;}
.h1_c01234{height:1263.000000px;}
.w2_c01234{width:892.957500px;}
.w0_c01234{width:892.980000px;}
.w1_c01234{width:893.250000px;}
.x0_c01234{left:0.000000px;}
.x3_c01234{left:127.656000px;}
.x7_c01234{left:142.236000px;}
.x1_c01234{left:169.950000px;}
.x6_c01234{left:343.695000px;}
.x4_c01234{left:704.287500px;}
.x5_c01234{left:724.290000px;}
.x2_c01234{left:740.490000px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.ls6_c01234{letter-spacing:-0.242133pt;}
.ls4_c01234{letter-spacing:-0.161067pt;}
.ls3_c01234{letter-spacing:0.000000pt;}
.ls5_c01234{letter-spacing:0.133333pt;}
.ls2_c01234{letter-spacing:0.135467pt;}
.ls0_c01234{letter-spacing:0.256000pt;}
.ls1_c01234{letter-spacing:15.514880pt;}
.ws1_c01234{word-spacing:-18.833707pt;}
.ws0_c01234{word-spacing:-18.048000pt;}
.ws2_c01234{word-spacing:0.000000pt;}
._d_c01234{margin-left:-3.054787pt;}
._e_c01234{margin-left:-2.155697pt;}
._0_c01234{margin-left:-1.236303pt;}
._3_c01234{width:1.024000pt;}
._c_c01234{width:2.516303pt;}
._b_c01234{width:3.456000pt;}
._10_c01234{width:4.352000pt;}
._8_c01234{width:5.288607pt;}
._7_c01234{width:6.208000pt;}
._4_c01234{width:7.872000pt;}
._f_c01234{width:8.768000pt;}
._a_c01234{width:12.288000pt;}
._9_c01234{width:13.696000pt;}
._2_c01234{width:18.752000pt;}
._1_c01234{width:19.840000pt;}
._6_c01234{width:22.696607pt;}
._5_c01234{width:23.680000pt;}
.fs4_c01234{font-size:34.560000pt;}
.fs3_c01234{font-size:42.880000pt;}
.fs5_c01234{font-size:53.120000pt;}
.fs0_c01234{font-size:58.880000pt;}
.fs2_c01234{font-size:64.000000pt;}
.fs1_c01234{font-size:74.880000pt;}
.y0_c01234{bottom:0.000000pt;}
.y3_c01234{bottom:51.232000pt;}
.y2_c01234{bottom:69.152000pt;}
.y20_c01234{bottom:97.152000pt;}
.y1f_c01234{bottom:114.112000pt;}
.y1e_c01234{bottom:118.752000pt;}
.y1d_c01234{bottom:131.712000pt;}
.y1c_c01234{bottom:499.586667pt;}
.y1b_c01234{bottom:534.013333pt;}
.y1a_c01234{bottom:555.293333pt;}
.y19_c01234{bottom:576.413333pt;}
.y18_c01234{bottom:597.533333pt;}
.y17_c01234{bottom:618.653333pt;}
.y16_c01234{bottom:639.773333pt;}
.y15_c01234{bottom:661.053333pt;}
.y14_c01234{bottom:682.173333pt;}
.y12_c01234{bottom:716.733333pt;}
.y13_c01234{bottom:722.013333pt;}
.y11_c01234{bottom:737.853333pt;}
.y10_c01234{bottom:759.013333pt;}
.yf_c01234{bottom:780.133333pt;}
.ye_c01234{bottom:801.253333pt;}
.yd_c01234{bottom:822.533333pt;}
.yc_c01234{bottom:843.653333pt;}
.yb_c01234{bottom:864.773333pt;}
.ya_c01234{bottom:885.893333pt;}
.y9_c01234{bottom:907.173333pt;}
.y8_c01234{bottom:928.293333pt;}
.y7_c01234{bottom:949.413333pt;}
.y6_c01234{bottom:970.533333pt;}
.y5_c01234{bottom:989.573333pt;}
.y4_c01234{bottom:1010.880000pt;}
.y1_c01234{bottom:1061.920000pt;}
.h8_c01234{height:26.206875pt;}
.h7_c01234{height:38.441250pt;}
.h2_c01234{height:42.722500pt;}
.h3_c01234{height:44.648750pt;}
.h9_c01234{height:56.679040pt;}
.h5_c01234{height:57.375000pt;}
.h4_c01234{height:78.097500pt;}
.h6_c01234{height:1122.546667pt;}
.h0_c01234{height:1122.560000pt;}
.h1_c01234{height:1122.666667pt;}
.w2_c01234{width:793.740000pt;}
.w0_c01234{width:793.760000pt;}
.w1_c01234{width:794.000000pt;}
.x0_c01234{left:0.000000pt;}
.x3_c01234{left:113.472000pt;}
.x7_c01234{left:126.432000pt;}
.x1_c01234{left:151.066667pt;}
.x6_c01234{left:305.506667pt;}
.x4_c01234{left:626.033333pt;}
.x5_c01234{left:643.813333pt;}
.x2_c01234{left:658.213333pt;}
}





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

.ir_c01235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01235;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01235;src:url('chunks/assets/font_2c9862a8575f3c46b90004ea.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01235;src:url('chunks/assets/font_e491aece85030f4991b9dc23.woff2')format("woff");}.ff3_c01235{font-family:ff3_c01235;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01235;src:url('chunks/assets/font_15bf40ed405a1a893b70a949.woff2')format("woff");}.ff4_c01235{font-family:ff4_c01235;line-height:1.113281;font-style:normal;font-weight: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_c01235;src:url('chunks/assets/font_60f1400fa6bca4c32e8af87e.woff2')format("woff");}.ff5_c01235{font-family:ff5_c01235;line-height:1.106934;font-style:normal;font-weight: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_c01235;src:url('chunks/assets/font_81752e516a13321d352b06fc.woff2')format("woff");}.ff6_c01235{font-family:ff6_c01235;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01235{vertical-align:0.000000px;}
.ls1_c01235{letter-spacing:0.000000px;}
.ls0_c01235{letter-spacing:0.189360px;}
.sc__c01235{text-shadow:none;}
.sc0_c01235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01235{-webkit-text-stroke:0px transparent;}
.sc0_c01235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01235{word-spacing:-20.016000px;}
.ws1_c01235{word-spacing:0.000000px;}
._c_c01235{margin-left:-2.443738px;}
._0_c01235{margin-left:-1.258891px;}
._1_c01235{width:1.308024px;}
._2_c01235{width:2.952000px;}
._5_c01235{width:10.872000px;}
._4_c01235{width:12.960000px;}
._3_c01235{width:13.968000px;}
._7_c01235{width:15.408000px;}
._8_c01235{width:16.810891px;}
._6_c01235{width:18.648000px;}
._d_c01235{width:27.862867px;}
._b_c01235{width:34.200000px;}
._a_c01235{width:42.336000px;}
._9_c01235{width:43.344000px;}
._10_c01235{width:45.648000px;}
._f_c01235{width:47.376000px;}
._e_c01235{width:48.384000px;}
.fc0_c01235{color:rgb(0,0,0);}
.fs3_c01235{font-size:59.760000px;}
.fs0_c01235{font-size:66.240000px;}
.fs2_c01235{font-size:72.000000px;}
.fs1_c01235{font-size:84.240000px;}
.fs4_c01235{font-size:95.760000px;}
.y0_c01235{bottom:0.000000px;}
.y2f_c01235{bottom:4.125000px;}
.y2d_c01235{bottom:4.845000px;}
.y31_c01235{bottom:7.755000px;}
.y26_c01235{bottom:21.960000px;}
.y1f_c01235{bottom:31.320000px;}
.y20_c01235{bottom:34.020000px;}
.y28_c01235{bottom:36.720000px;}
.y2a_c01235{bottom:43.065000px;}
.y25_c01235{bottom:45.720000px;}
.y2b_c01235{bottom:45.765000px;}
.y3_c01235{bottom:57.636000px;}
.y23_c01235{bottom:66.960000px;}
.y24_c01235{bottom:69.660000px;}
.y2_c01235{bottom:77.796000px;}
.y1d_c01235{bottom:147.816000px;}
.y2e_c01235{bottom:155.205000px;}
.y1c_c01235{bottom:186.510000px;}
.y1b_c01235{bottom:210.450000px;}
.y1a_c01235{bottom:234.210000px;}
.y19_c01235{bottom:258.150000px;}
.y18_c01235{bottom:281.955000px;}
.y17_c01235{bottom:305.895000px;}
.y16_c01235{bottom:329.475000px;}
.y15_c01235{bottom:353.235000px;}
.y14_c01235{bottom:376.995000px;}
.y13_c01235{bottom:400.935000px;}
.y12_c01235{bottom:424.695000px;}
.y11_c01235{bottom:448.455000px;}
.y10_c01235{bottom:472.215000px;}
.yf_c01235{bottom:496.335000px;}
.ye_c01235{bottom:520.095000px;}
.yd_c01235{bottom:543.675000px;}
.yc_c01235{bottom:567.465000px;}
.yb_c01235{bottom:591.225000px;}
.ya_c01235{bottom:615.165000px;}
.y9_c01235{bottom:638.925000px;}
.y8_c01235{bottom:677.805000px;}
.y7_c01235{bottom:716.505000px;}
.y2c_c01235{bottom:745.320000px;}
.y6_c01235{bottom:755.385000px;}
.y5_c01235{bottom:795.345000px;}
.y29_c01235{bottom:820.905000px;}
.y27_c01235{bottom:883.410000px;}
.y22_c01235{bottom:936.870000px;}
.y21_c01235{bottom:1023.270000px;}
.y30_c01235{bottom:1027.035000px;}
.y1e_c01235{bottom:1074.030000px;}
.y4_c01235{bottom:1137.240000px;}
.y1_c01235{bottom:1194.660000px;}
.hf_c01235{height:18.000000px;}
.h11_c01235{height:21.600000px;}
.hd_c01235{height:27.000000px;}
.h2_c01235{height:48.062812px;}
.h3_c01235{height:50.229844px;}
.h9_c01235{height:50.745000px;}
.h10_c01235{height:53.428008px;}
.hb_c01235{height:53.445000px;}
.h12_c01235{height:53.953242px;}
.hc_c01235{height:62.482500px;}
.h8_c01235{height:64.546875px;}
.h7_c01235{height:65.003906px;}
.h6_c01235{height:75.093750px;}
.h5_c01235{height:76.054570px;}
.ha_c01235{height:86.385000px;}
.h4_c01235{height:87.859687px;}
.he_c01235{height:99.874688px;}
.h0_c01235{height:1262.880000px;}
.h1_c01235{height:1263.000000px;}
.w6_c01235{width:26.640000px;}
.w2_c01235{width:55.620000px;}
.w5_c01235{width:283.575000px;}
.w4_c01235{width:291.810000px;}
.w3_c01235{width:303.375000px;}
.w0_c01235{width:892.980000px;}
.w1_c01235{width:893.250000px;}
.x0_c01235{left:0.000000px;}
.x5_c01235{left:8.100000px;}
.xa_c01235{left:10.800000px;}
.x1_c01235{left:127.656000px;}
.x7_c01235{left:131.265000px;}
.x9_c01235{left:349.635000px;}
.x2_c01235{left:426.315000px;}
.x4_c01235{left:427.395000px;}
.x3_c01235{left:434.955000px;}
.x8_c01235{left:480.675000px;}
.x6_c01235{left:483.015000px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls1_c01235{letter-spacing:0.000000pt;}
.ls0_c01235{letter-spacing:0.168320pt;}
.ws0_c01235{word-spacing:-17.792000pt;}
.ws1_c01235{word-spacing:0.000000pt;}
._c_c01235{margin-left:-2.172211pt;}
._0_c01235{margin-left:-1.119014pt;}
._1_c01235{width:1.162688pt;}
._2_c01235{width:2.624000pt;}
._5_c01235{width:9.664000pt;}
._4_c01235{width:11.520000pt;}
._3_c01235{width:12.416000pt;}
._7_c01235{width:13.696000pt;}
._8_c01235{width:14.943014pt;}
._6_c01235{width:16.576000pt;}
._d_c01235{width:24.766993pt;}
._b_c01235{width:30.400000pt;}
._a_c01235{width:37.632000pt;}
._9_c01235{width:38.528000pt;}
._10_c01235{width:40.576000pt;}
._f_c01235{width:42.112000pt;}
._e_c01235{width:43.008000pt;}
.fs3_c01235{font-size:53.120000pt;}
.fs0_c01235{font-size:58.880000pt;}
.fs2_c01235{font-size:64.000000pt;}
.fs1_c01235{font-size:74.880000pt;}
.fs4_c01235{font-size:85.120000pt;}
.y0_c01235{bottom:0.000000pt;}
.y2f_c01235{bottom:3.666667pt;}
.y2d_c01235{bottom:4.306667pt;}
.y31_c01235{bottom:6.893333pt;}
.y26_c01235{bottom:19.520000pt;}
.y1f_c01235{bottom:27.840000pt;}
.y20_c01235{bottom:30.240000pt;}
.y28_c01235{bottom:32.640000pt;}
.y2a_c01235{bottom:38.280000pt;}
.y25_c01235{bottom:40.640000pt;}
.y2b_c01235{bottom:40.680000pt;}
.y3_c01235{bottom:51.232000pt;}
.y23_c01235{bottom:59.520000pt;}
.y24_c01235{bottom:61.920000pt;}
.y2_c01235{bottom:69.152000pt;}
.y1d_c01235{bottom:131.392000pt;}
.y2e_c01235{bottom:137.960000pt;}
.y1c_c01235{bottom:165.786667pt;}
.y1b_c01235{bottom:187.066667pt;}
.y1a_c01235{bottom:208.186667pt;}
.y19_c01235{bottom:229.466667pt;}
.y18_c01235{bottom:250.626667pt;}
.y17_c01235{bottom:271.906667pt;}
.y16_c01235{bottom:292.866667pt;}
.y15_c01235{bottom:313.986667pt;}
.y14_c01235{bottom:335.106667pt;}
.y13_c01235{bottom:356.386667pt;}
.y12_c01235{bottom:377.506667pt;}
.y11_c01235{bottom:398.626667pt;}
.y10_c01235{bottom:419.746667pt;}
.yf_c01235{bottom:441.186667pt;}
.ye_c01235{bottom:462.306667pt;}
.yd_c01235{bottom:483.266667pt;}
.yc_c01235{bottom:504.413333pt;}
.yb_c01235{bottom:525.533333pt;}
.ya_c01235{bottom:546.813333pt;}
.y9_c01235{bottom:567.933333pt;}
.y8_c01235{bottom:602.493333pt;}
.y7_c01235{bottom:636.893333pt;}
.y2c_c01235{bottom:662.506667pt;}
.y6_c01235{bottom:671.453333pt;}
.y5_c01235{bottom:706.973333pt;}
.y29_c01235{bottom:729.693333pt;}
.y27_c01235{bottom:785.253333pt;}
.y22_c01235{bottom:832.773333pt;}
.y21_c01235{bottom:909.573333pt;}
.y30_c01235{bottom:912.920000pt;}
.y1e_c01235{bottom:954.693333pt;}
.y4_c01235{bottom:1010.880000pt;}
.y1_c01235{bottom:1061.920000pt;}
.hf_c01235{height:16.000000pt;}
.h11_c01235{height:19.200000pt;}
.hd_c01235{height:24.000000pt;}
.h2_c01235{height:42.722500pt;}
.h3_c01235{height:44.648750pt;}
.h9_c01235{height:45.106667pt;}
.h10_c01235{height:47.491563pt;}
.hb_c01235{height:47.506667pt;}
.h12_c01235{height:47.958438pt;}
.hc_c01235{height:55.540000pt;}
.h8_c01235{height:57.375000pt;}
.h7_c01235{height:57.781250pt;}
.h6_c01235{height:66.750000pt;}
.h5_c01235{height:67.604062pt;}
.ha_c01235{height:76.786667pt;}
.h4_c01235{height:78.097500pt;}
.he_c01235{height:88.777500pt;}
.h0_c01235{height:1122.560000pt;}
.h1_c01235{height:1122.666667pt;}
.w6_c01235{width:23.680000pt;}
.w2_c01235{width:49.440000pt;}
.w5_c01235{width:252.066667pt;}
.w4_c01235{width:259.386667pt;}
.w3_c01235{width:269.666667pt;}
.w0_c01235{width:793.760000pt;}
.w1_c01235{width:794.000000pt;}
.x0_c01235{left:0.000000pt;}
.x5_c01235{left:7.200000pt;}
.xa_c01235{left:9.600000pt;}
.x1_c01235{left:113.472000pt;}
.x7_c01235{left:116.680000pt;}
.x9_c01235{left:310.786667pt;}
.x2_c01235{left:378.946667pt;}
.x4_c01235{left:379.906667pt;}
.x3_c01235{left:386.626667pt;}
.x8_c01235{left:427.266667pt;}
.x6_c01235{left:429.346667pt;}
}





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

.ir_c01236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01236;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01236;src:url('chunks/assets/font_1f9193ce3825705007dbcf35.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01236;src:url('chunks/assets/font_ff5c461ce7cc9d37bac09ee2.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01236;src:url('chunks/assets/font_b066a6e3d822bb1182cdd0e0.woff2')format("woff");}.ff4_c01236{font-family:ff4_c01236;line-height:1.104492;font-style:normal;font-weight: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_c01236;src:url('chunks/assets/font_3d3ab5f3a53c6106f99942cb.woff2')format("woff");}.ff5_c01236{font-family:ff5_c01236;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01236{vertical-align:0.000000px;}
.ls4_c01236{letter-spacing:-0.720000px;}
.ls3_c01236{letter-spacing:-0.432000px;}
.ls2_c01236{letter-spacing:0.000000px;}
.ls5_c01236{letter-spacing:0.144000px;}
.ls6_c01236{letter-spacing:0.288000px;}
.ls0_c01236{letter-spacing:1.584000px;}
.ls1_c01236{letter-spacing:4.464000px;}
.sc__c01236{text-shadow:none;}
.sc0_c01236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01236{-webkit-text-stroke:0px transparent;}
.sc0_c01236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01236{word-spacing:-20.304000px;}
.ws1_c01236{word-spacing:-20.160000px;}
.ws0_c01236{word-spacing:-20.016000px;}
.ws3_c01236{word-spacing:0.000000px;}
._8_c01236{margin-left:-2.860635px;}
._0_c01236{margin-left:-1.390841px;}
._3_c01236{width:1.560000px;}
._a_c01236{width:3.056500px;}
._7_c01236{width:5.062841px;}
._6_c01236{width:6.840000px;}
._1_c01236{width:9.072000px;}
._2_c01236{width:10.473683px;}
._4_c01236{width:12.024000px;}
._5_c01236{width:13.126841px;}
._b_c01236{width:31.968000px;}
._d_c01236{width:37.297159px;}
._c_c01236{width:38.518841px;}
._9_c01236{width:866.280000px;}
.fc0_c01236{color:rgb(0,0,0);}
.fs2_c01236{font-size:59.760000px;}
.fs0_c01236{font-size:66.240000px;}
.fs1_c01236{font-size:72.000000px;}
.y0_c01236{bottom:0.000000px;}
.y1d_c01236{bottom:4.695000px;}
.y1a_c01236{bottom:22.005000px;}
.y1c_c01236{bottom:22.185000px;}
.y19_c01236{bottom:39.465000px;}
.y3_c01236{bottom:57.636000px;}
.y2_c01236{bottom:77.796000px;}
.y17_c01236{bottom:309.135000px;}
.y16_c01236{bottom:333.075000px;}
.y15_c01236{bottom:356.835000px;}
.y14_c01236{bottom:380.595000px;}
.y13_c01236{bottom:404.355000px;}
.y12_c01236{bottom:428.295000px;}
.y11_c01236{bottom:452.055000px;}
.y10_c01236{bottom:490.755000px;}
.yf_c01236{bottom:529.635000px;}
.y1b_c01236{bottom:545.640000px;}
.y18_c01236{bottom:547.260000px;}
.ye_c01236{bottom:568.545000px;}
.yd_c01236{bottom:603.285000px;}
.yc_c01236{bottom:949.650000px;}
.yb_c01236{bottom:973.410000px;}
.ya_c01236{bottom:997.170000px;}
.y9_c01236{bottom:1020.930000px;}
.y8_c01236{bottom:1044.690000px;}
.y7_c01236{bottom:1068.450000px;}
.y6_c01236{bottom:1092.210000px;}
.y5_c01236{bottom:1116.150000px;}
.y4_c01236{bottom:1140.120000px;}
.y1_c01236{bottom:1194.660000px;}
.h2_c01236{height:48.062812px;}
.h3_c01236{height:50.229844px;}
.h6_c01236{height:53.145000px;}
.h7_c01236{height:53.428008px;}
.h4_c01236{height:64.546875px;}
.h5_c01236{height:65.003906px;}
.h0_c01236{height:1262.880000px;}
.h1_c01236{height:1263.000000px;}
.w2_c01236{width:208.830000px;}
.w3_c01236{width:208.845000px;}
.w0_c01236{width:892.980000px;}
.w1_c01236{width:893.250000px;}
.x0_c01236{left:0.000000px;}
.x3_c01236{left:127.656000px;}
.x1_c01236{left:169.950000px;}
.x6_c01236{left:227.745000px;}
.x4_c01236{left:438.375000px;}
.x5_c01236{left:446.475000px;}
.x7_c01236{left:450.795000px;}
.x2_c01236{left:740.490000px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls4_c01236{letter-spacing:-0.640000pt;}
.ls3_c01236{letter-spacing:-0.384000pt;}
.ls2_c01236{letter-spacing:0.000000pt;}
.ls5_c01236{letter-spacing:0.128000pt;}
.ls6_c01236{letter-spacing:0.256000pt;}
.ls0_c01236{letter-spacing:1.408000pt;}
.ls1_c01236{letter-spacing:3.968000pt;}
.ws2_c01236{word-spacing:-18.048000pt;}
.ws1_c01236{word-spacing:-17.920000pt;}
.ws0_c01236{word-spacing:-17.792000pt;}
.ws3_c01236{word-spacing:0.000000pt;}
._8_c01236{margin-left:-2.542787pt;}
._0_c01236{margin-left:-1.236303pt;}
._3_c01236{width:1.386667pt;}
._a_c01236{width:2.716889pt;}
._7_c01236{width:4.500303pt;}
._6_c01236{width:6.080000pt;}
._1_c01236{width:8.064000pt;}
._2_c01236{width:9.309940pt;}
._4_c01236{width:10.688000pt;}
._5_c01236{width:11.668303pt;}
._b_c01236{width:28.416000pt;}
._d_c01236{width:33.153030pt;}
._c_c01236{width:34.238970pt;}
._9_c01236{width:770.026667pt;}
.fs2_c01236{font-size:53.120000pt;}
.fs0_c01236{font-size:58.880000pt;}
.fs1_c01236{font-size:64.000000pt;}
.y0_c01236{bottom:0.000000pt;}
.y1d_c01236{bottom:4.173333pt;}
.y1a_c01236{bottom:19.560000pt;}
.y1c_c01236{bottom:19.720000pt;}
.y19_c01236{bottom:35.080000pt;}
.y3_c01236{bottom:51.232000pt;}
.y2_c01236{bottom:69.152000pt;}
.y17_c01236{bottom:274.786667pt;}
.y16_c01236{bottom:296.066667pt;}
.y15_c01236{bottom:317.186667pt;}
.y14_c01236{bottom:338.306667pt;}
.y13_c01236{bottom:359.426667pt;}
.y12_c01236{bottom:380.706667pt;}
.y11_c01236{bottom:401.826667pt;}
.y10_c01236{bottom:436.226667pt;}
.yf_c01236{bottom:470.786667pt;}
.y1b_c01236{bottom:485.013333pt;}
.y18_c01236{bottom:486.453333pt;}
.ye_c01236{bottom:505.373333pt;}
.yd_c01236{bottom:536.253333pt;}
.yc_c01236{bottom:844.133333pt;}
.yb_c01236{bottom:865.253333pt;}
.ya_c01236{bottom:886.373333pt;}
.y9_c01236{bottom:907.493333pt;}
.y8_c01236{bottom:928.613333pt;}
.y7_c01236{bottom:949.733333pt;}
.y6_c01236{bottom:970.853333pt;}
.y5_c01236{bottom:992.133333pt;}
.y4_c01236{bottom:1013.440000pt;}
.y1_c01236{bottom:1061.920000pt;}
.h2_c01236{height:42.722500pt;}
.h3_c01236{height:44.648750pt;}
.h6_c01236{height:47.240000pt;}
.h7_c01236{height:47.491563pt;}
.h4_c01236{height:57.375000pt;}
.h5_c01236{height:57.781250pt;}
.h0_c01236{height:1122.560000pt;}
.h1_c01236{height:1122.666667pt;}
.w2_c01236{width:185.626667pt;}
.w3_c01236{width:185.640000pt;}
.w0_c01236{width:793.760000pt;}
.w1_c01236{width:794.000000pt;}
.x0_c01236{left:0.000000pt;}
.x3_c01236{left:113.472000pt;}
.x1_c01236{left:151.066667pt;}
.x6_c01236{left:202.440000pt;}
.x4_c01236{left:389.666667pt;}
.x5_c01236{left:396.866667pt;}
.x7_c01236{left:400.706667pt;}
.x2_c01236{left:658.213333pt;}
}





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

.ir_c01237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01237;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01237;src:url('chunks/assets/font_dd0791694b5494e2803c7ad2.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01237;src:url('chunks/assets/font_5a5a3fbe0c3703ff3708e6bb.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01237;src:url('chunks/assets/font_1104e8b4e6b62e9f33edd183.woff2')format("woff");}.ff4_c01237{font-family:ff4_c01237;line-height:1.104492;font-style:normal;font-weight: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_c01237;src:url('chunks/assets/font_e406e40c8f7a3b0b5a5e5aa5.woff2')format("woff");}.ff5_c01237{font-family:ff5_c01237;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01237{vertical-align:0.000000px;}
.ls0_c01237{letter-spacing:0.000000px;}
.ls1_c01237{letter-spacing:0.144000px;}
.sc__c01237{text-shadow:none;}
.sc0_c01237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01237{-webkit-text-stroke:0px transparent;}
.sc0_c01237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01237{word-spacing:0.000000px;}
._0_c01237{margin-left:-1.258891px;}
._2_c01237{width:1.486915px;}
._7_c01237{width:2.501424px;}
._4_c01237{width:3.717590px;}
._3_c01237{width:4.944024px;}
._9_c01237{width:6.480000px;}
._8_c01237{width:7.704000px;}
._6_c01237{width:15.874891px;}
._5_c01237{width:16.920000px;}
._1_c01237{width:855.684000px;}
._a_c01237{width:1602.300000px;}
.fc0_c01237{color:rgb(0,0,0);}
.fs2_c01237{font-size:59.760000px;}
.fs0_c01237{font-size:66.240000px;}
.fs1_c01237{font-size:72.000000px;}
.y0_c01237{bottom:0.000000px;}
.y1c_c01237{bottom:5.205000px;}
.y15_c01237{bottom:5.415000px;}
.y18_c01237{bottom:10.665000px;}
.y1a_c01237{bottom:16.905000px;}
.y17_c01237{bottom:28.125000px;}
.y3_c01237{bottom:57.636000px;}
.y2_c01237{bottom:77.796000px;}
.y13_c01237{bottom:111.276000px;}
.y12_c01237{bottom:149.976000px;}
.y11_c01237{bottom:188.850000px;}
.y19_c01237{bottom:224.145000px;}
.y10_c01237{bottom:227.550000px;}
.y1b_c01237{bottom:235.845000px;}
.yf_c01237{bottom:262.470000px;}
.ye_c01237{bottom:600.585000px;}
.yd_c01237{bottom:624.345000px;}
.yc_c01237{bottom:648.105000px;}
.yb_c01237{bottom:672.045000px;}
.ya_c01237{bottom:695.805000px;}
.y9_c01237{bottom:719.565000px;}
.y8_c01237{bottom:743.325000px;}
.y7_c01237{bottom:782.205000px;}
.y6_c01237{bottom:821.085000px;}
.y16_c01237{bottom:845.565000px;}
.y5_c01237{bottom:859.830000px;}
.y14_c01237{bottom:868.095000px;}
.y4_c01237{bottom:894.750000px;}
.y1_c01237{bottom:1194.660000px;}
.hb_c01237{height:19.080000px;}
.h7_c01237{height:19.260000px;}
.ha_c01237{height:30.780000px;}
.h9_c01237{height:41.782500px;}
.h2_c01237{height:48.062812px;}
.h3_c01237{height:50.229844px;}
.h8_c01237{height:53.428008px;}
.h5_c01237{height:64.371094px;}
.h4_c01237{height:64.546875px;}
.h6_c01237{height:65.003906px;}
.h0_c01237{height:1262.880000px;}
.h1_c01237{height:1263.000000px;}
.w3_c01237{width:219.810000px;}
.w4_c01237{width:339.690000px;}
.w2_c01237{width:342.930000px;}
.w5_c01237{width:363.855000px;}
.w0_c01237{width:892.980000px;}
.w1_c01237{width:893.250000px;}
.x0_c01237{left:0.000000px;}
.x1_c01237{left:127.656000px;}
.x8_c01237{left:135.225000px;}
.x6_c01237{left:142.065000px;}
.x4_c01237{left:347.115000px;}
.x9_c01237{left:356.835000px;}
.x3_c01237{left:511.305000px;}
.x2_c01237{left:532.905000px;}
.x7_c01237{left:540.840000px;}
.x5_c01237{left:749.130000px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls0_c01237{letter-spacing:0.000000pt;}
.ls1_c01237{letter-spacing:0.128000pt;}
.ws0_c01237{word-spacing:0.000000pt;}
._0_c01237{margin-left:-1.119014pt;}
._2_c01237{width:1.321702pt;}
._7_c01237{width:2.223488pt;}
._4_c01237{width:3.304525pt;}
._3_c01237{width:4.394688pt;}
._9_c01237{width:5.760000pt;}
._8_c01237{width:6.848000pt;}
._6_c01237{width:14.111014pt;}
._5_c01237{width:15.040000pt;}
._1_c01237{width:760.608000pt;}
._a_c01237{width:1424.266667pt;}
.fs2_c01237{font-size:53.120000pt;}
.fs0_c01237{font-size:58.880000pt;}
.fs1_c01237{font-size:64.000000pt;}
.y0_c01237{bottom:0.000000pt;}
.y1c_c01237{bottom:4.626667pt;}
.y15_c01237{bottom:4.813333pt;}
.y18_c01237{bottom:9.480000pt;}
.y1a_c01237{bottom:15.026667pt;}
.y17_c01237{bottom:25.000000pt;}
.y3_c01237{bottom:51.232000pt;}
.y2_c01237{bottom:69.152000pt;}
.y13_c01237{bottom:98.912000pt;}
.y12_c01237{bottom:133.312000pt;}
.y11_c01237{bottom:167.866667pt;}
.y19_c01237{bottom:199.240000pt;}
.y10_c01237{bottom:202.266667pt;}
.y1b_c01237{bottom:209.640000pt;}
.yf_c01237{bottom:233.306667pt;}
.ye_c01237{bottom:533.853333pt;}
.yd_c01237{bottom:554.973333pt;}
.yc_c01237{bottom:576.093333pt;}
.yb_c01237{bottom:597.373333pt;}
.ya_c01237{bottom:618.493333pt;}
.y9_c01237{bottom:639.613333pt;}
.y8_c01237{bottom:660.733333pt;}
.y7_c01237{bottom:695.293333pt;}
.y6_c01237{bottom:729.853333pt;}
.y16_c01237{bottom:751.613333pt;}
.y5_c01237{bottom:764.293333pt;}
.y14_c01237{bottom:771.640000pt;}
.y4_c01237{bottom:795.333333pt;}
.y1_c01237{bottom:1061.920000pt;}
.hb_c01237{height:16.960000pt;}
.h7_c01237{height:17.120000pt;}
.ha_c01237{height:27.360000pt;}
.h9_c01237{height:37.140000pt;}
.h2_c01237{height:42.722500pt;}
.h3_c01237{height:44.648750pt;}
.h8_c01237{height:47.491563pt;}
.h5_c01237{height:57.218750pt;}
.h4_c01237{height:57.375000pt;}
.h6_c01237{height:57.781250pt;}
.h0_c01237{height:1122.560000pt;}
.h1_c01237{height:1122.666667pt;}
.w3_c01237{width:195.386667pt;}
.w4_c01237{width:301.946667pt;}
.w2_c01237{width:304.826667pt;}
.w5_c01237{width:323.426667pt;}
.w0_c01237{width:793.760000pt;}
.w1_c01237{width:794.000000pt;}
.x0_c01237{left:0.000000pt;}
.x1_c01237{left:113.472000pt;}
.x8_c01237{left:120.200000pt;}
.x6_c01237{left:126.280000pt;}
.x4_c01237{left:308.546667pt;}
.x9_c01237{left:317.186667pt;}
.x3_c01237{left:454.493333pt;}
.x2_c01237{left:473.693333pt;}
.x7_c01237{left:480.746667pt;}
.x5_c01237{left:665.893333pt;}
}





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

.ir_c01238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01238;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01238;src:url('chunks/assets/font_ba61fe7696b78cadcb4743bd.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01238;src:url('chunks/assets/font_cb44e975e63ff70a7b86cfdb.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01238;src:url('chunks/assets/font_179351d485dd9e4c98a44c64.woff2')format("woff");}.ff4_c01238{font-family:ff4_c01238;line-height:1.106934;font-style:normal;font-weight: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_c01238;src:url('chunks/assets/font_bfca368c7791aff4eaf26788.woff2')format("woff");}.ff5_c01238{font-family:ff5_c01238;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01238{vertical-align:0.000000px;}
.ls0_c01238{letter-spacing:0.000000px;}
.sc__c01238{text-shadow:none;}
.sc0_c01238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01238{-webkit-text-stroke:0px transparent;}
.sc0_c01238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01238{word-spacing:-20.016000px;}
.ws1_c01238{word-spacing:0.000000px;}
._6_c01238{margin-left:-3.528000px;}
._5_c01238{margin-left:-2.448000px;}
._0_c01238{margin-left:-1.390841px;}
._1_c01238{width:1.030841px;}
._3_c01238{width:2.876524px;}
._2_c01238{width:4.104000px;}
._4_c01238{width:5.141794px;}
._a_c01238{width:7.056000px;}
._9_c01238{width:8.208000px;}
._c_c01238{width:13.344000px;}
._b_c01238{width:14.808000px;}
._8_c01238{width:21.694841px;}
._7_c01238{width:23.184000px;}
.fc0_c01238{color:rgb(0,0,0);}
.fs2_c01238{font-size:59.760000px;}
.fs0_c01238{font-size:66.240000px;}
.fs1_c01238{font-size:72.000000px;}
.y0_c01238{bottom:0.000000px;}
.y1a_c01238{bottom:4.155000px;}
.y18_c01238{bottom:5.235000px;}
.y3_c01238{bottom:57.636000px;}
.y2_c01238{bottom:77.796000px;}
.y16_c01238{bottom:307.515000px;}
.y19_c01238{bottom:309.300000px;}
.y15_c01238{bottom:331.275000px;}
.y14_c01238{bottom:355.035000px;}
.y13_c01238{bottom:378.975000px;}
.y12_c01238{bottom:402.735000px;}
.y11_c01238{bottom:426.495000px;}
.y10_c01238{bottom:450.435000px;}
.yf_c01238{bottom:474.375000px;}
.ye_c01238{bottom:497.955000px;}
.yd_c01238{bottom:536.655000px;}
.y17_c01238{bottom:549.960000px;}
.yc_c01238{bottom:571.605000px;}
.yb_c01238{bottom:958.290000px;}
.ya_c01238{bottom:982.050000px;}
.y9_c01238{bottom:1005.810000px;}
.y8_c01238{bottom:1029.750000px;}
.y7_c01238{bottom:1053.690000px;}
.y6_c01238{bottom:1077.270000px;}
.y5_c01238{bottom:1101.030000px;}
.y4_c01238{bottom:1139.940000px;}
.y1_c01238{bottom:1194.660000px;}
.h8_c01238{height:18.000000px;}
.h6_c01238{height:19.125000px;}
.h2_c01238{height:48.062812px;}
.h3_c01238{height:50.229844px;}
.h7_c01238{height:53.428008px;}
.h5_c01238{height:64.546875px;}
.h4_c01238{height:65.003906px;}
.h0_c01238{height:1262.880000px;}
.h1_c01238{height:1263.000000px;}
.w3_c01238{width:148.702500px;}
.w2_c01238{width:530.190000px;}
.w0_c01238{width:892.980000px;}
.w1_c01238{width:893.250000px;}
.x0_c01238{left:0.000000px;}
.x3_c01238{left:127.656000px;}
.x5_c01238{left:151.950000px;}
.x1_c01238{left:169.950000px;}
.x6_c01238{left:189.945000px;}
.x7_c01238{left:613.380000px;}
.x4_c01238{left:704.130000px;}
.x2_c01238{left:740.490000px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls0_c01238{letter-spacing:0.000000pt;}
.ws0_c01238{word-spacing:-17.792000pt;}
.ws1_c01238{word-spacing:0.000000pt;}
._6_c01238{margin-left:-3.136000pt;}
._5_c01238{margin-left:-2.176000pt;}
._0_c01238{margin-left:-1.236303pt;}
._1_c01238{width:0.916303pt;}
._3_c01238{width:2.556910pt;}
._2_c01238{width:3.648000pt;}
._4_c01238{width:4.570483pt;}
._a_c01238{width:6.272000pt;}
._9_c01238{width:7.296000pt;}
._c_c01238{width:11.861333pt;}
._b_c01238{width:13.162667pt;}
._8_c01238{width:19.284303pt;}
._7_c01238{width:20.608000pt;}
.fs2_c01238{font-size:53.120000pt;}
.fs0_c01238{font-size:58.880000pt;}
.fs1_c01238{font-size:64.000000pt;}
.y0_c01238{bottom:0.000000pt;}
.y1a_c01238{bottom:3.693333pt;}
.y18_c01238{bottom:4.653333pt;}
.y3_c01238{bottom:51.232000pt;}
.y2_c01238{bottom:69.152000pt;}
.y16_c01238{bottom:273.346667pt;}
.y19_c01238{bottom:274.933333pt;}
.y15_c01238{bottom:294.466667pt;}
.y14_c01238{bottom:315.586667pt;}
.y13_c01238{bottom:336.866667pt;}
.y12_c01238{bottom:357.986667pt;}
.y11_c01238{bottom:379.106667pt;}
.y10_c01238{bottom:400.386667pt;}
.yf_c01238{bottom:421.666667pt;}
.ye_c01238{bottom:442.626667pt;}
.yd_c01238{bottom:477.026667pt;}
.y17_c01238{bottom:488.853333pt;}
.yc_c01238{bottom:508.093333pt;}
.yb_c01238{bottom:851.813333pt;}
.ya_c01238{bottom:872.933333pt;}
.y9_c01238{bottom:894.053333pt;}
.y8_c01238{bottom:915.333333pt;}
.y7_c01238{bottom:936.613333pt;}
.y6_c01238{bottom:957.573333pt;}
.y5_c01238{bottom:978.693333pt;}
.y4_c01238{bottom:1013.280000pt;}
.y1_c01238{bottom:1061.920000pt;}
.h8_c01238{height:16.000000pt;}
.h6_c01238{height:17.000000pt;}
.h2_c01238{height:42.722500pt;}
.h3_c01238{height:44.648750pt;}
.h7_c01238{height:47.491563pt;}
.h5_c01238{height:57.375000pt;}
.h4_c01238{height:57.781250pt;}
.h0_c01238{height:1122.560000pt;}
.h1_c01238{height:1122.666667pt;}
.w3_c01238{width:132.180000pt;}
.w2_c01238{width:471.280000pt;}
.w0_c01238{width:793.760000pt;}
.w1_c01238{width:794.000000pt;}
.x0_c01238{left:0.000000pt;}
.x3_c01238{left:113.472000pt;}
.x5_c01238{left:135.066667pt;}
.x1_c01238{left:151.066667pt;}
.x6_c01238{left:168.840000pt;}
.x7_c01238{left:545.226667pt;}
.x4_c01238{left:625.893333pt;}
.x2_c01238{left:658.213333pt;}
}





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

.ir_c01239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01239;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01239;src:url('chunks/assets/font_c52f601a45404cbd444b024c.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01239;src:url('chunks/assets/font_f62d65c5528eed3b0475149c.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01239;src:url('chunks/assets/font_31a831379d694e27d23aeaf3.woff2')format("woff");}.ff4_c01239{font-family:ff4_c01239;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01239{vertical-align:0.000000px;}
.ls2_c01239{letter-spacing:0.000000px;}
.ls0_c01239{letter-spacing:0.149760px;}
.ls1_c01239{letter-spacing:0.288000px;}
.sc__c01239{text-shadow:none;}
.sc0_c01239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01239{-webkit-text-stroke:0px transparent;}
.sc0_c01239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01239{word-spacing:0.000000px;}
._12_c01239{margin-left:-5.400000px;}
._7_c01239{margin-left:-3.528000px;}
._4_c01239{margin-left:-2.520000px;}
._0_c01239{margin-left:-1.258891px;}
._3_c01239{width:1.008000px;}
._8_c01239{width:2.448000px;}
._9_c01239{width:3.672000px;}
._a_c01239{width:4.824000px;}
._6_c01239{width:6.840000px;}
._5_c01239{width:7.920000px;}
._d_c01239{width:8.928000px;}
._c_c01239{width:10.224000px;}
._2_c01239{width:13.104000px;}
._1_c01239{width:14.112000px;}
._f_c01239{width:26.746891px;}
._e_c01239{width:28.152000px;}
._b_c01239{width:34.200000px;}
._10_c01239{width:41.592000px;}
._11_c01239{width:42.912000px;}
._13_c01239{width:80.280000px;}
.fc0_c01239{color:rgb(0,0,0);}
.fs2_c01239{font-size:59.760000px;}
.fs0_c01239{font-size:66.240000px;}
.fs1_c01239{font-size:72.000000px;}
.y0_c01239{bottom:0.000000px;}
.y24_c01239{bottom:5.220000px;}
.y26_c01239{bottom:9.705000px;}
.y22_c01239{bottom:18.405000px;}
.y3_c01239{bottom:57.636000px;}
.y2_c01239{bottom:77.796000px;}
.y20_c01239{bottom:146.016000px;}
.y25_c01239{bottom:154.485000px;}
.y1f_c01239{bottom:169.770000px;}
.y1e_c01239{bottom:193.710000px;}
.y1d_c01239{bottom:217.290000px;}
.y1c_c01239{bottom:241.230000px;}
.y1b_c01239{bottom:264.990000px;}
.y1a_c01239{bottom:288.795000px;}
.y19_c01239{bottom:312.555000px;}
.y18_c01239{bottom:336.315000px;}
.y17_c01239{bottom:360.255000px;}
.y16_c01239{bottom:384.015000px;}
.y15_c01239{bottom:407.775000px;}
.y14_c01239{bottom:431.535000px;}
.y13_c01239{bottom:455.475000px;}
.y12_c01239{bottom:479.235000px;}
.y11_c01239{bottom:502.995000px;}
.y10_c01239{bottom:526.755000px;}
.yf_c01239{bottom:550.695000px;}
.ye_c01239{bottom:589.425000px;}
.y23_c01239{bottom:600.225000px;}
.yd_c01239{bottom:628.305000px;}
.yc_c01239{bottom:652.065000px;}
.yb_c01239{bottom:675.825000px;}
.ya_c01239{bottom:699.585000px;}
.y9_c01239{bottom:723.705000px;}
.y8_c01239{bottom:747.285000px;}
.y7_c01239{bottom:771.045000px;}
.y6_c01239{bottom:794.805000px;}
.y21_c01239{bottom:831.885000px;}
.y5_c01239{bottom:833.685000px;}
.y4_c01239{bottom:868.650000px;}
.y1_c01239{bottom:1194.660000px;}
.h7_c01239{height:19.080000px;}
.h8_c01239{height:23.580000px;}
.h5_c01239{height:32.242500px;}
.h2_c01239{height:48.062812px;}
.h3_c01239{height:50.229844px;}
.h6_c01239{height:53.428008px;}
.h4_c01239{height:64.546875px;}
.h0_c01239{height:1262.880000px;}
.h1_c01239{height:1263.000000px;}
.w3_c01239{width:247.530000px;}
.w4_c01239{width:355.575000px;}
.w2_c01239{width:376.995000px;}
.w0_c01239{width:892.980000px;}
.w1_c01239{width:893.250000px;}
.x0_c01239{left:0.000000px;}
.x1_c01239{left:127.656000px;}
.x5_c01239{left:228.825000px;}
.x4_c01239{left:386.355000px;}
.x3_c01239{left:410.475000px;}
.x2_c01239{left:661.605000px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls2_c01239{letter-spacing:0.000000pt;}
.ls0_c01239{letter-spacing:0.133120pt;}
.ls1_c01239{letter-spacing:0.256000pt;}
.ws0_c01239{word-spacing:0.000000pt;}
._12_c01239{margin-left:-4.800000pt;}
._7_c01239{margin-left:-3.136000pt;}
._4_c01239{margin-left:-2.240000pt;}
._0_c01239{margin-left:-1.119014pt;}
._3_c01239{width:0.896000pt;}
._8_c01239{width:2.176000pt;}
._9_c01239{width:3.264000pt;}
._a_c01239{width:4.288000pt;}
._6_c01239{width:6.080000pt;}
._5_c01239{width:7.040000pt;}
._d_c01239{width:7.936000pt;}
._c_c01239{width:9.088000pt;}
._2_c01239{width:11.648000pt;}
._1_c01239{width:12.544000pt;}
._f_c01239{width:23.775014pt;}
._e_c01239{width:25.024000pt;}
._b_c01239{width:30.400000pt;}
._10_c01239{width:36.970667pt;}
._11_c01239{width:38.144000pt;}
._13_c01239{width:71.360000pt;}
.fs2_c01239{font-size:53.120000pt;}
.fs0_c01239{font-size:58.880000pt;}
.fs1_c01239{font-size:64.000000pt;}
.y0_c01239{bottom:0.000000pt;}
.y24_c01239{bottom:4.640000pt;}
.y26_c01239{bottom:8.626667pt;}
.y22_c01239{bottom:16.360000pt;}
.y3_c01239{bottom:51.232000pt;}
.y2_c01239{bottom:69.152000pt;}
.y20_c01239{bottom:129.792000pt;}
.y25_c01239{bottom:137.320000pt;}
.y1f_c01239{bottom:150.906667pt;}
.y1e_c01239{bottom:172.186667pt;}
.y1d_c01239{bottom:193.146667pt;}
.y1c_c01239{bottom:214.426667pt;}
.y1b_c01239{bottom:235.546667pt;}
.y1a_c01239{bottom:256.706667pt;}
.y19_c01239{bottom:277.826667pt;}
.y18_c01239{bottom:298.946667pt;}
.y17_c01239{bottom:320.226667pt;}
.y16_c01239{bottom:341.346667pt;}
.y15_c01239{bottom:362.466667pt;}
.y14_c01239{bottom:383.586667pt;}
.y13_c01239{bottom:404.866667pt;}
.y12_c01239{bottom:425.986667pt;}
.y11_c01239{bottom:447.106667pt;}
.y10_c01239{bottom:468.226667pt;}
.yf_c01239{bottom:489.506667pt;}
.ye_c01239{bottom:523.933333pt;}
.y23_c01239{bottom:533.533333pt;}
.yd_c01239{bottom:558.493333pt;}
.yc_c01239{bottom:579.613333pt;}
.yb_c01239{bottom:600.733333pt;}
.ya_c01239{bottom:621.853333pt;}
.y9_c01239{bottom:643.293333pt;}
.y8_c01239{bottom:664.253333pt;}
.y7_c01239{bottom:685.373333pt;}
.y6_c01239{bottom:706.493333pt;}
.y21_c01239{bottom:739.453333pt;}
.y5_c01239{bottom:741.053333pt;}
.y4_c01239{bottom:772.133333pt;}
.y1_c01239{bottom:1061.920000pt;}
.h7_c01239{height:16.960000pt;}
.h8_c01239{height:20.960000pt;}
.h5_c01239{height:28.660000pt;}
.h2_c01239{height:42.722500pt;}
.h3_c01239{height:44.648750pt;}
.h6_c01239{height:47.491563pt;}
.h4_c01239{height:57.375000pt;}
.h0_c01239{height:1122.560000pt;}
.h1_c01239{height:1122.666667pt;}
.w3_c01239{width:220.026667pt;}
.w4_c01239{width:316.066667pt;}
.w2_c01239{width:335.106667pt;}
.w0_c01239{width:793.760000pt;}
.w1_c01239{width:794.000000pt;}
.x0_c01239{left:0.000000pt;}
.x1_c01239{left:113.472000pt;}
.x5_c01239{left:203.400000pt;}
.x4_c01239{left:343.426667pt;}
.x3_c01239{left:364.866667pt;}
.x2_c01239{left:588.093333pt;}
}





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

.ir_c01240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01240;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01240;src:url('chunks/assets/font_1f9193ce3825705007dbcf35.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01240;src:url('chunks/assets/font_90eebe21b18d03c0121c688d.woff2')format("woff");}.ff3_c01240{font-family:ff3_c01240;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01240;src:url('chunks/assets/font_f242c43f19fe187d3120cb40.woff2')format("woff");}.ff4_c01240{font-family:ff4_c01240;line-height:1.104492;font-style:normal;font-weight: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_c01240;src:url('chunks/assets/font_b5ddb8759417a40bcca39b5f.woff2')format("woff");}.ff5_c01240{font-family:ff5_c01240;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01240{vertical-align:0.000000px;}
.ls2_c01240{letter-spacing:-0.720000px;}
.ls3_c01240{letter-spacing:-0.144000px;}
.ls1_c01240{letter-spacing:0.000000px;}
.ls4_c01240{letter-spacing:0.288000px;}
.ls0_c01240{letter-spacing:18.144000px;}
.sc__c01240{text-shadow:none;}
.sc0_c01240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01240{-webkit-text-stroke:0px transparent;}
.sc0_c01240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01240{word-spacing:-20.016000px;}
.ws1_c01240{word-spacing:-19.872000px;}
.ws2_c01240{word-spacing:0.000000px;}
._e_c01240{margin-left:-4.032000px;}
._0_c01240{margin-left:-1.390841px;}
._3_c01240{width:1.152000px;}
._9_c01240{width:2.232000px;}
._4_c01240{width:3.371976px;}
._6_c01240{width:5.112000px;}
._5_c01240{width:6.264000px;}
._c_c01240{width:7.428024px;}
._7_c01240{width:8.699976px;}
._a_c01240{width:10.152000px;}
._b_c01240{width:12.036024px;}
._2_c01240{width:14.472000px;}
._1_c01240{width:15.624000px;}
._8_c01240{width:18.849683px;}
._14_c01240{width:21.528000px;}
._13_c01240{width:22.608000px;}
._12_c01240{width:24.048000px;}
._11_c01240{width:25.104024px;}
._10_c01240{width:27.216000px;}
._f_c01240{width:28.224000px;}
._d_c01240{width:36.000000px;}
.fc0_c01240{color:rgb(0,0,0);}
.fs2_c01240{font-size:59.760000px;}
.fs0_c01240{font-size:66.240000px;}
.fs1_c01240{font-size:72.000000px;}
.y0_c01240{bottom:0.000000px;}
.y2f_c01240{bottom:4.845000px;}
.y2c_c01240{bottom:6.300000px;}
.y2e_c01240{bottom:22.305000px;}
.y3_c01240{bottom:57.636000px;}
.y2_c01240{bottom:77.796000px;}
.y2a_c01240{bottom:160.230000px;}
.y2d_c01240{bottom:179.865000px;}
.y29_c01240{bottom:198.930000px;}
.y28_c01240{bottom:222.870000px;}
.y27_c01240{bottom:246.630000px;}
.y26_c01240{bottom:270.390000px;}
.y25_c01240{bottom:294.195000px;}
.y24_c01240{bottom:318.315000px;}
.y23_c01240{bottom:341.895000px;}
.y22_c01240{bottom:365.655000px;}
.y21_c01240{bottom:389.415000px;}
.y20_c01240{bottom:413.355000px;}
.y1f_c01240{bottom:437.115000px;}
.y1e_c01240{bottom:460.875000px;}
.y1d_c01240{bottom:499.755000px;}
.y1c_c01240{bottom:538.455000px;}
.y1b_c01240{bottom:577.365000px;}
.y2b_c01240{bottom:586.905000px;}
.y1a_c01240{bottom:601.305000px;}
.y19_c01240{bottom:625.065000px;}
.y18_c01240{bottom:648.645000px;}
.y17_c01240{bottom:672.585000px;}
.y16_c01240{bottom:696.345000px;}
.y15_c01240{bottom:720.105000px;}
.y14_c01240{bottom:743.865000px;}
.y13_c01240{bottom:767.805000px;}
.y12_c01240{bottom:791.565000px;}
.y11_c01240{bottom:815.325000px;}
.y10_c01240{bottom:839.085000px;}
.yf_c01240{bottom:863.070000px;}
.ye_c01240{bottom:901.770000px;}
.yd_c01240{bottom:925.530000px;}
.yc_c01240{bottom:949.470000px;}
.yb_c01240{bottom:973.230000px;}
.ya_c01240{bottom:996.990000px;}
.y9_c01240{bottom:1020.750000px;}
.y8_c01240{bottom:1044.690000px;}
.y7_c01240{bottom:1068.450000px;}
.y6_c01240{bottom:1092.210000px;}
.y5_c01240{bottom:1115.970000px;}
.y4_c01240{bottom:1139.940000px;}
.y1_c01240{bottom:1194.660000px;}
.h6_c01240{height:20.160000px;}
.h8_c01240{height:36.000000px;}
.h2_c01240{height:48.062812px;}
.h3_c01240{height:50.229844px;}
.h7_c01240{height:53.428008px;}
.h4_c01240{height:64.546875px;}
.h5_c01240{height:65.003906px;}
.h0_c01240{height:1262.880000px;}
.h1_c01240{height:1263.000000px;}
.w3_c01240{width:157.530000px;}
.w2_c01240{width:169.950000px;}
.w0_c01240{width:892.980000px;}
.w1_c01240{width:893.250000px;}
.x0_c01240{left:0.000000px;}
.x3_c01240{left:127.656000px;}
.x1_c01240{left:169.950000px;}
.x4_c01240{left:594.480000px;}
.x5_c01240{left:603.300000px;}
.x2_c01240{left:740.490000px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.ls2_c01240{letter-spacing:-0.640000pt;}
.ls3_c01240{letter-spacing:-0.128000pt;}
.ls1_c01240{letter-spacing:0.000000pt;}
.ls4_c01240{letter-spacing:0.256000pt;}
.ls0_c01240{letter-spacing:16.128000pt;}
.ws0_c01240{word-spacing:-17.792000pt;}
.ws1_c01240{word-spacing:-17.664000pt;}
.ws2_c01240{word-spacing:0.000000pt;}
._e_c01240{margin-left:-3.584000pt;}
._0_c01240{margin-left:-1.236303pt;}
._3_c01240{width:1.024000pt;}
._9_c01240{width:1.984000pt;}
._4_c01240{width:2.997312pt;}
._6_c01240{width:4.544000pt;}
._5_c01240{width:5.568000pt;}
._c_c01240{width:6.602688pt;}
._7_c01240{width:7.733312pt;}
._a_c01240{width:9.024000pt;}
._b_c01240{width:10.698688pt;}
._2_c01240{width:12.864000pt;}
._1_c01240{width:13.888000pt;}
._8_c01240{width:16.755273pt;}
._14_c01240{width:19.136000pt;}
._13_c01240{width:20.096000pt;}
._12_c01240{width:21.376000pt;}
._11_c01240{width:22.314688pt;}
._10_c01240{width:24.192000pt;}
._f_c01240{width:25.088000pt;}
._d_c01240{width:32.000000pt;}
.fs2_c01240{font-size:53.120000pt;}
.fs0_c01240{font-size:58.880000pt;}
.fs1_c01240{font-size:64.000000pt;}
.y0_c01240{bottom:0.000000pt;}
.y2f_c01240{bottom:4.306667pt;}
.y2c_c01240{bottom:5.600000pt;}
.y2e_c01240{bottom:19.826667pt;}
.y3_c01240{bottom:51.232000pt;}
.y2_c01240{bottom:69.152000pt;}
.y2a_c01240{bottom:142.426667pt;}
.y2d_c01240{bottom:159.880000pt;}
.y29_c01240{bottom:176.826667pt;}
.y28_c01240{bottom:198.106667pt;}
.y27_c01240{bottom:219.226667pt;}
.y26_c01240{bottom:240.346667pt;}
.y25_c01240{bottom:261.506667pt;}
.y24_c01240{bottom:282.946667pt;}
.y23_c01240{bottom:303.906667pt;}
.y22_c01240{bottom:325.026667pt;}
.y21_c01240{bottom:346.146667pt;}
.y20_c01240{bottom:367.426667pt;}
.y1f_c01240{bottom:388.546667pt;}
.y1e_c01240{bottom:409.666667pt;}
.y1d_c01240{bottom:444.226667pt;}
.y1c_c01240{bottom:478.626667pt;}
.y1b_c01240{bottom:513.213333pt;}
.y2b_c01240{bottom:521.693333pt;}
.y1a_c01240{bottom:534.493333pt;}
.y19_c01240{bottom:555.613333pt;}
.y18_c01240{bottom:576.573333pt;}
.y17_c01240{bottom:597.853333pt;}
.y16_c01240{bottom:618.973333pt;}
.y15_c01240{bottom:640.093333pt;}
.y14_c01240{bottom:661.213333pt;}
.y13_c01240{bottom:682.493333pt;}
.y12_c01240{bottom:703.613333pt;}
.y11_c01240{bottom:724.733333pt;}
.y10_c01240{bottom:745.853333pt;}
.yf_c01240{bottom:767.173333pt;}
.ye_c01240{bottom:801.573333pt;}
.yd_c01240{bottom:822.693333pt;}
.yc_c01240{bottom:843.973333pt;}
.yb_c01240{bottom:865.093333pt;}
.ya_c01240{bottom:886.213333pt;}
.y9_c01240{bottom:907.333333pt;}
.y8_c01240{bottom:928.613333pt;}
.y7_c01240{bottom:949.733333pt;}
.y6_c01240{bottom:970.853333pt;}
.y5_c01240{bottom:991.973333pt;}
.y4_c01240{bottom:1013.280000pt;}
.y1_c01240{bottom:1061.920000pt;}
.h6_c01240{height:17.920000pt;}
.h8_c01240{height:32.000000pt;}
.h2_c01240{height:42.722500pt;}
.h3_c01240{height:44.648750pt;}
.h7_c01240{height:47.491563pt;}
.h4_c01240{height:57.375000pt;}
.h5_c01240{height:57.781250pt;}
.h0_c01240{height:1122.560000pt;}
.h1_c01240{height:1122.666667pt;}
.w3_c01240{width:140.026667pt;}
.w2_c01240{width:151.066667pt;}
.w0_c01240{width:793.760000pt;}
.w1_c01240{width:794.000000pt;}
.x0_c01240{left:0.000000pt;}
.x3_c01240{left:113.472000pt;}
.x1_c01240{left:151.066667pt;}
.x4_c01240{left:528.426667pt;}
.x5_c01240{left:536.266667pt;}
.x2_c01240{left:658.213333pt;}
}





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

.ir_c01241:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01241;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01241;src:url('chunks/assets/font_1f9193ce3825705007dbcf35.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01241;src:url('chunks/assets/font_99caa95db788721506d70b16.woff2')format("woff");}.ff3_c01241{font-family:ff3_c01241;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01241;src:url('chunks/assets/font_b5465621123a015979b36540.woff2')format("woff");}.ff4_c01241{font-family:ff4_c01241;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01241{vertical-align:0.000000px;}
.ls0_c01241{letter-spacing:0.000000px;}
.sc__c01241{text-shadow:none;}
.sc0_c01241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01241{-webkit-text-stroke:0px transparent;}
.sc0_c01241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01241{word-spacing:-20.016000px;}
.ws1_c01241{word-spacing:0.000000px;}
._5_c01241{margin-left:-3.960000px;}
._4_c01241{margin-left:-2.808000px;}
._0_c01241{margin-left:-1.258891px;}
._2_c01241{width:1.414891px;}
._3_c01241{width:2.593133px;}
._7_c01241{width:3.634891px;}
._6_c01241{width:4.824000px;}
._8_c01241{width:5.844000px;}
._1_c01241{width:7.704000px;}
._9_c01241{width:11.736000px;}
._11_c01241{width:14.472000px;}
._10_c01241{width:15.600024px;}
._f_c01241{width:17.386891px;}
._e_c01241{width:18.864000px;}
._a_c01241{width:24.912000px;}
._c_c01241{width:27.610891px;}
._b_c01241{width:29.304000px;}
._d_c01241{width:51.624000px;}
.fc0_c01241{color:rgb(0,0,0);}
.fs2_c01241{font-size:59.760000px;}
.fs0_c01241{font-size:66.240000px;}
.fs1_c01241{font-size:72.000000px;}
.y0_c01241{bottom:0.000000px;}
.y24_c01241{bottom:3.765000px;}
.y21_c01241{bottom:6.480000px;}
.y23_c01241{bottom:21.225000px;}
.y3_c01241{bottom:57.636000px;}
.y2_c01241{bottom:77.796000px;}
.y1f_c01241{bottom:114.876000px;}
.y1e_c01241{bottom:138.636000px;}
.y1d_c01241{bottom:162.570000px;}
.y1c_c01241{bottom:186.150000px;}
.y1b_c01241{bottom:225.030000px;}
.y22_c01241{bottom:236.205000px;}
.y1a_c01241{bottom:248.790000px;}
.y19_c01241{bottom:272.550000px;}
.y18_c01241{bottom:296.355000px;}
.y17_c01241{bottom:320.295000px;}
.y16_c01241{bottom:344.235000px;}
.y15_c01241{bottom:367.815000px;}
.y14_c01241{bottom:391.575000px;}
.y13_c01241{bottom:415.515000px;}
.y12_c01241{bottom:439.455000px;}
.y11_c01241{bottom:463.035000px;}
.y10_c01241{bottom:486.795000px;}
.yf_c01241{bottom:510.735000px;}
.ye_c01241{bottom:534.495000px;}
.yd_c01241{bottom:558.255000px;}
.yc_c01241{bottom:582.045000px;}
.yb_c01241{bottom:605.985000px;}
.ya_c01241{bottom:629.745000px;}
.y9_c01241{bottom:668.445000px;}
.y20_c01241{bottom:679.785000px;}
.y8_c01241{bottom:703.365000px;}
.y7_c01241{bottom:1068.450000px;}
.y6_c01241{bottom:1092.210000px;}
.y5_c01241{bottom:1115.970000px;}
.y4_c01241{bottom:1140.120000px;}
.y1_c01241{bottom:1194.660000px;}
.h5_c01241{height:20.340000px;}
.h7_c01241{height:34.920000px;}
.h2_c01241{height:48.062812px;}
.h3_c01241{height:50.229844px;}
.h6_c01241{height:53.428008px;}
.h4_c01241{height:64.546875px;}
.h0_c01241{height:1262.880000px;}
.h1_c01241{height:1263.000000px;}
.w3_c01241{width:174.630000px;}
.w2_c01241{width:336.495000px;}
.w0_c01241{width:892.980000px;}
.w1_c01241{width:893.250000px;}
.x0_c01241{left:0.000000px;}
.x1_c01241{left:127.656000px;}
.x5_c01241{left:192.285000px;}
.x3_c01241{left:312.915000px;}
.x4_c01241{left:314.355000px;}
.x2_c01241{left:703.050000px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.ls0_c01241{letter-spacing:0.000000pt;}
.ws0_c01241{word-spacing:-17.792000pt;}
.ws1_c01241{word-spacing:0.000000pt;}
._5_c01241{margin-left:-3.520000pt;}
._4_c01241{margin-left:-2.496000pt;}
._0_c01241{margin-left:-1.119014pt;}
._2_c01241{width:1.257681pt;}
._3_c01241{width:2.305007pt;}
._7_c01241{width:3.231014pt;}
._6_c01241{width:4.288000pt;}
._8_c01241{width:5.194667pt;}
._1_c01241{width:6.848000pt;}
._9_c01241{width:10.432000pt;}
._11_c01241{width:12.864000pt;}
._10_c01241{width:13.866688pt;}
._f_c01241{width:15.455014pt;}
._e_c01241{width:16.768000pt;}
._a_c01241{width:22.144000pt;}
._c_c01241{width:24.543014pt;}
._b_c01241{width:26.048000pt;}
._d_c01241{width:45.888000pt;}
.fs2_c01241{font-size:53.120000pt;}
.fs0_c01241{font-size:58.880000pt;}
.fs1_c01241{font-size:64.000000pt;}
.y0_c01241{bottom:0.000000pt;}
.y24_c01241{bottom:3.346667pt;}
.y21_c01241{bottom:5.760000pt;}
.y23_c01241{bottom:18.866667pt;}
.y3_c01241{bottom:51.232000pt;}
.y2_c01241{bottom:69.152000pt;}
.y1f_c01241{bottom:102.112000pt;}
.y1e_c01241{bottom:123.232000pt;}
.y1d_c01241{bottom:144.506667pt;}
.y1c_c01241{bottom:165.466667pt;}
.y1b_c01241{bottom:200.026667pt;}
.y22_c01241{bottom:209.960000pt;}
.y1a_c01241{bottom:221.146667pt;}
.y19_c01241{bottom:242.266667pt;}
.y18_c01241{bottom:263.426667pt;}
.y17_c01241{bottom:284.706667pt;}
.y16_c01241{bottom:305.986667pt;}
.y15_c01241{bottom:326.946667pt;}
.y14_c01241{bottom:348.066667pt;}
.y13_c01241{bottom:369.346667pt;}
.y12_c01241{bottom:390.626667pt;}
.y11_c01241{bottom:411.586667pt;}
.y10_c01241{bottom:432.706667pt;}
.yf_c01241{bottom:453.986667pt;}
.ye_c01241{bottom:475.106667pt;}
.yd_c01241{bottom:496.226667pt;}
.yc_c01241{bottom:517.373333pt;}
.yb_c01241{bottom:538.653333pt;}
.ya_c01241{bottom:559.773333pt;}
.y9_c01241{bottom:594.173333pt;}
.y20_c01241{bottom:604.253333pt;}
.y8_c01241{bottom:625.213333pt;}
.y7_c01241{bottom:949.733333pt;}
.y6_c01241{bottom:970.853333pt;}
.y5_c01241{bottom:991.973333pt;}
.y4_c01241{bottom:1013.440000pt;}
.y1_c01241{bottom:1061.920000pt;}
.h5_c01241{height:18.080000pt;}
.h7_c01241{height:31.040000pt;}
.h2_c01241{height:42.722500pt;}
.h3_c01241{height:44.648750pt;}
.h6_c01241{height:47.491563pt;}
.h4_c01241{height:57.375000pt;}
.h0_c01241{height:1122.560000pt;}
.h1_c01241{height:1122.666667pt;}
.w3_c01241{width:155.226667pt;}
.w2_c01241{width:299.106667pt;}
.w0_c01241{width:793.760000pt;}
.w1_c01241{width:794.000000pt;}
.x0_c01241{left:0.000000pt;}
.x1_c01241{left:113.472000pt;}
.x5_c01241{left:170.920000pt;}
.x3_c01241{left:278.146667pt;}
.x4_c01241{left:279.426667pt;}
.x2_c01241{left:624.933333pt;}
}





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

.ir_c01242:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01242;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01242;src:url('chunks/assets/font_1a88051d46f5bb58bde303e8.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01242;src:url('chunks/assets/font_44648d982d97a6cf05cfceeb.woff2')format("woff");}.ff3_c01242{font-family:ff3_c01242;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01242;src:url('chunks/assets/font_846cfb0c9e13459bc516efa1.woff2')format("woff");}.ff4_c01242{font-family:ff4_c01242;line-height:1.104492;font-style:normal;font-weight: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_c01242;src:url('chunks/assets/font_69c59faea683bc74cfefc15d.woff2')format("woff");}.ff5_c01242{font-family:ff5_c01242;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01242{vertical-align:0.000000px;}
.ls0_c01242{letter-spacing:0.000000px;}
.ls1_c01242{letter-spacing:0.144000px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01242{word-spacing:-20.016000px;}
.ws1_c01242{word-spacing:0.000000px;}
._c_c01242{margin-left:-5.067740px;}
._b_c01242{margin-left:-3.479976px;}
._11_c01242{margin-left:-2.448000px;}
._0_c01242{margin-left:-1.390841px;}
._3_c01242{width:1.174841px;}
._6_c01242{width:2.709683px;}
._5_c01242{width:4.032000px;}
._12_c01242{width:5.184000px;}
._e_c01242{width:6.984000px;}
._d_c01242{width:8.064000px;}
._2_c01242{width:9.504000px;}
._1_c01242{width:10.944000px;}
._8_c01242{width:12.888000px;}
._4_c01242{width:14.446841px;}
._9_c01242{width:16.776000px;}
._a_c01242{width:18.144000px;}
._10_c01242{width:23.976000px;}
._f_c01242{width:25.464024px;}
._13_c01242{width:27.720000px;}
._7_c01242{width:638.820000px;}
.fc0_c01242{color:rgb(0,0,0);}
.fs2_c01242{font-size:59.760000px;}
.fs0_c01242{font-size:66.240000px;}
.fs1_c01242{font-size:72.000000px;}
.y0_c01242{bottom:0.000000px;}
.y24_c01242{bottom:3.780000px;}
.y20_c01242{bottom:6.480000px;}
.y23_c01242{bottom:21.240000px;}
.y22_c01242{bottom:38.520000px;}
.y3_c01242{bottom:57.636000px;}
.y2_c01242{bottom:77.796000px;}
.y1e_c01242{bottom:150.870000px;}
.y1d_c01242{bottom:174.630000px;}
.y1c_c01242{bottom:198.390000px;}
.y1b_c01242{bottom:222.150000px;}
.y1a_c01242{bottom:261.030000px;}
.y19_c01242{bottom:284.835000px;}
.y18_c01242{bottom:308.595000px;}
.y17_c01242{bottom:332.535000px;}
.y16_c01242{bottom:356.295000px;}
.y15_c01242{bottom:380.055000px;}
.y14_c01242{bottom:403.815000px;}
.y13_c01242{bottom:427.575000px;}
.y12_c01242{bottom:451.515000px;}
.y11_c01242{bottom:475.275000px;}
.y10_c01242{bottom:499.035000px;}
.yf_c01242{bottom:522.795000px;}
.ye_c01242{bottom:561.675000px;}
.yd_c01242{bottom:600.585000px;}
.yc_c01242{bottom:639.285000px;}
.yb_c01242{bottom:663.045000px;}
.ya_c01242{bottom:687.165000px;}
.y9_c01242{bottom:710.925000px;}
.y21_c01242{bottom:728.385000px;}
.y8_c01242{bottom:749.445000px;}
.y1f_c01242{bottom:755.565000px;}
.y7_c01242{bottom:784.365000px;}
.y6_c01242{bottom:1092.210000px;}
.y5_c01242{bottom:1115.970000px;}
.y4_c01242{bottom:1140.120000px;}
.y1_c01242{bottom:1194.660000px;}
.h6_c01242{height:20.340000px;}
.h2_c01242{height:48.062812px;}
.h3_c01242{height:50.229844px;}
.h8_c01242{height:52.200000px;}
.h7_c01242{height:53.428008px;}
.h4_c01242{height:64.546875px;}
.h5_c01242{height:65.003906px;}
.h0_c01242{height:1262.880000px;}
.h1_c01242{height:1263.000000px;}
.w3_c01242{width:162.735000px;}
.w2_c01242{width:336.495000px;}
.w0_c01242{width:892.980000px;}
.w1_c01242{width:893.250000px;}
.x0_c01242{left:0.000000px;}
.x3_c01242{left:127.656000px;}
.x6_c01242{left:156.465000px;}
.x1_c01242{left:169.950000px;}
.x5_c01242{left:505.185000px;}
.x4_c01242{left:568.005000px;}
.x7_c01242{left:578.460000px;}
.x2_c01242{left:740.490000px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls0_c01242{letter-spacing:0.000000pt;}
.ls1_c01242{letter-spacing:0.128000pt;}
.ws0_c01242{word-spacing:-17.792000pt;}
.ws1_c01242{word-spacing:0.000000pt;}
._c_c01242{margin-left:-4.504658pt;}
._b_c01242{margin-left:-3.093312pt;}
._11_c01242{margin-left:-2.176000pt;}
._0_c01242{margin-left:-1.236303pt;}
._3_c01242{width:1.044303pt;}
._6_c01242{width:2.408607pt;}
._5_c01242{width:3.584000pt;}
._12_c01242{width:4.608000pt;}
._e_c01242{width:6.208000pt;}
._d_c01242{width:7.168000pt;}
._2_c01242{width:8.448000pt;}
._1_c01242{width:9.728000pt;}
._8_c01242{width:11.456000pt;}
._4_c01242{width:12.841637pt;}
._9_c01242{width:14.912000pt;}
._a_c01242{width:16.128000pt;}
._10_c01242{width:21.312000pt;}
._f_c01242{width:22.634688pt;}
._13_c01242{width:24.640000pt;}
._7_c01242{width:567.840000pt;}
.fs2_c01242{font-size:53.120000pt;}
.fs0_c01242{font-size:58.880000pt;}
.fs1_c01242{font-size:64.000000pt;}
.y0_c01242{bottom:0.000000pt;}
.y24_c01242{bottom:3.360000pt;}
.y20_c01242{bottom:5.760000pt;}
.y23_c01242{bottom:18.880000pt;}
.y22_c01242{bottom:34.240000pt;}
.y3_c01242{bottom:51.232000pt;}
.y2_c01242{bottom:69.152000pt;}
.y1e_c01242{bottom:134.106667pt;}
.y1d_c01242{bottom:155.226667pt;}
.y1c_c01242{bottom:176.346667pt;}
.y1b_c01242{bottom:197.466667pt;}
.y1a_c01242{bottom:232.026667pt;}
.y19_c01242{bottom:253.186667pt;}
.y18_c01242{bottom:274.306667pt;}
.y17_c01242{bottom:295.586667pt;}
.y16_c01242{bottom:316.706667pt;}
.y15_c01242{bottom:337.826667pt;}
.y14_c01242{bottom:358.946667pt;}
.y13_c01242{bottom:380.066667pt;}
.y12_c01242{bottom:401.346667pt;}
.y11_c01242{bottom:422.466667pt;}
.y10_c01242{bottom:443.586667pt;}
.yf_c01242{bottom:464.706667pt;}
.ye_c01242{bottom:499.266667pt;}
.yd_c01242{bottom:533.853333pt;}
.yc_c01242{bottom:568.253333pt;}
.yb_c01242{bottom:589.373333pt;}
.ya_c01242{bottom:610.813333pt;}
.y9_c01242{bottom:631.933333pt;}
.y21_c01242{bottom:647.453333pt;}
.y8_c01242{bottom:666.173333pt;}
.y1f_c01242{bottom:671.613333pt;}
.y7_c01242{bottom:697.213333pt;}
.y6_c01242{bottom:970.853333pt;}
.y5_c01242{bottom:991.973333pt;}
.y4_c01242{bottom:1013.440000pt;}
.y1_c01242{bottom:1061.920000pt;}
.h6_c01242{height:18.080000pt;}
.h2_c01242{height:42.722500pt;}
.h3_c01242{height:44.648750pt;}
.h8_c01242{height:46.400000pt;}
.h7_c01242{height:47.491563pt;}
.h4_c01242{height:57.375000pt;}
.h5_c01242{height:57.781250pt;}
.h0_c01242{height:1122.560000pt;}
.h1_c01242{height:1122.666667pt;}
.w3_c01242{width:144.653333pt;}
.w2_c01242{width:299.106667pt;}
.w0_c01242{width:793.760000pt;}
.w1_c01242{width:794.000000pt;}
.x0_c01242{left:0.000000pt;}
.x3_c01242{left:113.472000pt;}
.x6_c01242{left:139.080000pt;}
.x1_c01242{left:151.066667pt;}
.x5_c01242{left:449.053333pt;}
.x4_c01242{left:504.893333pt;}
.x7_c01242{left:514.186667pt;}
.x2_c01242{left:658.213333pt;}
}





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

.ir_c01243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01243;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01243;src:url('chunks/assets/font_13c6742ae716988c97b508b8.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01243;src:url('chunks/assets/font_2558a0e67ec196b6609ced4a.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01243;src:url('chunks/assets/font_af32cba67ed1c1fdf38ec557.woff2')format("woff");}.ff4_c01243{font-family:ff4_c01243;line-height:1.106934;font-style:normal;font-weight: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_c01243;src:url('chunks/assets/font_daf495f1c8cb65fe1055b903.woff2')format("woff");}.ff5_c01243{font-family:ff5_c01243;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01243{vertical-align:0.000000px;}
.ls1_c01243{letter-spacing:0.000000px;}
.ls0_c01243{letter-spacing:0.216000px;}
.ls2_c01243{letter-spacing:0.288000px;}
.sc__c01243{text-shadow:none;}
.sc0_c01243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01243{-webkit-text-stroke:0px transparent;}
.sc0_c01243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01243{word-spacing:-20.304000px;}
.ws0_c01243{word-spacing:-20.016000px;}
.ws2_c01243{word-spacing:0.000000px;}
._d_c01243{margin-left:-5.568120px;}
._c_c01243{margin-left:-4.487976px;}
._e_c01243{margin-left:-3.479976px;}
._f_c01243{margin-left:-2.280197px;}
._0_c01243{margin-left:-1.258891px;}
._1_c01243{width:1.159565px;}
._8_c01243{width:3.278635px;}
._10_c01243{width:5.088024px;}
._7_c01243{width:6.552000px;}
._5_c01243{width:8.136000px;}
._6_c01243{width:9.336024px;}
._b_c01243{width:10.872000px;}
._11_c01243{width:16.056000px;}
._a_c01243{width:17.280000px;}
._9_c01243{width:18.288000px;}
._3_c01243{width:22.851326px;}
._2_c01243{width:24.120000px;}
._4_c01243{width:26.064000px;}
.fc0_c01243{color:rgb(0,0,0);}
.fs3_c01243{font-size:59.760000px;}
.fs0_c01243{font-size:66.240000px;}
.fs2_c01243{font-size:72.000000px;}
.fs1_c01243{font-size:84.240000px;}
.y0_c01243{bottom:0.000000px;}
.y22_c01243{bottom:5.235000px;}
.y20_c01243{bottom:6.495000px;}
.y2_c01243{bottom:77.796000px;}
.y1e_c01243{bottom:142.416000px;}
.y1d_c01243{bottom:166.350000px;}
.y1c_c01243{bottom:190.110000px;}
.y1b_c01243{bottom:213.870000px;}
.y1a_c01243{bottom:237.630000px;}
.y19_c01243{bottom:261.570000px;}
.y18_c01243{bottom:300.315000px;}
.y17_c01243{bottom:324.075000px;}
.y16_c01243{bottom:348.015000px;}
.y15_c01243{bottom:371.775000px;}
.y14_c01243{bottom:395.535000px;}
.y13_c01243{bottom:419.295000px;}
.y12_c01243{bottom:443.235000px;}
.y11_c01243{bottom:467.175000px;}
.y10_c01243{bottom:490.755000px;}
.yf_c01243{bottom:514.515000px;}
.ye_c01243{bottom:538.635000px;}
.yd_c01243{bottom:577.185000px;}
.yc_c01243{bottom:600.945000px;}
.yb_c01243{bottom:624.885000px;}
.ya_c01243{bottom:648.645000px;}
.y9_c01243{bottom:672.405000px;}
.y8_c01243{bottom:711.285000px;}
.y7_c01243{bottom:735.045000px;}
.y6_c01243{bottom:758.805000px;}
.y5_c01243{bottom:782.565000px;}
.y4_c01243{bottom:806.505000px;}
.y3_c01243{bottom:851.730000px;}
.y1f_c01243{bottom:944.235000px;}
.y21_c01243{bottom:947.295000px;}
.y1_c01243{bottom:1194.660000px;}
.h8_c01243{height:19.080000px;}
.h6_c01243{height:20.340000px;}
.h2_c01243{height:48.062812px;}
.h3_c01243{height:50.229844px;}
.h7_c01243{height:53.428008px;}
.h5_c01243{height:64.546875px;}
.h4_c01243{height:87.859687px;}
.h0_c01243{height:1262.880000px;}
.h1_c01243{height:1263.000000px;}
.w3_c01243{width:249.735000px;}
.w2_c01243{width:303.870000px;}
.w0_c01243{width:892.980000px;}
.w1_c01243{width:893.250000px;}
.x0_c01243{left:0.000000px;}
.x1_c01243{left:127.656000px;}
.x2_c01243{left:448.095000px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.ls1_c01243{letter-spacing:0.000000pt;}
.ls0_c01243{letter-spacing:0.192000pt;}
.ls2_c01243{letter-spacing:0.256000pt;}
.ws1_c01243{word-spacing:-18.048000pt;}
.ws0_c01243{word-spacing:-17.792000pt;}
.ws2_c01243{word-spacing:0.000000pt;}
._d_c01243{margin-left:-4.949440pt;}
._c_c01243{margin-left:-3.989312pt;}
._e_c01243{margin-left:-3.093312pt;}
._f_c01243{margin-left:-2.026842pt;}
._0_c01243{margin-left:-1.119014pt;}
._1_c01243{width:1.030724pt;}
._8_c01243{width:2.914342pt;}
._10_c01243{width:4.522688pt;}
._7_c01243{width:5.824000pt;}
._5_c01243{width:7.232000pt;}
._6_c01243{width:8.298688pt;}
._b_c01243{width:9.664000pt;}
._11_c01243{width:14.272000pt;}
._a_c01243{width:15.360000pt;}
._9_c01243{width:16.256000pt;}
._3_c01243{width:20.312290pt;}
._2_c01243{width:21.440000pt;}
._4_c01243{width:23.168000pt;}
.fs3_c01243{font-size:53.120000pt;}
.fs0_c01243{font-size:58.880000pt;}
.fs2_c01243{font-size:64.000000pt;}
.fs1_c01243{font-size:74.880000pt;}
.y0_c01243{bottom:0.000000pt;}
.y22_c01243{bottom:4.653333pt;}
.y20_c01243{bottom:5.773333pt;}
.y2_c01243{bottom:69.152000pt;}
.y1e_c01243{bottom:126.592000pt;}
.y1d_c01243{bottom:147.866667pt;}
.y1c_c01243{bottom:168.986667pt;}
.y1b_c01243{bottom:190.106667pt;}
.y1a_c01243{bottom:211.226667pt;}
.y19_c01243{bottom:232.506667pt;}
.y18_c01243{bottom:266.946667pt;}
.y17_c01243{bottom:288.066667pt;}
.y16_c01243{bottom:309.346667pt;}
.y15_c01243{bottom:330.466667pt;}
.y14_c01243{bottom:351.586667pt;}
.y13_c01243{bottom:372.706667pt;}
.y12_c01243{bottom:393.986667pt;}
.y11_c01243{bottom:415.266667pt;}
.y10_c01243{bottom:436.226667pt;}
.yf_c01243{bottom:457.346667pt;}
.ye_c01243{bottom:478.786667pt;}
.yd_c01243{bottom:513.053333pt;}
.yc_c01243{bottom:534.173333pt;}
.yb_c01243{bottom:555.453333pt;}
.ya_c01243{bottom:576.573333pt;}
.y9_c01243{bottom:597.693333pt;}
.y8_c01243{bottom:632.253333pt;}
.y7_c01243{bottom:653.373333pt;}
.y6_c01243{bottom:674.493333pt;}
.y5_c01243{bottom:695.613333pt;}
.y4_c01243{bottom:716.893333pt;}
.y3_c01243{bottom:757.093333pt;}
.y1f_c01243{bottom:839.320000pt;}
.y21_c01243{bottom:842.040000pt;}
.y1_c01243{bottom:1061.920000pt;}
.h8_c01243{height:16.960000pt;}
.h6_c01243{height:18.080000pt;}
.h2_c01243{height:42.722500pt;}
.h3_c01243{height:44.648750pt;}
.h7_c01243{height:47.491563pt;}
.h5_c01243{height:57.375000pt;}
.h4_c01243{height:78.097500pt;}
.h0_c01243{height:1122.560000pt;}
.h1_c01243{height:1122.666667pt;}
.w3_c01243{width:221.986667pt;}
.w2_c01243{width:270.106667pt;}
.w0_c01243{width:793.760000pt;}
.w1_c01243{width:794.000000pt;}
.x0_c01243{left:0.000000pt;}
.x1_c01243{left:113.472000pt;}
.x2_c01243{left:398.306667pt;}
}





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

.ir_c01244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01244;src:url('chunks/assets/font_122c5b3b4b934d46b7edc093.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01244;src:url('chunks/assets/font_4b5d4a5f0d4b32908e66604a.woff2')format("woff");}.ff2_c01244{font-family:ff2_c01244;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01244;src:url('chunks/assets/font_e614d0c359411c5c4e551896.woff2')format("woff");}.ff3_c01244{font-family:ff3_c01244;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01244;src:url('chunks/assets/font_8dafc0f7de7cfabb7f095f63.woff2')format("woff");}.ff4_c01244{font-family:ff4_c01244;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01244{vertical-align:0.000000px;}
.ls1_c01244{letter-spacing:-0.720000px;}
.ls0_c01244{letter-spacing:0.000000px;}
.sc__c01244{text-shadow:none;}
.sc0_c01244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01244{-webkit-text-stroke:0px transparent;}
.sc0_c01244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01244{word-spacing:-19.296000px;}
.ws1_c01244{word-spacing:0.000000px;}
._12_c01244{margin-left:-4.680000px;}
._9_c01244{margin-left:-2.785159px;}
._0_c01244{margin-left:-1.390841px;}
._2_c01244{width:1.020024px;}
._3_c01244{width:2.664000px;}
._1_c01244{width:3.672000px;}
._6_c01244{width:4.968000px;}
._5_c01244{width:6.048000px;}
._d_c01244{width:7.272000px;}
._b_c01244{width:8.734697px;}
._a_c01244{width:9.840024px;}
._c_c01244{width:10.872000px;}
._e_c01244{width:12.240000px;}
._11_c01244{width:24.552000px;}
._8_c01244{width:26.712000px;}
._7_c01244{width:28.008000px;}
._10_c01244{width:29.736000px;}
._f_c01244{width:48.312000px;}
._4_c01244{width:55.368000px;}
.fc0_c01244{color:rgb(0,0,0);}
.fs2_c01244{font-size:59.760000px;}
.fs0_c01244{font-size:66.240000px;}
.fs1_c01244{font-size:72.000000px;}
.y0_c01244{bottom:0.000000px;}
.y2c_c01244{bottom:4.125000px;}
.y2a_c01244{bottom:10.995000px;}
.y3_c01244{bottom:57.636000px;}
.y2_c01244{bottom:77.796000px;}
.y28_c01244{bottom:192.810000px;}
.y2b_c01244{bottom:204.705000px;}
.y27_c01244{bottom:231.690000px;}
.y26_c01244{bottom:255.450000px;}
.y25_c01244{bottom:279.210000px;}
.y24_c01244{bottom:303.015000px;}
.y23_c01244{bottom:326.955000px;}
.y22_c01244{bottom:350.715000px;}
.y21_c01244{bottom:374.475000px;}
.y20_c01244{bottom:398.235000px;}
.y1f_c01244{bottom:421.995000px;}
.y1e_c01244{bottom:445.935000px;}
.y1d_c01244{bottom:484.635000px;}
.y1c_c01244{bottom:508.575000px;}
.y1b_c01244{bottom:532.335000px;}
.y1a_c01244{bottom:556.095000px;}
.y19_c01244{bottom:579.885000px;}
.y18_c01244{bottom:618.765000px;}
.y17_c01244{bottom:642.525000px;}
.y16_c01244{bottom:666.285000px;}
.y15_c01244{bottom:690.225000px;}
.y14_c01244{bottom:713.985000px;}
.y13_c01244{bottom:737.745000px;}
.y12_c01244{bottom:761.505000px;}
.y11_c01244{bottom:785.265000px;}
.y10_c01244{bottom:824.145000px;}
.yf_c01244{bottom:847.950000px;}
.ye_c01244{bottom:871.890000px;}
.yd_c01244{bottom:895.650000px;}
.y29_c01244{bottom:925.335000px;}
.yc_c01244{bottom:934.350000px;}
.yb_c01244{bottom:973.230000px;}
.ya_c01244{bottom:996.990000px;}
.y9_c01244{bottom:1020.750000px;}
.y8_c01244{bottom:1044.690000px;}
.y7_c01244{bottom:1068.450000px;}
.y6_c01244{bottom:1092.210000px;}
.y5_c01244{bottom:1116.150000px;}
.y4_c01244{bottom:1140.120000px;}
.y1_c01244{bottom:1194.660000px;}
.h7_c01244{height:18.000000px;}
.h5_c01244{height:24.840000px;}
.h2_c01244{height:48.062812px;}
.h3_c01244{height:50.229844px;}
.h6_c01244{height:53.428008px;}
.h4_c01244{height:64.546875px;}
.h0_c01244{height:1262.880000px;}
.h1_c01244{height:1263.000000px;}
.w3_c01244{width:191.370000px;}
.w2_c01244{width:210.810000px;}
.w0_c01244{width:892.980000px;}
.w1_c01244{width:893.250000px;}
.x0_c01244{left:0.000000px;}
.x3_c01244{left:127.656000px;}
.x1_c01244{left:169.950000px;}
.x4_c01244{left:509.880000px;}
.x5_c01244{left:545.700000px;}
.x2_c01244{left:740.490000px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls1_c01244{letter-spacing:-0.640000pt;}
.ls0_c01244{letter-spacing:0.000000pt;}
.ws0_c01244{word-spacing:-17.152000pt;}
.ws1_c01244{word-spacing:0.000000pt;}
._12_c01244{margin-left:-4.160000pt;}
._9_c01244{margin-left:-2.475697pt;}
._0_c01244{margin-left:-1.236303pt;}
._2_c01244{width:0.906688pt;}
._3_c01244{width:2.368000pt;}
._1_c01244{width:3.264000pt;}
._6_c01244{width:4.416000pt;}
._5_c01244{width:5.376000pt;}
._d_c01244{width:6.464000pt;}
._b_c01244{width:7.764175pt;}
._a_c01244{width:8.746688pt;}
._c_c01244{width:9.664000pt;}
._e_c01244{width:10.880000pt;}
._11_c01244{width:21.824000pt;}
._8_c01244{width:23.744000pt;}
._7_c01244{width:24.896000pt;}
._10_c01244{width:26.432000pt;}
._f_c01244{width:42.944000pt;}
._4_c01244{width:49.216000pt;}
.fs2_c01244{font-size:53.120000pt;}
.fs0_c01244{font-size:58.880000pt;}
.fs1_c01244{font-size:64.000000pt;}
.y0_c01244{bottom:0.000000pt;}
.y2c_c01244{bottom:3.666667pt;}
.y2a_c01244{bottom:9.773333pt;}
.y3_c01244{bottom:51.232000pt;}
.y2_c01244{bottom:69.152000pt;}
.y28_c01244{bottom:171.386667pt;}
.y2b_c01244{bottom:181.960000pt;}
.y27_c01244{bottom:205.946667pt;}
.y26_c01244{bottom:227.066667pt;}
.y25_c01244{bottom:248.186667pt;}
.y24_c01244{bottom:269.346667pt;}
.y23_c01244{bottom:290.626667pt;}
.y22_c01244{bottom:311.746667pt;}
.y21_c01244{bottom:332.866667pt;}
.y20_c01244{bottom:353.986667pt;}
.y1f_c01244{bottom:375.106667pt;}
.y1e_c01244{bottom:396.386667pt;}
.y1d_c01244{bottom:430.786667pt;}
.y1c_c01244{bottom:452.066667pt;}
.y1b_c01244{bottom:473.186667pt;}
.y1a_c01244{bottom:494.306667pt;}
.y19_c01244{bottom:515.453333pt;}
.y18_c01244{bottom:550.013333pt;}
.y17_c01244{bottom:571.133333pt;}
.y16_c01244{bottom:592.253333pt;}
.y15_c01244{bottom:613.533333pt;}
.y14_c01244{bottom:634.653333pt;}
.y13_c01244{bottom:655.773333pt;}
.y12_c01244{bottom:676.893333pt;}
.y11_c01244{bottom:698.013333pt;}
.y10_c01244{bottom:732.573333pt;}
.yf_c01244{bottom:753.733333pt;}
.ye_c01244{bottom:775.013333pt;}
.yd_c01244{bottom:796.133333pt;}
.y29_c01244{bottom:822.520000pt;}
.yc_c01244{bottom:830.533333pt;}
.yb_c01244{bottom:865.093333pt;}
.ya_c01244{bottom:886.213333pt;}
.y9_c01244{bottom:907.333333pt;}
.y8_c01244{bottom:928.613333pt;}
.y7_c01244{bottom:949.733333pt;}
.y6_c01244{bottom:970.853333pt;}
.y5_c01244{bottom:992.133333pt;}
.y4_c01244{bottom:1013.440000pt;}
.y1_c01244{bottom:1061.920000pt;}
.h7_c01244{height:16.000000pt;}
.h5_c01244{height:22.080000pt;}
.h2_c01244{height:42.722500pt;}
.h3_c01244{height:44.648750pt;}
.h6_c01244{height:47.491563pt;}
.h4_c01244{height:57.375000pt;}
.h0_c01244{height:1122.560000pt;}
.h1_c01244{height:1122.666667pt;}
.w3_c01244{width:170.106667pt;}
.w2_c01244{width:187.386667pt;}
.w0_c01244{width:793.760000pt;}
.w1_c01244{width:794.000000pt;}
.x0_c01244{left:0.000000pt;}
.x3_c01244{left:113.472000pt;}
.x1_c01244{left:151.066667pt;}
.x4_c01244{left:453.226667pt;}
.x5_c01244{left:485.066667pt;}
.x2_c01244{left:658.213333pt;}
}





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

.ir_c01245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01245;src:url('chunks/assets/font_5d3894adf288d796509564ec.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01245;src:url('chunks/assets/font_0bb83b4123e6e43ddab7cbcd.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01245;src:url('chunks/assets/font_859008bcccde12b22a9fddaf.woff2')format("woff");}.ff3_c01245{font-family:ff3_c01245;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01245;src:url('chunks/assets/font_e1f703c6243af1ba97a08045.woff2')format("woff");}.ff4_c01245{font-family:ff4_c01245;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01245{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_c01245{vertical-align:0.000000px;}
.ls3_c01245{letter-spacing:-0.272400px;}
.ls2_c01245{letter-spacing:-0.181200px;}
.ls1_c01245{letter-spacing:0.000000px;}
.ls0_c01245{letter-spacing:0.174240px;}
.sc__c01245{text-shadow:none;}
.sc0_c01245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01245{-webkit-text-stroke:0px transparent;}
.sc0_c01245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01245{word-spacing:-21.035520px;}
.ws0_c01245{word-spacing:-20.016000px;}
.ws2_c01245{word-spacing:0.000000px;}
._0_c01245{margin-left:-1.258891px;}
._6_c01245{width:1.080000px;}
._3_c01245{width:2.964024px;}
._5_c01245{width:6.264000px;}
._4_c01245{width:7.416000px;}
._2_c01245{width:12.312000px;}
._1_c01245{width:14.184000px;}
.fc0_c01245{color:rgb(0,0,0);}
.fs3_c01245{font-size:38.880000px;}
.fs2_c01245{font-size:48.240000px;}
.fs4_c01245{font-size:59.760000px;}
.fs0_c01245{font-size:66.240000px;}
.fs1_c01245{font-size:72.000000px;}
.y0_c01245{bottom:0.000000px;}
.y2_c01245{bottom:77.796000px;}
.yc_c01245{bottom:110.196000px;}
.yb_c01245{bottom:115.416000px;}
.ya_c01245{bottom:996.990000px;}
.y9_c01245{bottom:1020.750000px;}
.y8_c01245{bottom:1044.690000px;}
.y7_c01245{bottom:1068.450000px;}
.y6_c01245{bottom:1092.210000px;}
.y4_c01245{bottom:1115.970000px;}
.y5_c01245{bottom:1121.910000px;}
.y3_c01245{bottom:1139.940000px;}
.y1_c01245{bottom:1194.660000px;}
.h7_c01245{height:29.482734px;}
.h6_c01245{height:43.246406px;}
.h2_c01245{height:48.062812px;}
.h3_c01245{height:50.229844px;}
.h8_c01245{height:63.763920px;}
.h4_c01245{height:64.546875px;}
.h5_c01245{height:1262.865000px;}
.h0_c01245{height:1262.880000px;}
.h1_c01245{height:1263.000000px;}
.w2_c01245{width:892.957500px;}
.w0_c01245{width:892.980000px;}
.w1_c01245{width:893.250000px;}
.x0_c01245{left:0.000000px;}
.x1_c01245{left:127.656000px;}
.x4_c01245{left:142.236000px;}
.x2_c01245{left:181.627500px;}
.x3_c01245{left:201.630000px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls3_c01245{letter-spacing:-0.242133pt;}
.ls2_c01245{letter-spacing:-0.161067pt;}
.ls1_c01245{letter-spacing:0.000000pt;}
.ls0_c01245{letter-spacing:0.154880pt;}
.ws1_c01245{word-spacing:-18.698240pt;}
.ws0_c01245{word-spacing:-17.792000pt;}
.ws2_c01245{word-spacing:0.000000pt;}
._0_c01245{margin-left:-1.119014pt;}
._6_c01245{width:0.960000pt;}
._3_c01245{width:2.634688pt;}
._5_c01245{width:5.568000pt;}
._4_c01245{width:6.592000pt;}
._2_c01245{width:10.944000pt;}
._1_c01245{width:12.608000pt;}
.fs3_c01245{font-size:34.560000pt;}
.fs2_c01245{font-size:42.880000pt;}
.fs4_c01245{font-size:53.120000pt;}
.fs0_c01245{font-size:58.880000pt;}
.fs1_c01245{font-size:64.000000pt;}
.y0_c01245{bottom:0.000000pt;}
.y2_c01245{bottom:69.152000pt;}
.yc_c01245{bottom:97.952000pt;}
.yb_c01245{bottom:102.592000pt;}
.ya_c01245{bottom:886.213333pt;}
.y9_c01245{bottom:907.333333pt;}
.y8_c01245{bottom:928.613333pt;}
.y7_c01245{bottom:949.733333pt;}
.y6_c01245{bottom:970.853333pt;}
.y4_c01245{bottom:991.973333pt;}
.y5_c01245{bottom:997.253333pt;}
.y3_c01245{bottom:1013.280000pt;}
.y1_c01245{bottom:1061.920000pt;}
.h7_c01245{height:26.206875pt;}
.h6_c01245{height:38.441250pt;}
.h2_c01245{height:42.722500pt;}
.h3_c01245{height:44.648750pt;}
.h8_c01245{height:56.679040pt;}
.h4_c01245{height:57.375000pt;}
.h5_c01245{height:1122.546667pt;}
.h0_c01245{height:1122.560000pt;}
.h1_c01245{height:1122.666667pt;}
.w2_c01245{width:793.740000pt;}
.w0_c01245{width:793.760000pt;}
.w1_c01245{width:794.000000pt;}
.x0_c01245{left:0.000000pt;}
.x1_c01245{left:113.472000pt;}
.x4_c01245{left:126.432000pt;}
.x2_c01245{left:161.446667pt;}
.x3_c01245{left:179.226667pt;}
}





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

.ir_c01246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01246;src:url('chunks/assets/font_2e3faf58e1543735e9650989.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01246{vertical-align:0.000000px;}
.ls0_c01246{letter-spacing:0.000000px;}
.sc__c01246{text-shadow:none;}
.sc0_c01246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01246{-webkit-text-stroke:0px transparent;}
.sc0_c01246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01246{word-spacing:-0.408000px;}
.fc0_c01246{color:rgb(0,0,0);}
.fs0_c01246{font-size:66.240000px;}
.y0_c01246{bottom:0.000000px;}
.y1_c01246{bottom:77.796000px;}
.h2_c01246{height:50.229844px;}
.h0_c01246{height:1262.880000px;}
.h1_c01246{height:1263.000000px;}
.w0_c01246{width:892.980000px;}
.w1_c01246{width:893.250000px;}
.x0_c01246{left:0.000000px;}
.x1_c01246{left:740.670000px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls0_c01246{letter-spacing:0.000000pt;}
.ws0_c01246{word-spacing:-0.362667pt;}
.fs0_c01246{font-size:58.880000pt;}
.y0_c01246{bottom:0.000000pt;}
.y1_c01246{bottom:69.152000pt;}
.h2_c01246{height:44.648750pt;}
.h0_c01246{height:1122.560000pt;}
.h1_c01246{height:1122.666667pt;}
.w0_c01246{width:793.760000pt;}
.w1_c01246{width:794.000000pt;}
.x0_c01246{left:0.000000pt;}
.x1_c01246{left:658.373333pt;}
}





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

.ir_c01247:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01247;src:url('chunks/assets/font_2e3faf58e1543735e9650989.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01247{vertical-align:0.000000px;}
.ls0_c01247{letter-spacing:0.000000px;}
.sc__c01247{text-shadow:none;}
.sc0_c01247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01247{-webkit-text-stroke:0px transparent;}
.sc0_c01247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01247{word-spacing:0.288000px;}
.fc0_c01247{color:rgb(0,0,0);}
.fs0_c01247{font-size:66.240000px;}
.y0_c01247{bottom:0.000000px;}
.y1_c01247{bottom:77.796000px;}
.h2_c01247{height:50.229844px;}
.h0_c01247{height:1262.880000px;}
.h1_c01247{height:1263.000000px;}
.w0_c01247{width:892.980000px;}
.w1_c01247{width:893.250000px;}
.x0_c01247{left:0.000000px;}
.x1_c01247{left:127.656000px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.ls0_c01247{letter-spacing:0.000000pt;}
.ws0_c01247{word-spacing:0.256000pt;}
.fs0_c01247{font-size:58.880000pt;}
.y0_c01247{bottom:0.000000pt;}
.y1_c01247{bottom:69.152000pt;}
.h2_c01247{height:44.648750pt;}
.h0_c01247{height:1122.560000pt;}
.h1_c01247{height:1122.666667pt;}
.w0_c01247{width:793.760000pt;}
.w1_c01247{width:794.000000pt;}
.x0_c01247{left:0.000000pt;}
.x1_c01247{left:113.472000pt;}
}





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

.ir_c01248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01248;src:url('chunks/assets/font_245611b527d54c1e3b2e8c11.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01248;src:url('chunks/assets/font_9bd02652ab28ba34fc5a023e.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:0.873047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01248;src:url('chunks/assets/font_4f2b6f5b05b8235ce4385321.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01248;src:url('chunks/assets/font_895d4c1c913735de915fd410.woff2')format("woff");}.ff4_c01248{font-family:ff4_c01248;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01248{vertical-align:0.000000px;}
.ls0_c01248{letter-spacing:0.000000px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01248{word-spacing:-20.016000px;}
.ws1_c01248{word-spacing:0.000000px;}
._f_c01248{margin-left:-4.896000px;}
._b_c01248{margin-left:-3.816000px;}
._a_c01248{margin-left:-2.808000px;}
._3_c01248{margin-left:-1.368000px;}
._5_c01248{width:1.008000px;}
._c_c01248{width:2.448000px;}
._e_c01248{width:3.960000px;}
._7_c01248{width:5.832000px;}
._6_c01248{width:6.984000px;}
._12_c01248{width:8.303856px;}
._10_c01248{width:9.504144px;}
._9_c01248{width:11.447928px;}
._8_c01248{width:12.576024px;}
._d_c01248{width:14.184000px;}
._11_c01248{width:15.912000px;}
._15_c01248{width:18.000000px;}
._14_c01248{width:24.624000px;}
._13_c01248{width:25.896000px;}
._1_c01248{width:28.224000px;}
._0_c01248{width:29.376000px;}
._4_c01248{width:52.344000px;}
._2_c01248{width:53.496000px;}
.fc0_c01248{color:rgb(0,0,0);}
.fs0_c01248{font-size:66.240000px;}
.fs2_c01248{font-size:72.000000px;}
.fs1_c01248{font-size:108.000000px;}
.y0_c01248{bottom:0.000000px;}
.y1_c01248{bottom:77.796000px;}
.y2d_c01248{bottom:113.436000px;}
.y2c_c01248{bottom:135.756000px;}
.y2b_c01248{bottom:158.070000px;}
.y2a_c01248{bottom:180.390000px;}
.y29_c01248{bottom:214.950000px;}
.y28_c01248{bottom:237.090000px;}
.y27_c01248{bottom:259.410000px;}
.y26_c01248{bottom:281.775000px;}
.y25_c01248{bottom:304.095000px;}
.y24_c01248{bottom:326.595000px;}
.y23_c01248{bottom:348.735000px;}
.y22_c01248{bottom:371.055000px;}
.y21_c01248{bottom:393.555000px;}
.y20_c01248{bottom:415.695000px;}
.y1f_c01248{bottom:438.375000px;}
.y1e_c01248{bottom:460.695000px;}
.y1d_c01248{bottom:483.015000px;}
.y1c_c01248{bottom:505.155000px;}
.y1b_c01248{bottom:527.475000px;}
.y1a_c01248{bottom:549.795000px;}
.y19_c01248{bottom:572.145000px;}
.y18_c01248{bottom:594.465000px;}
.y17_c01248{bottom:616.785000px;}
.y16_c01248{bottom:639.105000px;}
.y15_c01248{bottom:661.425000px;}
.y14_c01248{bottom:695.985000px;}
.y13_c01248{bottom:718.125000px;}
.y12_c01248{bottom:740.445000px;}
.y11_c01248{bottom:762.945000px;}
.y10_c01248{bottom:785.265000px;}
.yf_c01248{bottom:807.585000px;}
.ye_c01248{bottom:829.905000px;}
.yd_c01248{bottom:852.270000px;}
.yc_c01248{bottom:874.590000px;}
.yb_c01248{bottom:896.910000px;}
.ya_c01248{bottom:919.230000px;}
.y9_c01248{bottom:941.550000px;}
.y8_c01248{bottom:963.870000px;}
.y7_c01248{bottom:986.190000px;}
.y6_c01248{bottom:1008.690000px;}
.y5_c01248{bottom:1031.010000px;}
.y4_c01248{bottom:1053.330000px;}
.y3_c01248{bottom:1075.650000px;}
.y2_c01248{bottom:1121.550000px;}
.h2_c01248{height:50.229844px;}
.h4_c01248{height:64.546875px;}
.h3_c01248{height:92.917969px;}
.h0_c01248{height:1262.880000px;}
.h1_c01248{height:1263.000000px;}
.w0_c01248{width:892.980000px;}
.w1_c01248{width:893.250000px;}
.x0_c01248{left:0.000000px;}
.x2_c01248{left:127.656000px;}
.x1_c01248{left:740.670000px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.ls0_c01248{letter-spacing:0.000000pt;}
.ws0_c01248{word-spacing:-17.792000pt;}
.ws1_c01248{word-spacing:0.000000pt;}
._f_c01248{margin-left:-4.352000pt;}
._b_c01248{margin-left:-3.392000pt;}
._a_c01248{margin-left:-2.496000pt;}
._3_c01248{margin-left:-1.216000pt;}
._5_c01248{width:0.896000pt;}
._c_c01248{width:2.176000pt;}
._e_c01248{width:3.520000pt;}
._7_c01248{width:5.184000pt;}
._6_c01248{width:6.208000pt;}
._12_c01248{width:7.381205pt;}
._10_c01248{width:8.448128pt;}
._9_c01248{width:10.175936pt;}
._8_c01248{width:11.178688pt;}
._d_c01248{width:12.608000pt;}
._11_c01248{width:14.144000pt;}
._15_c01248{width:16.000000pt;}
._14_c01248{width:21.888000pt;}
._13_c01248{width:23.018667pt;}
._1_c01248{width:25.088000pt;}
._0_c01248{width:26.112000pt;}
._4_c01248{width:46.528000pt;}
._2_c01248{width:47.552000pt;}
.fs0_c01248{font-size:58.880000pt;}
.fs2_c01248{font-size:64.000000pt;}
.fs1_c01248{font-size:96.000000pt;}
.y0_c01248{bottom:0.000000pt;}
.y1_c01248{bottom:69.152000pt;}
.y2d_c01248{bottom:100.832000pt;}
.y2c_c01248{bottom:120.672000pt;}
.y2b_c01248{bottom:140.506667pt;}
.y2a_c01248{bottom:160.346667pt;}
.y29_c01248{bottom:191.066667pt;}
.y28_c01248{bottom:210.746667pt;}
.y27_c01248{bottom:230.586667pt;}
.y26_c01248{bottom:250.466667pt;}
.y25_c01248{bottom:270.306667pt;}
.y24_c01248{bottom:290.306667pt;}
.y23_c01248{bottom:309.986667pt;}
.y22_c01248{bottom:329.826667pt;}
.y21_c01248{bottom:349.826667pt;}
.y20_c01248{bottom:369.506667pt;}
.y1f_c01248{bottom:389.666667pt;}
.y1e_c01248{bottom:409.506667pt;}
.y1d_c01248{bottom:429.346667pt;}
.y1c_c01248{bottom:449.026667pt;}
.y1b_c01248{bottom:468.866667pt;}
.y1a_c01248{bottom:488.706667pt;}
.y19_c01248{bottom:508.573333pt;}
.y18_c01248{bottom:528.413333pt;}
.y17_c01248{bottom:548.253333pt;}
.y16_c01248{bottom:568.093333pt;}
.y15_c01248{bottom:587.933333pt;}
.y14_c01248{bottom:618.653333pt;}
.y13_c01248{bottom:638.333333pt;}
.y12_c01248{bottom:658.173333pt;}
.y11_c01248{bottom:678.173333pt;}
.y10_c01248{bottom:698.013333pt;}
.yf_c01248{bottom:717.853333pt;}
.ye_c01248{bottom:737.693333pt;}
.yd_c01248{bottom:757.573333pt;}
.yc_c01248{bottom:777.413333pt;}
.yb_c01248{bottom:797.253333pt;}
.ya_c01248{bottom:817.093333pt;}
.y9_c01248{bottom:836.933333pt;}
.y8_c01248{bottom:856.773333pt;}
.y7_c01248{bottom:876.613333pt;}
.y6_c01248{bottom:896.613333pt;}
.y5_c01248{bottom:916.453333pt;}
.y4_c01248{bottom:936.293333pt;}
.y3_c01248{bottom:956.133333pt;}
.y2_c01248{bottom:996.933333pt;}
.h2_c01248{height:44.648750pt;}
.h4_c01248{height:57.375000pt;}
.h3_c01248{height:82.593750pt;}
.h0_c01248{height:1122.560000pt;}
.h1_c01248{height:1122.666667pt;}
.w0_c01248{width:793.760000pt;}
.w1_c01248{width:794.000000pt;}
.x0_c01248{left:0.000000pt;}
.x2_c01248{left:113.472000pt;}
.x1_c01248{left:658.373333pt;}
}





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

.ir_c01249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01249;src:url('chunks/assets/font_609175605b49d73562c8946e.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01249;src:url('chunks/assets/font_d8981fa78fc944b09f6004c2.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01249{vertical-align:0.000000px;}
.ls0_c01249{letter-spacing:0.000000px;}
.sc__c01249{text-shadow:none;}
.sc0_c01249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01249{-webkit-text-stroke:0px transparent;}
.sc0_c01249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01249{word-spacing:0.000000px;}
._c_c01249{margin-left:-5.207976px;}
._b_c01249{margin-left:-3.960000px;}
._f_c01249{margin-left:-2.748096px;}
._2_c01249{margin-left:-1.080000px;}
._1_c01249{width:1.164024px;}
._3_c01249{width:2.880000px;}
._4_c01249{width:4.608000px;}
._a_c01249{width:5.760000px;}
._7_c01249{width:6.923952px;}
._10_c01249{width:8.352000px;}
._14_c01249{width:9.936000px;}
._12_c01249{width:11.520000px;}
._11_c01249{width:13.464000px;}
._13_c01249{width:14.736024px;}
._6_c01249{width:15.912000px;}
._5_c01249{width:17.064000px;}
._0_c01249{width:22.680000px;}
._15_c01249{width:30.456000px;}
._9_c01249{width:34.272000px;}
._8_c01249{width:35.352000px;}
._d_c01249{width:59.832000px;}
._e_c01249{width:62.087976px;}
.fc0_c01249{color:rgb(0,0,0);}
.fs0_c01249{font-size:66.240000px;}
.fs1_c01249{font-size:72.000000px;}
.y0_c01249{bottom:0.000000px;}
.y2_c01249{bottom:57.636000px;}
.y1_c01249{bottom:77.796000px;}
.y2b_c01249{bottom:188.850000px;}
.y2a_c01249{bottom:221.970000px;}
.y29_c01249{bottom:256.350000px;}
.y28_c01249{bottom:278.490000px;}
.y27_c01249{bottom:300.855000px;}
.y26_c01249{bottom:323.175000px;}
.y25_c01249{bottom:345.495000px;}
.y24_c01249{bottom:367.995000px;}
.y23_c01249{bottom:390.315000px;}
.y22_c01249{bottom:412.635000px;}
.y21_c01249{bottom:434.955000px;}
.y20_c01249{bottom:457.275000px;}
.y1f_c01249{bottom:479.595000px;}
.y1e_c01249{bottom:501.915000px;}
.y1d_c01249{bottom:524.235000px;}
.y1c_c01249{bottom:546.555000px;}
.y1b_c01249{bottom:581.145000px;}
.y1a_c01249{bottom:603.285000px;}
.y19_c01249{bottom:625.605000px;}
.y18_c01249{bottom:647.925000px;}
.y17_c01249{bottom:670.245000px;}
.y16_c01249{bottom:692.745000px;}
.y15_c01249{bottom:715.065000px;}
.y14_c01249{bottom:749.445000px;}
.y13_c01249{bottom:771.585000px;}
.y12_c01249{bottom:794.085000px;}
.y11_c01249{bottom:816.405000px;}
.y10_c01249{bottom:838.725000px;}
.yf_c01249{bottom:861.090000px;}
.ye_c01249{bottom:883.410000px;}
.yd_c01249{bottom:905.730000px;}
.yc_c01249{bottom:928.050000px;}
.yb_c01249{bottom:950.370000px;}
.ya_c01249{bottom:972.690000px;}
.y9_c01249{bottom:995.010000px;}
.y8_c01249{bottom:1017.510000px;}
.y7_c01249{bottom:1039.830000px;}
.y6_c01249{bottom:1062.150000px;}
.y5_c01249{bottom:1084.470000px;}
.y4_c01249{bottom:1106.790000px;}
.y3_c01249{bottom:1129.110000px;}
.h2_c01249{height:50.229844px;}
.h3_c01249{height:64.546875px;}
.h0_c01249{height:1262.880000px;}
.h1_c01249{height:1263.000000px;}
.w0_c01249{width:892.980000px;}
.w1_c01249{width:893.250000px;}
.x0_c01249{left:0.000000px;}
.x1_c01249{left:127.656000px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls0_c01249{letter-spacing:0.000000pt;}
.ws0_c01249{word-spacing:0.000000pt;}
._c_c01249{margin-left:-4.629312pt;}
._b_c01249{margin-left:-3.520000pt;}
._f_c01249{margin-left:-2.442752pt;}
._2_c01249{margin-left:-0.960000pt;}
._1_c01249{width:1.034688pt;}
._3_c01249{width:2.560000pt;}
._4_c01249{width:4.096000pt;}
._a_c01249{width:5.120000pt;}
._7_c01249{width:6.154624pt;}
._10_c01249{width:7.424000pt;}
._14_c01249{width:8.832000pt;}
._12_c01249{width:10.240000pt;}
._11_c01249{width:11.968000pt;}
._13_c01249{width:13.098688pt;}
._6_c01249{width:14.144000pt;}
._5_c01249{width:15.168000pt;}
._0_c01249{width:20.160000pt;}
._15_c01249{width:27.072000pt;}
._9_c01249{width:30.464000pt;}
._8_c01249{width:31.424000pt;}
._d_c01249{width:53.184000pt;}
._e_c01249{width:55.189312pt;}
.fs0_c01249{font-size:58.880000pt;}
.fs1_c01249{font-size:64.000000pt;}
.y0_c01249{bottom:0.000000pt;}
.y2_c01249{bottom:51.232000pt;}
.y1_c01249{bottom:69.152000pt;}
.y2b_c01249{bottom:167.866667pt;}
.y2a_c01249{bottom:197.306667pt;}
.y29_c01249{bottom:227.866667pt;}
.y28_c01249{bottom:247.546667pt;}
.y27_c01249{bottom:267.426667pt;}
.y26_c01249{bottom:287.266667pt;}
.y25_c01249{bottom:307.106667pt;}
.y24_c01249{bottom:327.106667pt;}
.y23_c01249{bottom:346.946667pt;}
.y22_c01249{bottom:366.786667pt;}
.y21_c01249{bottom:386.626667pt;}
.y20_c01249{bottom:406.466667pt;}
.y1f_c01249{bottom:426.306667pt;}
.y1e_c01249{bottom:446.146667pt;}
.y1d_c01249{bottom:465.986667pt;}
.y1c_c01249{bottom:485.826667pt;}
.y1b_c01249{bottom:516.573333pt;}
.y1a_c01249{bottom:536.253333pt;}
.y19_c01249{bottom:556.093333pt;}
.y18_c01249{bottom:575.933333pt;}
.y17_c01249{bottom:595.773333pt;}
.y16_c01249{bottom:615.773333pt;}
.y15_c01249{bottom:635.613333pt;}
.y14_c01249{bottom:666.173333pt;}
.y13_c01249{bottom:685.853333pt;}
.y12_c01249{bottom:705.853333pt;}
.y11_c01249{bottom:725.693333pt;}
.y10_c01249{bottom:745.533333pt;}
.yf_c01249{bottom:765.413333pt;}
.ye_c01249{bottom:785.253333pt;}
.yd_c01249{bottom:805.093333pt;}
.yc_c01249{bottom:824.933333pt;}
.yb_c01249{bottom:844.773333pt;}
.ya_c01249{bottom:864.613333pt;}
.y9_c01249{bottom:884.453333pt;}
.y8_c01249{bottom:904.453333pt;}
.y7_c01249{bottom:924.293333pt;}
.y6_c01249{bottom:944.133333pt;}
.y5_c01249{bottom:963.973333pt;}
.y4_c01249{bottom:983.813333pt;}
.y3_c01249{bottom:1003.653333pt;}
.h2_c01249{height:44.648750pt;}
.h3_c01249{height:57.375000pt;}
.h0_c01249{height:1122.560000pt;}
.h1_c01249{height:1122.666667pt;}
.w0_c01249{width:793.760000pt;}
.w1_c01249{width:794.000000pt;}
.x0_c01249{left:0.000000pt;}
.x1_c01249{left:113.472000pt;}
}





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

.ir_c01250:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01250;src:url('chunks/assets/font_0f648e4efdf5148e368cd8e3.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01250;src:url('chunks/assets/font_e3b0e734ffcdb37fd248177d.woff2')format("woff");}.ff2_c01250{font-family:ff2_c01250;line-height:0.873047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01250{vertical-align:0.000000px;}
.ls0_c01250{letter-spacing:0.000000px;}
.sc__c01250{text-shadow:none;}
.sc0_c01250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01250{-webkit-text-stroke:0px transparent;}
.sc0_c01250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01250{word-spacing:0.000000px;}
.fc0_c01250{color:rgb(0,0,0);}
.fs0_c01250{font-size:72.000000px;}
.fs1_c01250{font-size:108.000000px;}
.y0_c01250{bottom:0.000000px;}
.y1_c01250{bottom:78.120000px;}
.y2_c01250{bottom:1021.110000px;}
.h2_c01250{height:50.027344px;}
.h3_c01250{height:92.917969px;}
.h0_c01250{height:1262.880000px;}
.h1_c01250{height:1263.000000px;}
.w0_c01250{width:892.980000px;}
.w1_c01250{width:893.250000px;}
.x0_c01250{left:0.000000px;}
.x2_c01250{left:127.656000px;}
.x1_c01250{left:738.510000px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls0_c01250{letter-spacing:0.000000pt;}
.ws0_c01250{word-spacing:0.000000pt;}
.fs0_c01250{font-size:64.000000pt;}
.fs1_c01250{font-size:96.000000pt;}
.y0_c01250{bottom:0.000000pt;}
.y1_c01250{bottom:69.440000pt;}
.y2_c01250{bottom:907.653333pt;}
.h2_c01250{height:44.468750pt;}
.h3_c01250{height:82.593750pt;}
.h0_c01250{height:1122.560000pt;}
.h1_c01250{height:1122.666667pt;}
.w0_c01250{width:793.760000pt;}
.w1_c01250{width:794.000000pt;}
.x0_c01250{left:0.000000pt;}
.x2_c01250{left:113.472000pt;}
.x1_c01250{left:656.453333pt;}
}





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

.ir_c01251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01251;src:url('chunks/assets/font_0f648e4efdf5148e368cd8e3.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01251{vertical-align:0.000000px;}
.ls0_c01251{letter-spacing:0.024000px;}
.sc__c01251{text-shadow:none;}
.sc0_c01251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01251{-webkit-text-stroke:0px transparent;}
.sc0_c01251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01251{word-spacing:-0.024000px;}
.fc0_c01251{color:rgb(0,0,0);}
.fs0_c01251{font-size:72.000000px;}
.y0_c01251{bottom:0.000000px;}
.y1_c01251{bottom:78.120000px;}
.h2_c01251{height:50.027344px;}
.h0_c01251{height:1262.880000px;}
.h1_c01251{height:1263.000000px;}
.w0_c01251{width:892.980000px;}
.w1_c01251{width:893.250000px;}
.x0_c01251{left:0.000000px;}
.x1_c01251{left:127.656000px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.ls0_c01251{letter-spacing:0.021333pt;}
.ws0_c01251{word-spacing:-0.021333pt;}
.fs0_c01251{font-size:64.000000pt;}
.y0_c01251{bottom:0.000000pt;}
.y1_c01251{bottom:69.440000pt;}
.h2_c01251{height:44.468750pt;}
.h0_c01251{height:1122.560000pt;}
.h1_c01251{height:1122.666667pt;}
.w0_c01251{width:793.760000pt;}
.w1_c01251{width:794.000000pt;}
.x0_c01251{left:0.000000pt;}
.x1_c01251{left:113.472000pt;}
}





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

.ir_c01252:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01252;src:url('chunks/assets/font_89cdd3dcdfddb9f57c9dcc5a.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01252;src:url('chunks/assets/font_dfc1999bb947dd49ab36f2bf.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;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_c01252;src:url('chunks/assets/font_fd804c902169ffc1d660ccfe.woff2')format("woff");}.ff3_c01252{font-family:ff3_c01252;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_c01252;src:url('chunks/assets/font_3d4d43ba77ff28339f289780.woff2')format("woff");}.ff4_c01252{font-family:ff4_c01252;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_c01252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01252{vertical-align:0.000000px;}
.ls0_c01252{letter-spacing:0.000000px;}
.sc__c01252{text-shadow:none;}
.sc0_c01252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01252{-webkit-text-stroke:0px transparent;}
.sc0_c01252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01252{word-spacing:0.000000px;}
._0_c01252{margin-left:-1.324800px;}
._1_c01252{width:1.324800px;}
.fc0_c01252{color:rgb(0,0,0);}
.fs2_c01252{font-size:66.240000px;}
.fs0_c01252{font-size:72.000000px;}
.fs1_c01252{font-size:108.000000px;}
.y0_c01252{bottom:0.000000px;}
.y2_c01252{bottom:57.420000px;}
.y1_c01252{bottom:78.120000px;}
.y26_c01252{bottom:134.100000px;}
.y25_c01252{bottom:154.800000px;}
.y24_c01252{bottom:175.500000px;}
.y23_c01252{bottom:216.930000px;}
.y22_c01252{bottom:259.050000px;}
.y21_c01252{bottom:279.750000px;}
.y20_c01252{bottom:300.450000px;}
.y1f_c01252{bottom:321.150000px;}
.y1e_c01252{bottom:341.850000px;}
.y1d_c01252{bottom:362.550000px;}
.y1c_c01252{bottom:383.250000px;}
.y1b_c01252{bottom:403.950000px;}
.y1a_c01252{bottom:445.215000px;}
.y19_c01252{bottom:487.335000px;}
.y18_c01252{bottom:529.095000px;}
.y17_c01252{bottom:549.795000px;}
.y16_c01252{bottom:570.495000px;}
.y15_c01252{bottom:612.075000px;}
.y14_c01252{bottom:632.775000px;}
.y13_c01252{bottom:653.475000px;}
.y12_c01252{bottom:674.175000px;}
.y11_c01252{bottom:694.905000px;}
.y10_c01252{bottom:715.605000px;}
.yf_c01252{bottom:736.305000px;}
.ye_c01252{bottom:778.065000px;}
.yd_c01252{bottom:798.765000px;}
.yc_c01252{bottom:819.465000px;}
.yb_c01252{bottom:840.165000px;}
.ya_c01252{bottom:860.865000px;}
.y9_c01252{bottom:902.445000px;}
.y8_c01252{bottom:923.190000px;}
.y7_c01252{bottom:964.590000px;}
.y6_c01252{bottom:1005.810000px;}
.y5_c01252{bottom:1046.310000px;}
.y4_c01252{bottom:1087.890000px;}
.y3_c01252{bottom:1132.170000px;}
.h2_c01252{height:50.027344px;}
.h5_c01252{height:64.978594px;}
.h6_c01252{height:70.628906px;}
.h4_c01252{height:72.562500px;}
.h3_c01252{height:75.041016px;}
.h0_c01252{height:1262.880000px;}
.h1_c01252{height:1263.000000px;}
.w0_c01252{width:892.980000px;}
.w1_c01252{width:893.250000px;}
.x0_c01252{left:0.000000px;}
.x2_c01252{left:127.656000px;}
.x5_c01252{left:242.670000px;}
.x6_c01252{left:303.195000px;}
.x4_c01252{left:339.375000px;}
.x3_c01252{left:391.395000px;}
.x1_c01252{left:738.510000px;}
@media print{
.v0_c01252{vertical-align:0.000000pt;}
.ls0_c01252{letter-spacing:0.000000pt;}
.ws0_c01252{word-spacing:0.000000pt;}
._0_c01252{margin-left:-1.177600pt;}
._1_c01252{width:1.177600pt;}
.fs2_c01252{font-size:58.880000pt;}
.fs0_c01252{font-size:64.000000pt;}
.fs1_c01252{font-size:96.000000pt;}
.y0_c01252{bottom:0.000000pt;}
.y2_c01252{bottom:51.040000pt;}
.y1_c01252{bottom:69.440000pt;}
.y26_c01252{bottom:119.200000pt;}
.y25_c01252{bottom:137.600000pt;}
.y24_c01252{bottom:156.000000pt;}
.y23_c01252{bottom:192.826667pt;}
.y22_c01252{bottom:230.266667pt;}
.y21_c01252{bottom:248.666667pt;}
.y20_c01252{bottom:267.066667pt;}
.y1f_c01252{bottom:285.466667pt;}
.y1e_c01252{bottom:303.866667pt;}
.y1d_c01252{bottom:322.266667pt;}
.y1c_c01252{bottom:340.666667pt;}
.y1b_c01252{bottom:359.066667pt;}
.y1a_c01252{bottom:395.746667pt;}
.y19_c01252{bottom:433.186667pt;}
.y18_c01252{bottom:470.306667pt;}
.y17_c01252{bottom:488.706667pt;}
.y16_c01252{bottom:507.106667pt;}
.y15_c01252{bottom:544.066667pt;}
.y14_c01252{bottom:562.466667pt;}
.y13_c01252{bottom:580.866667pt;}
.y12_c01252{bottom:599.266667pt;}
.y11_c01252{bottom:617.693333pt;}
.y10_c01252{bottom:636.093333pt;}
.yf_c01252{bottom:654.493333pt;}
.ye_c01252{bottom:691.613333pt;}
.yd_c01252{bottom:710.013333pt;}
.yc_c01252{bottom:728.413333pt;}
.yb_c01252{bottom:746.813333pt;}
.ya_c01252{bottom:765.213333pt;}
.y9_c01252{bottom:802.173333pt;}
.y8_c01252{bottom:820.613333pt;}
.y7_c01252{bottom:857.413333pt;}
.y6_c01252{bottom:894.053333pt;}
.y5_c01252{bottom:930.053333pt;}
.y4_c01252{bottom:967.013333pt;}
.y3_c01252{bottom:1006.373333pt;}
.h2_c01252{height:44.468750pt;}
.h5_c01252{height:57.758750pt;}
.h6_c01252{height:62.781250pt;}
.h4_c01252{height:64.500000pt;}
.h3_c01252{height:66.703125pt;}
.h0_c01252{height:1122.560000pt;}
.h1_c01252{height:1122.666667pt;}
.w0_c01252{width:793.760000pt;}
.w1_c01252{width:794.000000pt;}
.x0_c01252{left:0.000000pt;}
.x2_c01252{left:113.472000pt;}
.x5_c01252{left:215.706667pt;}
.x6_c01252{left:269.506667pt;}
.x4_c01252{left:301.666667pt;}
.x3_c01252{left:347.906667pt;}
.x1_c01252{left:656.453333pt;}
}





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

.ir_c01253:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01253;src:url('chunks/assets/font_a774e97d2c884b6a7546e397.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01253;src:url('chunks/assets/font_ec3a90b0598a0dbaef08ba68.woff2')format("woff");}.ff2_c01253{font-family:ff2_c01253;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_c01253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01253{vertical-align:0.000000px;}
.ls0_c01253{letter-spacing:0.000000px;}
.sc__c01253{text-shadow:none;}
.sc0_c01253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01253{-webkit-text-stroke:0px transparent;}
.sc0_c01253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01253{word-spacing:0.000000px;}
._0_c01253{margin-left:-1.080000px;}
._1_c01253{width:1.152000px;}
.fc0_c01253{color:rgb(0,0,0);}
.fs0_c01253{font-size:72.000000px;}
.y0_c01253{bottom:0.000000px;}
.y2_c01253{bottom:57.420000px;}
.y1_c01253{bottom:78.120000px;}
.y26_c01253{bottom:163.800000px;}
.y25_c01253{bottom:184.500000px;}
.y24_c01253{bottom:205.230000px;}
.y23_c01253{bottom:225.930000px;}
.y22_c01253{bottom:246.630000px;}
.y21_c01253{bottom:267.330000px;}
.y20_c01253{bottom:288.030000px;}
.y1f_c01253{bottom:308.730000px;}
.y1e_c01253{bottom:350.130000px;}
.y1d_c01253{bottom:392.070000px;}
.y1c_c01253{bottom:412.770000px;}
.y1b_c01253{bottom:433.470000px;}
.y1a_c01253{bottom:454.215000px;}
.y19_c01253{bottom:495.975000px;}
.y18_c01253{bottom:516.675000px;}
.y17_c01253{bottom:558.255000px;}
.y16_c01253{bottom:578.955000px;}
.y15_c01253{bottom:599.655000px;}
.y14_c01253{bottom:641.055000px;}
.y13_c01253{bottom:683.205000px;}
.y12_c01253{bottom:703.905000px;}
.y11_c01253{bottom:745.485000px;}
.y10_c01253{bottom:766.185000px;}
.yf_c01253{bottom:786.885000px;}
.ye_c01253{bottom:828.285000px;}
.yd_c01253{bottom:870.405000px;}
.yc_c01253{bottom:891.105000px;}
.yb_c01253{bottom:911.805000px;}
.ya_c01253{bottom:932.550000px;}
.y9_c01253{bottom:973.770000px;}
.y8_c01253{bottom:1015.890000px;}
.y7_c01253{bottom:1036.590000px;}
.y6_c01253{bottom:1078.350000px;}
.y5_c01253{bottom:1099.050000px;}
.y4_c01253{bottom:1119.750000px;}
.y3_c01253{bottom:1140.450000px;}
.h2_c01253{height:50.027344px;}
.h3_c01253{height:70.628906px;}
.h0_c01253{height:1262.880000px;}
.h1_c01253{height:1263.000000px;}
.w0_c01253{width:892.980000px;}
.w1_c01253{width:893.250000px;}
.x0_c01253{left:0.000000px;}
.x1_c01253{left:127.656000px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.ls0_c01253{letter-spacing:0.000000pt;}
.ws0_c01253{word-spacing:0.000000pt;}
._0_c01253{margin-left:-0.960000pt;}
._1_c01253{width:1.024000pt;}
.fs0_c01253{font-size:64.000000pt;}
.y0_c01253{bottom:0.000000pt;}
.y2_c01253{bottom:51.040000pt;}
.y1_c01253{bottom:69.440000pt;}
.y26_c01253{bottom:145.600000pt;}
.y25_c01253{bottom:164.000000pt;}
.y24_c01253{bottom:182.426667pt;}
.y23_c01253{bottom:200.826667pt;}
.y22_c01253{bottom:219.226667pt;}
.y21_c01253{bottom:237.626667pt;}
.y20_c01253{bottom:256.026667pt;}
.y1f_c01253{bottom:274.426667pt;}
.y1e_c01253{bottom:311.226667pt;}
.y1d_c01253{bottom:348.506667pt;}
.y1c_c01253{bottom:366.906667pt;}
.y1b_c01253{bottom:385.306667pt;}
.y1a_c01253{bottom:403.746667pt;}
.y19_c01253{bottom:440.866667pt;}
.y18_c01253{bottom:459.266667pt;}
.y17_c01253{bottom:496.226667pt;}
.y16_c01253{bottom:514.626667pt;}
.y15_c01253{bottom:533.026667pt;}
.y14_c01253{bottom:569.826667pt;}
.y13_c01253{bottom:607.293333pt;}
.y12_c01253{bottom:625.693333pt;}
.y11_c01253{bottom:662.653333pt;}
.y10_c01253{bottom:681.053333pt;}
.yf_c01253{bottom:699.453333pt;}
.ye_c01253{bottom:736.253333pt;}
.yd_c01253{bottom:773.693333pt;}
.yc_c01253{bottom:792.093333pt;}
.yb_c01253{bottom:810.493333pt;}
.ya_c01253{bottom:828.933333pt;}
.y9_c01253{bottom:865.573333pt;}
.y8_c01253{bottom:903.013333pt;}
.y7_c01253{bottom:921.413333pt;}
.y6_c01253{bottom:958.533333pt;}
.y5_c01253{bottom:976.933333pt;}
.y4_c01253{bottom:995.333333pt;}
.y3_c01253{bottom:1013.733333pt;}
.h2_c01253{height:44.468750pt;}
.h3_c01253{height:62.781250pt;}
.h0_c01253{height:1122.560000pt;}
.h1_c01253{height:1122.666667pt;}
.w0_c01253{width:793.760000pt;}
.w1_c01253{width:794.000000pt;}
.x0_c01253{left:0.000000pt;}
.x1_c01253{left:113.472000pt;}
}





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

.ir_c01254:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01254;src:url('chunks/assets/font_d1d85fde74d8c2ef94400d91.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01254;src:url('chunks/assets/font_95ad6476955cd36f0bd8e808.woff2')format("woff");}.ff2_c01254{font-family:ff2_c01254;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_c01254;src:url('chunks/assets/font_54bb130d74345ae97769cd75.woff2')format("woff");}.ff3_c01254{font-family:ff3_c01254;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_c01254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01254{vertical-align:-65.520000px;}
.v0_c01254{vertical-align:0.000000px;}
.ls1_c01254{letter-spacing:0.000000px;}
.ls0_c01254{letter-spacing:1259.463360px;}
.sc__c01254{text-shadow:none;}
.sc0_c01254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01254{-webkit-text-stroke:0px transparent;}
.sc0_c01254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01254{word-spacing:0.000000px;}
._0_c01254{margin-left:-1.080000px;}
._1_c01254{width:1.368000px;}
._2_c01254{width:848.307360px;}
.fc1_c01254{color:rgb(50,50,50);}
.fc0_c01254{color:rgb(0,0,0);}
.fs1_c01254{font-size:56.880000px;}
.fs0_c01254{font-size:72.000000px;}
.y0_c01254{bottom:0.000000px;}
.y2_c01254{bottom:57.420000px;}
.y1_c01254{bottom:78.120000px;}
.yf_c01254{bottom:789.765000px;}
.ye_c01254{bottom:807.585000px;}
.yd_c01254{bottom:849.345000px;}
.yc_c01254{bottom:870.045000px;}
.yb_c01254{bottom:911.445000px;}
.ya_c01254{bottom:953.430000px;}
.y9_c01254{bottom:974.130000px;}
.y8_c01254{bottom:994.830000px;}
.y7_c01254{bottom:1015.530000px;}
.y6_c01254{bottom:1056.930000px;}
.y5_c01254{bottom:1099.050000px;}
.y4_c01254{bottom:1119.750000px;}
.y3_c01254{bottom:1140.450000px;}
.h2_c01254{height:50.027344px;}
.h4_c01254{height:58.463677px;}
.h3_c01254{height:70.628906px;}
.h0_c01254{height:1262.880000px;}
.h1_c01254{height:1263.000000px;}
.w0_c01254{width:892.980000px;}
.w1_c01254{width:893.250000px;}
.x0_c01254{left:0.000000px;}
.x2_c01254{left:127.656000px;}
.x1_c01254{left:738.510000px;}
@media print{
.v1_c01254{vertical-align:-58.240000pt;}
.v0_c01254{vertical-align:0.000000pt;}
.ls1_c01254{letter-spacing:0.000000pt;}
.ls0_c01254{letter-spacing:1119.522987pt;}
.ws0_c01254{word-spacing:0.000000pt;}
._0_c01254{margin-left:-0.960000pt;}
._1_c01254{width:1.216000pt;}
._2_c01254{width:754.050987pt;}
.fs1_c01254{font-size:50.560000pt;}
.fs0_c01254{font-size:64.000000pt;}
.y0_c01254{bottom:0.000000pt;}
.y2_c01254{bottom:51.040000pt;}
.y1_c01254{bottom:69.440000pt;}
.yf_c01254{bottom:702.013333pt;}
.ye_c01254{bottom:717.853333pt;}
.yd_c01254{bottom:754.973333pt;}
.yc_c01254{bottom:773.373333pt;}
.yb_c01254{bottom:810.173333pt;}
.ya_c01254{bottom:847.493333pt;}
.y9_c01254{bottom:865.893333pt;}
.y8_c01254{bottom:884.293333pt;}
.y7_c01254{bottom:902.693333pt;}
.y6_c01254{bottom:939.493333pt;}
.y5_c01254{bottom:976.933333pt;}
.y4_c01254{bottom:995.333333pt;}
.y3_c01254{bottom:1013.733333pt;}
.h2_c01254{height:44.468750pt;}
.h4_c01254{height:51.967713pt;}
.h3_c01254{height:62.781250pt;}
.h0_c01254{height:1122.560000pt;}
.h1_c01254{height:1122.666667pt;}
.w0_c01254{width:793.760000pt;}
.w1_c01254{width:794.000000pt;}
.x0_c01254{left:0.000000pt;}
.x2_c01254{left:113.472000pt;}
.x1_c01254{left:656.453333pt;}
}





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

.ir_c01255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01255;src:url('chunks/assets/font_0f648e4efdf5148e368cd8e3.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01255{vertical-align:0.000000px;}
.ls0_c01255{letter-spacing:0.024000px;}
.sc__c01255{text-shadow:none;}
.sc0_c01255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01255{-webkit-text-stroke:0px transparent;}
.sc0_c01255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01255{word-spacing:-0.024000px;}
.fc0_c01255{color:rgb(0,0,0);}
.fs0_c01255{font-size:72.000000px;}
.y0_c01255{bottom:0.000000px;}
.y1_c01255{bottom:78.120000px;}
.h2_c01255{height:50.027344px;}
.h0_c01255{height:1262.880000px;}
.h1_c01255{height:1263.000000px;}
.w0_c01255{width:892.980000px;}
.w1_c01255{width:893.250000px;}
.x0_c01255{left:0.000000px;}
.x1_c01255{left:127.656000px;}
@media print{
.v0_c01255{vertical-align:0.000000pt;}
.ls0_c01255{letter-spacing:0.021333pt;}
.ws0_c01255{word-spacing:-0.021333pt;}
.fs0_c01255{font-size:64.000000pt;}
.y0_c01255{bottom:0.000000pt;}
.y1_c01255{bottom:69.440000pt;}
.h2_c01255{height:44.468750pt;}
.h0_c01255{height:1122.560000pt;}
.h1_c01255{height:1122.666667pt;}
.w0_c01255{width:793.760000pt;}
.w1_c01255{width:794.000000pt;}
.x0_c01255{left:0.000000pt;}
.x1_c01255{left:113.472000pt;}
}





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

.ir_c01256:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01256;src:url('chunks/assets/font_c62e8cd3dfa62a20087e2e5c.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01256;src:url('chunks/assets/font_d9f85ec6a1fc240bc8529bac.woff2')format("woff");}.ff2_c01256{font-family:ff2_c01256;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:ff3_c01256;src:url('chunks/assets/font_b2ff7891add5f1646da2c932.woff2')format("woff");}.ff3_c01256{font-family:ff3_c01256;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_c01256;src:url('chunks/assets/font_219db2a1171b89f0f34b92e6.woff2')format("woff");}.ff4_c01256{font-family:ff4_c01256;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_c01256;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff5_c01256{font-family:ff5_c01256;line-height:1.106934;font-style:normal;font-weight: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_c01256;src:url('chunks/assets/font_0572ef51b235fb4c9f9cb8be.woff2')format("woff");}.ff6_c01256{font-family:ff6_c01256;line-height:0.859863;font-style:normal;font-weight: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_c01256;src:url('chunks/assets/font_9a546c64ad3f4df1d2120c62.woff2')format("woff");}.ff7_c01256{font-family:ff7_c01256;line-height:1.575000;font-style:normal;font-weight: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_c01256;src:url('chunks/assets/font_405c7cc844dc22970abe89fd.woff2')format("woff");}.ff8_c01256{font-family:ff8_c01256;line-height:1.024902;font-style:normal;font-weight: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_c01256;src:url('chunks/assets/font_db1c7e5dccbc82ed7d02df58.woff2')format("woff");}.ff9_c01256{font-family:ff9_c01256;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01256{vertical-align:0.000000px;}
.ls1_c01256{letter-spacing:0.000000px;}
.ls0_c01256{letter-spacing:33.984000px;}
.sc__c01256{text-shadow:none;}
.sc0_c01256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01256{-webkit-text-stroke:0px transparent;}
.sc0_c01256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01256{word-spacing:-18.000000px;}
.ws1_c01256{word-spacing:0.000000px;}
._9_c01256{margin-left:-5.459976px;}
._8_c01256{margin-left:-4.104000px;}
._4_c01256{margin-left:-2.376000px;}
._0_c01256{margin-left:-1.008000px;}
._1_c01256{width:1.008000px;}
._5_c01256{width:2.520000px;}
._6_c01256{width:3.600000px;}
._7_c01256{width:4.896000px;}
._e_c01256{width:5.976000px;}
._f_c01256{width:7.128000px;}
._d_c01256{width:8.208000px;}
._a_c01256{width:9.216000px;}
._b_c01256{width:11.244024px;}
._c_c01256{width:12.359808px;}
._10_c01256{width:14.616000px;}
._11_c01256{width:15.624000px;}
._12_c01256{width:16.704000px;}
._2_c01256{width:24.984000px;}
._3_c01256{width:26.496000px;}
.fc1_c01256{color:rgb(50,50,50);}
.fc0_c01256{color:rgb(0,0,0);}
.fs5_c01256{font-size:38.880000px;}
.fs4_c01256{font-size:48.240000px;}
.fs2_c01256{font-size:56.880000px;}
.fs6_c01256{font-size:59.760000px;}
.fs3_c01256{font-size:66.240000px;}
.fs0_c01256{font-size:72.000000px;}
.fs1_c01256{font-size:108.000000px;}
.y0_c01256{bottom:0.000000px;}
.y2_c01256{bottom:57.420000px;}
.y1_c01256{bottom:78.120000px;}
.y35_c01256{bottom:109.260000px;}
.y34_c01256{bottom:127.440000px;}
.y33_c01256{bottom:146.520000px;}
.y32_c01256{bottom:151.740000px;}
.y31_c01256{bottom:166.140000px;}
.y30_c01256{bottom:212.790000px;}
.y2f_c01256{bottom:233.490000px;}
.y2e_c01256{bottom:254.190000px;}
.y2d_c01256{bottom:274.890000px;}
.y2c_c01256{bottom:295.590000px;}
.y2b_c01256{bottom:316.290000px;}
.y2a_c01256{bottom:336.990000px;}
.y29_c01256{bottom:357.690000px;}
.y28_c01256{bottom:378.390000px;}
.y27_c01256{bottom:399.090000px;}
.y26_c01256{bottom:419.790000px;}
.y25_c01256{bottom:440.535000px;}
.y24_c01256{bottom:461.235000px;}
.y23_c01256{bottom:481.575000px;}
.y22_c01256{bottom:502.635000px;}
.y21_c01256{bottom:523.335000px;}
.y20_c01256{bottom:544.035000px;}
.y1f_c01256{bottom:564.735000px;}
.y1e_c01256{bottom:585.435000px;}
.y1d_c01256{bottom:606.135000px;}
.y1c_c01256{bottom:626.835000px;}
.y1b_c01256{bottom:647.535000px;}
.y1a_c01256{bottom:668.235000px;}
.y19_c01256{bottom:688.965000px;}
.y18_c01256{bottom:709.665000px;}
.y17_c01256{bottom:730.365000px;}
.y16_c01256{bottom:751.065000px;}
.y15_c01256{bottom:771.765000px;}
.y14_c01256{bottom:792.105000px;}
.y13_c01256{bottom:813.165000px;}
.y11_c01256{bottom:833.865000px;}
.y12_c01256{bottom:840.705000px;}
.y10_c01256{bottom:854.565000px;}
.yf_c01256{bottom:875.265000px;}
.ye_c01256{bottom:895.965000px;}
.yd_c01256{bottom:916.710000px;}
.yc_c01256{bottom:937.410000px;}
.yb_c01256{bottom:958.110000px;}
.ya_c01256{bottom:977.370000px;}
.y9_c01256{bottom:993.750000px;}
.y8_c01256{bottom:1010.670000px;}
.y7_c01256{bottom:1030.110000px;}
.y6_c01256{bottom:1050.810000px;}
.y5_c01256{bottom:1071.510000px;}
.y4_c01256{bottom:1091.130000px;}
.y3_c01256{bottom:1132.170000px;}
.ha_c01256{height:29.482734px;}
.h8_c01256{height:33.518320px;}
.h2_c01256{height:50.027344px;}
.h4_c01256{height:58.463677px;}
.hb_c01256{height:63.763920px;}
.h9_c01256{height:64.546875px;}
.h6_c01256{height:64.978594px;}
.h5_c01256{height:72.562500px;}
.h3_c01256{height:75.041016px;}
.h7_c01256{height:1262.865000px;}
.h0_c01256{height:1262.880000px;}
.h1_c01256{height:1263.000000px;}
.w2_c01256{width:892.957500px;}
.w0_c01256{width:892.980000px;}
.w1_c01256{width:893.250000px;}
.x0_c01256{left:0.000000px;}
.x2_c01256{left:127.656000px;}
.xc_c01256{left:132.516000px;}
.xa_c01256{left:154.650000px;}
.x5_c01256{left:180.930000px;}
.x8_c01256{left:214.567500px;}
.x9_c01256{left:220.710000px;}
.x7_c01256{left:321.195000px;}
.x6_c01256{left:333.255000px;}
.xb_c01256{left:343.695000px;}
.x3_c01256{left:386.895000px;}
.x4_c01256{left:446.475000px;}
.x1_c01256{left:738.510000px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.ls1_c01256{letter-spacing:0.000000pt;}
.ls0_c01256{letter-spacing:30.208000pt;}
.ws0_c01256{word-spacing:-16.000000pt;}
.ws1_c01256{word-spacing:0.000000pt;}
._9_c01256{margin-left:-4.853312pt;}
._8_c01256{margin-left:-3.648000pt;}
._4_c01256{margin-left:-2.112000pt;}
._0_c01256{margin-left:-0.896000pt;}
._1_c01256{width:0.896000pt;}
._5_c01256{width:2.240000pt;}
._6_c01256{width:3.200000pt;}
._7_c01256{width:4.352000pt;}
._e_c01256{width:5.312000pt;}
._f_c01256{width:6.336000pt;}
._d_c01256{width:7.296000pt;}
._a_c01256{width:8.192000pt;}
._b_c01256{width:9.994688pt;}
._c_c01256{width:10.986496pt;}
._10_c01256{width:12.992000pt;}
._11_c01256{width:13.888000pt;}
._12_c01256{width:14.848000pt;}
._2_c01256{width:22.208000pt;}
._3_c01256{width:23.552000pt;}
.fs5_c01256{font-size:34.560000pt;}
.fs4_c01256{font-size:42.880000pt;}
.fs2_c01256{font-size:50.560000pt;}
.fs6_c01256{font-size:53.120000pt;}
.fs3_c01256{font-size:58.880000pt;}
.fs0_c01256{font-size:64.000000pt;}
.fs1_c01256{font-size:96.000000pt;}
.y0_c01256{bottom:0.000000pt;}
.y2_c01256{bottom:51.040000pt;}
.y1_c01256{bottom:69.440000pt;}
.y35_c01256{bottom:97.120000pt;}
.y34_c01256{bottom:113.280000pt;}
.y33_c01256{bottom:130.240000pt;}
.y32_c01256{bottom:134.880000pt;}
.y31_c01256{bottom:147.680000pt;}
.y30_c01256{bottom:189.146667pt;}
.y2f_c01256{bottom:207.546667pt;}
.y2e_c01256{bottom:225.946667pt;}
.y2d_c01256{bottom:244.346667pt;}
.y2c_c01256{bottom:262.746667pt;}
.y2b_c01256{bottom:281.146667pt;}
.y2a_c01256{bottom:299.546667pt;}
.y29_c01256{bottom:317.946667pt;}
.y28_c01256{bottom:336.346667pt;}
.y27_c01256{bottom:354.746667pt;}
.y26_c01256{bottom:373.146667pt;}
.y25_c01256{bottom:391.586667pt;}
.y24_c01256{bottom:409.986667pt;}
.y23_c01256{bottom:428.066667pt;}
.y22_c01256{bottom:446.786667pt;}
.y21_c01256{bottom:465.186667pt;}
.y20_c01256{bottom:483.586667pt;}
.y1f_c01256{bottom:501.986667pt;}
.y1e_c01256{bottom:520.386667pt;}
.y1d_c01256{bottom:538.786667pt;}
.y1c_c01256{bottom:557.186667pt;}
.y1b_c01256{bottom:575.586667pt;}
.y1a_c01256{bottom:593.986667pt;}
.y19_c01256{bottom:612.413333pt;}
.y18_c01256{bottom:630.813333pt;}
.y17_c01256{bottom:649.213333pt;}
.y16_c01256{bottom:667.613333pt;}
.y15_c01256{bottom:686.013333pt;}
.y14_c01256{bottom:704.093333pt;}
.y13_c01256{bottom:722.813333pt;}
.y11_c01256{bottom:741.213333pt;}
.y12_c01256{bottom:747.293333pt;}
.y10_c01256{bottom:759.613333pt;}
.yf_c01256{bottom:778.013333pt;}
.ye_c01256{bottom:796.413333pt;}
.yd_c01256{bottom:814.853333pt;}
.yc_c01256{bottom:833.253333pt;}
.yb_c01256{bottom:851.653333pt;}
.ya_c01256{bottom:868.773333pt;}
.y9_c01256{bottom:883.333333pt;}
.y8_c01256{bottom:898.373333pt;}
.y7_c01256{bottom:915.653333pt;}
.y6_c01256{bottom:934.053333pt;}
.y5_c01256{bottom:952.453333pt;}
.y4_c01256{bottom:969.893333pt;}
.y3_c01256{bottom:1006.373333pt;}
.ha_c01256{height:26.206875pt;}
.h8_c01256{height:29.794062pt;}
.h2_c01256{height:44.468750pt;}
.h4_c01256{height:51.967713pt;}
.hb_c01256{height:56.679040pt;}
.h9_c01256{height:57.375000pt;}
.h6_c01256{height:57.758750pt;}
.h5_c01256{height:64.500000pt;}
.h3_c01256{height:66.703125pt;}
.h7_c01256{height:1122.546667pt;}
.h0_c01256{height:1122.560000pt;}
.h1_c01256{height:1122.666667pt;}
.w2_c01256{width:793.740000pt;}
.w0_c01256{width:793.760000pt;}
.w1_c01256{width:794.000000pt;}
.x0_c01256{left:0.000000pt;}
.x2_c01256{left:113.472000pt;}
.xc_c01256{left:117.792000pt;}
.xa_c01256{left:137.466667pt;}
.x5_c01256{left:160.826667pt;}
.x8_c01256{left:190.726667pt;}
.x9_c01256{left:196.186667pt;}
.x7_c01256{left:285.506667pt;}
.x6_c01256{left:296.226667pt;}
.xb_c01256{left:305.506667pt;}
.x3_c01256{left:343.906667pt;}
.x4_c01256{left:396.866667pt;}
.x1_c01256{left:656.453333pt;}
}





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

.ir_c01257:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01257;src:url('chunks/assets/font_a11d7a6c187560e987f11754.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01257;src:url('chunks/assets/font_d8fa76cdff3aa1150716ecd2.woff2')format("woff");}.ff2_c01257{font-family:ff2_c01257;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:ff3_c01257;src:url('chunks/assets/font_c33407f44cf477a6fe648aa7.woff2')format("woff");}.ff3_c01257{font-family:ff3_c01257;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_c01257;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff4_c01257{font-family:ff4_c01257;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01257{vertical-align:0.000000px;}
.ls2_c01257{letter-spacing:0.000000px;}
.ls1_c01257{letter-spacing:15.984000px;}
.ls0_c01257{letter-spacing:33.984000px;}
.sc__c01257{text-shadow:none;}
.sc0_c01257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01257{-webkit-text-stroke:0px transparent;}
.sc0_c01257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01257{word-spacing:-18.000000px;}
.ws1_c01257{word-spacing:0.000000px;}
._0_c01257{margin-left:-3.168000px;}
._1_c01257{margin-left:-1.584000px;}
._2_c01257{width:1.080000px;}
._3_c01257{width:2.232000px;}
._4_c01257{width:3.312000px;}
._b_c01257{width:4.824000px;}
._c_c01257{width:6.624000px;}
._9_c01257{width:7.848000px;}
._a_c01257{width:8.856000px;}
._5_c01257{width:10.656000px;}
._e_c01257{width:13.104000px;}
._f_c01257{width:14.616000px;}
._8_c01257{width:19.044000px;}
._6_c01257{width:24.552000px;}
._7_c01257{width:25.848000px;}
._d_c01257{width:29.304000px;}
._10_c01257{width:47.592000px;}
._11_c01257{width:49.140000px;}
.fc0_c01257{color:rgb(0,0,0);}
.fs0_c01257{font-size:72.000000px;}
.y0_c01257{bottom:0.000000px;}
.y2_c01257{bottom:57.420000px;}
.y1_c01257{bottom:78.120000px;}
.y2e_c01257{bottom:183.600000px;}
.y2d_c01257{bottom:203.970000px;}
.y2c_c01257{bottom:246.090000px;}
.y2b_c01257{bottom:289.470000px;}
.y2a_c01257{bottom:333.030000px;}
.y29_c01257{bottom:353.730000px;}
.y28_c01257{bottom:374.430000px;}
.y27_c01257{bottom:395.130000px;}
.y26_c01257{bottom:415.830000px;}
.y25_c01257{bottom:436.530000px;}
.y24_c01257{bottom:457.275000px;}
.y23_c01257{bottom:477.975000px;}
.y22_c01257{bottom:498.315000px;}
.y21_c01257{bottom:519.015000px;}
.y20_c01257{bottom:540.075000px;}
.y1f_c01257{bottom:560.775000px;}
.y1e_c01257{bottom:581.475000px;}
.y1d_c01257{bottom:602.175000px;}
.y1c_c01257{bottom:622.875000px;}
.y1b_c01257{bottom:643.575000px;}
.y1a_c01257{bottom:664.275000px;}
.y19_c01257{bottom:684.645000px;}
.y18_c01257{bottom:705.705000px;}
.y17_c01257{bottom:726.405000px;}
.y16_c01257{bottom:747.105000px;}
.y15_c01257{bottom:767.805000px;}
.y14_c01257{bottom:788.505000px;}
.y13_c01257{bottom:809.205000px;}
.y12_c01257{bottom:829.545000px;}
.y11_c01257{bottom:850.245000px;}
.y10_c01257{bottom:871.305000px;}
.yf_c01257{bottom:892.005000px;}
.ye_c01257{bottom:912.705000px;}
.yd_c01257{bottom:933.450000px;}
.yc_c01257{bottom:954.150000px;}
.yb_c01257{bottom:974.850000px;}
.ya_c01257{bottom:995.550000px;}
.y9_c01257{bottom:1016.250000px;}
.y8_c01257{bottom:1036.950000px;}
.y7_c01257{bottom:1057.650000px;}
.y6_c01257{bottom:1078.350000px;}
.y5_c01257{bottom:1098.690000px;}
.y4_c01257{bottom:1119.750000px;}
.y3_c01257{bottom:1140.450000px;}
.h2_c01257{height:50.027344px;}
.h4_c01257{height:64.546875px;}
.h3_c01257{height:72.562500px;}
.h0_c01257{height:1262.880000px;}
.h1_c01257{height:1263.000000px;}
.w0_c01257{width:892.980000px;}
.w1_c01257{width:893.250000px;}
.x0_c01257{left:0.000000px;}
.x1_c01257{left:127.656000px;}
.x3_c01257{left:154.650000px;}
.x2_c01257{left:181.650000px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.ls2_c01257{letter-spacing:0.000000pt;}
.ls1_c01257{letter-spacing:14.208000pt;}
.ls0_c01257{letter-spacing:30.208000pt;}
.ws0_c01257{word-spacing:-16.000000pt;}
.ws1_c01257{word-spacing:0.000000pt;}
._0_c01257{margin-left:-2.816000pt;}
._1_c01257{margin-left:-1.408000pt;}
._2_c01257{width:0.960000pt;}
._3_c01257{width:1.984000pt;}
._4_c01257{width:2.944000pt;}
._b_c01257{width:4.288000pt;}
._c_c01257{width:5.888000pt;}
._9_c01257{width:6.976000pt;}
._a_c01257{width:7.872000pt;}
._5_c01257{width:9.472000pt;}
._e_c01257{width:11.648000pt;}
._f_c01257{width:12.992000pt;}
._8_c01257{width:16.928000pt;}
._6_c01257{width:21.824000pt;}
._7_c01257{width:22.976000pt;}
._d_c01257{width:26.048000pt;}
._10_c01257{width:42.304000pt;}
._11_c01257{width:43.680000pt;}
.fs0_c01257{font-size:64.000000pt;}
.y0_c01257{bottom:0.000000pt;}
.y2_c01257{bottom:51.040000pt;}
.y1_c01257{bottom:69.440000pt;}
.y2e_c01257{bottom:163.200000pt;}
.y2d_c01257{bottom:181.306667pt;}
.y2c_c01257{bottom:218.746667pt;}
.y2b_c01257{bottom:257.306667pt;}
.y2a_c01257{bottom:296.026667pt;}
.y29_c01257{bottom:314.426667pt;}
.y28_c01257{bottom:332.826667pt;}
.y27_c01257{bottom:351.226667pt;}
.y26_c01257{bottom:369.626667pt;}
.y25_c01257{bottom:388.026667pt;}
.y24_c01257{bottom:406.466667pt;}
.y23_c01257{bottom:424.866667pt;}
.y22_c01257{bottom:442.946667pt;}
.y21_c01257{bottom:461.346667pt;}
.y20_c01257{bottom:480.066667pt;}
.y1f_c01257{bottom:498.466667pt;}
.y1e_c01257{bottom:516.866667pt;}
.y1d_c01257{bottom:535.266667pt;}
.y1c_c01257{bottom:553.666667pt;}
.y1b_c01257{bottom:572.066667pt;}
.y1a_c01257{bottom:590.466667pt;}
.y19_c01257{bottom:608.573333pt;}
.y18_c01257{bottom:627.293333pt;}
.y17_c01257{bottom:645.693333pt;}
.y16_c01257{bottom:664.093333pt;}
.y15_c01257{bottom:682.493333pt;}
.y14_c01257{bottom:700.893333pt;}
.y13_c01257{bottom:719.293333pt;}
.y12_c01257{bottom:737.373333pt;}
.y11_c01257{bottom:755.773333pt;}
.y10_c01257{bottom:774.493333pt;}
.yf_c01257{bottom:792.893333pt;}
.ye_c01257{bottom:811.293333pt;}
.yd_c01257{bottom:829.733333pt;}
.yc_c01257{bottom:848.133333pt;}
.yb_c01257{bottom:866.533333pt;}
.ya_c01257{bottom:884.933333pt;}
.y9_c01257{bottom:903.333333pt;}
.y8_c01257{bottom:921.733333pt;}
.y7_c01257{bottom:940.133333pt;}
.y6_c01257{bottom:958.533333pt;}
.y5_c01257{bottom:976.613333pt;}
.y4_c01257{bottom:995.333333pt;}
.y3_c01257{bottom:1013.733333pt;}
.h2_c01257{height:44.468750pt;}
.h4_c01257{height:57.375000pt;}
.h3_c01257{height:64.500000pt;}
.h0_c01257{height:1122.560000pt;}
.h1_c01257{height:1122.666667pt;}
.w0_c01257{width:793.760000pt;}
.w1_c01257{width:794.000000pt;}
.x0_c01257{left:0.000000pt;}
.x1_c01257{left:113.472000pt;}
.x3_c01257{left:137.466667pt;}
.x2_c01257{left:161.466667pt;}
}





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

.ir_c01258:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01258;src:url('chunks/assets/font_8deb4033ce297377b0b2fbfc.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01258;src:url('chunks/assets/font_e31595cd8364720fc66f85c7.woff2')format("woff");}.ff2_c01258{font-family:ff2_c01258;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:ff3_c01258;src:url('chunks/assets/font_206bf2a36ab63074ca8d57ba.woff2')format("woff");}.ff3_c01258{font-family:ff3_c01258;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_c01258;src:url('chunks/assets/font_9c3ec44b7c29e637c126af40.woff2')format("woff");}.ff4_c01258{font-family:ff4_c01258;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_c01258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01258{vertical-align:0.000000px;}
.ls2_c01258{letter-spacing:-0.792000px;}
.ls1_c01258{letter-spacing:0.000000px;}
.ls0_c01258{letter-spacing:40.320000px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01258{word-spacing:-18.000000px;}
.ws1_c01258{word-spacing:-17.208000px;}
.ws2_c01258{word-spacing:0.000000px;}
._11_c01258{margin-left:-4.968000px;}
._2_c01258{margin-left:-3.312000px;}
._3_c01258{margin-left:-2.304000px;}
._0_c01258{margin-left:-1.008000px;}
._1_c01258{width:1.092024px;}
._5_c01258{width:2.160000px;}
._6_c01258{width:3.215952px;}
._a_c01258{width:4.283928px;}
._9_c01258{width:5.676120px;}
._e_c01258{width:6.912000px;}
._f_c01258{width:7.992000px;}
._7_c01258{width:11.424024px;}
._8_c01258{width:12.503952px;}
._b_c01258{width:13.536000px;}
._10_c01258{width:14.592312px;}
._4_c01258{width:16.200000px;}
._d_c01258{width:21.983976px;}
._c_c01258{width:23.448024px;}
._13_c01258{width:39.720024px;}
._12_c01258{width:40.752000px;}
.fc1_c01258{color:rgb(50,50,50);}
.fc0_c01258{color:rgb(0,0,0);}
.fs2_c01258{font-size:56.880000px;}
.fs0_c01258{font-size:72.000000px;}
.fs1_c01258{font-size:108.000000px;}
.y0_c01258{bottom:0.000000px;}
.y2_c01258{bottom:57.420000px;}
.y1_c01258{bottom:78.120000px;}
.y33_c01258{bottom:124.020000px;}
.y32_c01258{bottom:144.720000px;}
.y31_c01258{bottom:165.420000px;}
.y30_c01258{bottom:186.120000px;}
.y2f_c01258{bottom:206.850000px;}
.y2e_c01258{bottom:227.550000px;}
.y2d_c01258{bottom:248.250000px;}
.y2c_c01258{bottom:268.950000px;}
.y2b_c01258{bottom:289.650000px;}
.y2a_c01258{bottom:310.350000px;}
.y29_c01258{bottom:331.050000px;}
.y28_c01258{bottom:351.750000px;}
.y27_c01258{bottom:372.450000px;}
.y26_c01258{bottom:393.150000px;}
.y25_c01258{bottom:413.850000px;}
.y24_c01258{bottom:434.550000px;}
.y23_c01258{bottom:455.295000px;}
.y22_c01258{bottom:475.995000px;}
.y21_c01258{bottom:496.695000px;}
.y20_c01258{bottom:517.395000px;}
.y1f_c01258{bottom:538.095000px;}
.y1e_c01258{bottom:558.795000px;}
.y1d_c01258{bottom:579.495000px;}
.y1c_c01258{bottom:600.195000px;}
.y1b_c01258{bottom:620.895000px;}
.y1a_c01258{bottom:641.595000px;}
.y19_c01258{bottom:662.295000px;}
.y18_c01258{bottom:683.025000px;}
.y17_c01258{bottom:703.725000px;}
.y16_c01258{bottom:724.425000px;}
.y15_c01258{bottom:745.125000px;}
.y14_c01258{bottom:765.645000px;}
.y13_c01258{bottom:786.345000px;}
.y12_c01258{bottom:807.045000px;}
.y11_c01258{bottom:827.745000px;}
.y10_c01258{bottom:848.445000px;}
.yf_c01258{bottom:869.145000px;}
.ye_c01258{bottom:889.845000px;}
.yd_c01258{bottom:910.545000px;}
.yc_c01258{bottom:931.290000px;}
.yb_c01258{bottom:951.990000px;}
.ya_c01258{bottom:972.690000px;}
.y9_c01258{bottom:993.390000px;}
.y8_c01258{bottom:1012.830000px;}
.y7_c01258{bottom:1030.470000px;}
.y6_c01258{bottom:1050.810000px;}
.y5_c01258{bottom:1071.510000px;}
.y4_c01258{bottom:1091.130000px;}
.y3_c01258{bottom:1132.170000px;}
.h2_c01258{height:50.027344px;}
.h6_c01258{height:57.324375px;}
.h4_c01258{height:58.463677px;}
.h5_c01258{height:72.562500px;}
.h3_c01258{height:75.041016px;}
.h0_c01258{height:1262.880000px;}
.h1_c01258{height:1263.000000px;}
.w0_c01258{width:892.980000px;}
.w1_c01258{width:893.250000px;}
.x0_c01258{left:0.000000px;}
.x2_c01258{left:127.656000px;}
.x6_c01258{left:211.710000px;}
.x5_c01258{left:315.975000px;}
.x3_c01258{left:382.395000px;}
.x4_c01258{left:446.475000px;}
.x1_c01258{left:738.510000px;}
@media print{
.v0_c01258{vertical-align:0.000000pt;}
.ls2_c01258{letter-spacing:-0.704000pt;}
.ls1_c01258{letter-spacing:0.000000pt;}
.ls0_c01258{letter-spacing:35.840000pt;}
.ws0_c01258{word-spacing:-16.000000pt;}
.ws1_c01258{word-spacing:-15.296000pt;}
.ws2_c01258{word-spacing:0.000000pt;}
._11_c01258{margin-left:-4.416000pt;}
._2_c01258{margin-left:-2.944000pt;}
._3_c01258{margin-left:-2.048000pt;}
._0_c01258{margin-left:-0.896000pt;}
._1_c01258{width:0.970688pt;}
._5_c01258{width:1.920000pt;}
._6_c01258{width:2.858624pt;}
._a_c01258{width:3.807936pt;}
._9_c01258{width:5.045440pt;}
._e_c01258{width:6.144000pt;}
._f_c01258{width:7.104000pt;}
._7_c01258{width:10.154688pt;}
._8_c01258{width:11.114624pt;}
._b_c01258{width:12.032000pt;}
._10_c01258{width:12.970944pt;}
._4_c01258{width:14.400000pt;}
._d_c01258{width:19.541312pt;}
._c_c01258{width:20.842688pt;}
._13_c01258{width:35.306688pt;}
._12_c01258{width:36.224000pt;}
.fs2_c01258{font-size:50.560000pt;}
.fs0_c01258{font-size:64.000000pt;}
.fs1_c01258{font-size:96.000000pt;}
.y0_c01258{bottom:0.000000pt;}
.y2_c01258{bottom:51.040000pt;}
.y1_c01258{bottom:69.440000pt;}
.y33_c01258{bottom:110.240000pt;}
.y32_c01258{bottom:128.640000pt;}
.y31_c01258{bottom:147.040000pt;}
.y30_c01258{bottom:165.440000pt;}
.y2f_c01258{bottom:183.866667pt;}
.y2e_c01258{bottom:202.266667pt;}
.y2d_c01258{bottom:220.666667pt;}
.y2c_c01258{bottom:239.066667pt;}
.y2b_c01258{bottom:257.466667pt;}
.y2a_c01258{bottom:275.866667pt;}
.y29_c01258{bottom:294.266667pt;}
.y28_c01258{bottom:312.666667pt;}
.y27_c01258{bottom:331.066667pt;}
.y26_c01258{bottom:349.466667pt;}
.y25_c01258{bottom:367.866667pt;}
.y24_c01258{bottom:386.266667pt;}
.y23_c01258{bottom:404.706667pt;}
.y22_c01258{bottom:423.106667pt;}
.y21_c01258{bottom:441.506667pt;}
.y20_c01258{bottom:459.906667pt;}
.y1f_c01258{bottom:478.306667pt;}
.y1e_c01258{bottom:496.706667pt;}
.y1d_c01258{bottom:515.106667pt;}
.y1c_c01258{bottom:533.506667pt;}
.y1b_c01258{bottom:551.906667pt;}
.y1a_c01258{bottom:570.306667pt;}
.y19_c01258{bottom:588.706667pt;}
.y18_c01258{bottom:607.133333pt;}
.y17_c01258{bottom:625.533333pt;}
.y16_c01258{bottom:643.933333pt;}
.y15_c01258{bottom:662.333333pt;}
.y14_c01258{bottom:680.573333pt;}
.y13_c01258{bottom:698.973333pt;}
.y12_c01258{bottom:717.373333pt;}
.y11_c01258{bottom:735.773333pt;}
.y10_c01258{bottom:754.173333pt;}
.yf_c01258{bottom:772.573333pt;}
.ye_c01258{bottom:790.973333pt;}
.yd_c01258{bottom:809.373333pt;}
.yc_c01258{bottom:827.813333pt;}
.yb_c01258{bottom:846.213333pt;}
.ya_c01258{bottom:864.613333pt;}
.y9_c01258{bottom:883.013333pt;}
.y8_c01258{bottom:900.293333pt;}
.y7_c01258{bottom:915.973333pt;}
.y6_c01258{bottom:934.053333pt;}
.y5_c01258{bottom:952.453333pt;}
.y4_c01258{bottom:969.893333pt;}
.y3_c01258{bottom:1006.373333pt;}
.h2_c01258{height:44.468750pt;}
.h6_c01258{height:50.955000pt;}
.h4_c01258{height:51.967713pt;}
.h5_c01258{height:64.500000pt;}
.h3_c01258{height:66.703125pt;}
.h0_c01258{height:1122.560000pt;}
.h1_c01258{height:1122.666667pt;}
.w0_c01258{width:793.760000pt;}
.w1_c01258{width:794.000000pt;}
.x0_c01258{left:0.000000pt;}
.x2_c01258{left:113.472000pt;}
.x6_c01258{left:188.186667pt;}
.x5_c01258{left:280.866667pt;}
.x3_c01258{left:339.906667pt;}
.x4_c01258{left:396.866667pt;}
.x1_c01258{left:656.453333pt;}
}





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

.ir_c01259:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01259;src:url('chunks/assets/font_a69b6bea0d1697fc1bcec09a.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01259;src:url('chunks/assets/font_08b441e079944ead404c736d.woff2')format("woff");}.ff2_c01259{font-family:ff2_c01259;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_c01259;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff3_c01259{font-family:ff3_c01259;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01259;src:url('chunks/assets/font_e3fc4d2ce983c74da526b7ab.woff2')format("woff");}.ff4_c01259{font-family:ff4_c01259;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_c01259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01259{vertical-align:0.000000px;}
.ls3_c01259{letter-spacing:0.000000px;}
.ls1_c01259{letter-spacing:0.720000px;}
.ls0_c01259{letter-spacing:33.984000px;}
.ls2_c01259{letter-spacing:36.000000px;}
.sc__c01259{text-shadow:none;}
.sc0_c01259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01259{-webkit-text-stroke:0px transparent;}
.sc0_c01259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01259{word-spacing:-18.000000px;}
.ws1_c01259{word-spacing:0.000000px;}
._f_c01259{margin-left:-4.780800px;}
._9_c01259{margin-left:-3.744000px;}
._6_c01259{margin-left:-2.376000px;}
._0_c01259{margin-left:-1.267200px;}
._2_c01259{width:1.296000px;}
._8_c01259{width:2.592000px;}
._7_c01259{width:3.960000px;}
._3_c01259{width:5.400000px;}
._4_c01259{width:6.480000px;}
._c_c01259{width:8.568000px;}
._5_c01259{width:9.864000px;}
._e_c01259{width:11.188800px;}
._d_c01259{width:12.355200px;}
._1_c01259{width:13.968000px;}
._11_c01259{width:14.976000px;}
._10_c01259{width:16.200000px;}
._a_c01259{width:36.000000px;}
._b_c01259{width:37.008000px;}
.fc1_c01259{color:rgb(255,255,255);}
.fc0_c01259{color:rgb(0,0,0);}
.fs1_c01259{font-size:63.360000px;}
.fs0_c01259{font-size:72.000000px;}
.y0_c01259{bottom:0.000000px;}
.y2_c01259{bottom:57.420000px;}
.y1_c01259{bottom:78.120000px;}
.y34_c01259{bottom:128.520000px;}
.y33_c01259{bottom:149.220000px;}
.y32_c01259{bottom:169.920000px;}
.y31_c01259{bottom:190.620000px;}
.y30_c01259{bottom:211.350000px;}
.y2f_c01259{bottom:232.050000px;}
.y2e_c01259{bottom:252.750000px;}
.y2d_c01259{bottom:273.450000px;}
.y2c_c01259{bottom:293.790000px;}
.y2b_c01259{bottom:314.850000px;}
.y2a_c01259{bottom:335.550000px;}
.y29_c01259{bottom:356.250000px;}
.y28_c01259{bottom:376.950000px;}
.y27_c01259{bottom:397.650000px;}
.y26_c01259{bottom:418.350000px;}
.y25_c01259{bottom:439.095000px;}
.y24_c01259{bottom:459.795000px;}
.y23_c01259{bottom:480.495000px;}
.y22_c01259{bottom:501.195000px;}
.y21_c01259{bottom:521.895000px;}
.y20_c01259{bottom:542.595000px;}
.y1f_c01259{bottom:563.295000px;}
.y1e_c01259{bottom:583.995000px;}
.y1d_c01259{bottom:604.695000px;}
.y1c_c01259{bottom:625.395000px;}
.y1b_c01259{bottom:646.095000px;}
.y1a_c01259{bottom:666.795000px;}
.y19_c01259{bottom:687.525000px;}
.y18_c01259{bottom:708.225000px;}
.y17_c01259{bottom:728.565000px;}
.y16_c01259{bottom:749.625000px;}
.y15_c01259{bottom:770.325000px;}
.y14_c01259{bottom:791.025000px;}
.y13_c01259{bottom:811.725000px;}
.y12_c01259{bottom:832.425000px;}
.y11_c01259{bottom:853.125000px;}
.y10_c01259{bottom:873.825000px;}
.yf_c01259{bottom:894.525000px;}
.ye_c01259{bottom:915.270000px;}
.yd_c01259{bottom:935.970000px;}
.yc_c01259{bottom:956.670000px;}
.yb_c01259{bottom:977.370000px;}
.ya_c01259{bottom:998.070000px;}
.y9_c01259{bottom:1018.770000px;}
.y8_c01259{bottom:1039.470000px;}
.y7_c01259{bottom:1060.170000px;}
.y6_c01259{bottom:1080.870000px;}
.y5_c01259{bottom:1101.570000px;}
.y4_c01259{bottom:1121.910000px;}
.y3_c01259{bottom:1142.430000px;}
.h3_c01259{height:44.024062px;}
.h6_c01259{height:49.992188px;}
.h2_c01259{height:50.027344px;}
.h5_c01259{height:64.546875px;}
.h4_c01259{height:72.562500px;}
.h0_c01259{height:1262.880000px;}
.h1_c01259{height:1263.000000px;}
.w0_c01259{width:892.980000px;}
.w1_c01259{width:893.250000px;}
.x0_c01259{left:0.000000px;}
.x1_c01259{left:127.656000px;}
.x2_c01259{left:154.650000px;}
.x3_c01259{left:181.650000px;}
.x4_c01259{left:191.550000px;}
.x5_c01259{left:212.610000px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.ls3_c01259{letter-spacing:0.000000pt;}
.ls1_c01259{letter-spacing:0.640000pt;}
.ls0_c01259{letter-spacing:30.208000pt;}
.ls2_c01259{letter-spacing:32.000000pt;}
.ws0_c01259{word-spacing:-16.000000pt;}
.ws1_c01259{word-spacing:0.000000pt;}
._f_c01259{margin-left:-4.249600pt;}
._9_c01259{margin-left:-3.328000pt;}
._6_c01259{margin-left:-2.112000pt;}
._0_c01259{margin-left:-1.126400pt;}
._2_c01259{width:1.152000pt;}
._8_c01259{width:2.304000pt;}
._7_c01259{width:3.520000pt;}
._3_c01259{width:4.800000pt;}
._4_c01259{width:5.760000pt;}
._c_c01259{width:7.616000pt;}
._5_c01259{width:8.768000pt;}
._e_c01259{width:9.945600pt;}
._d_c01259{width:10.982400pt;}
._1_c01259{width:12.416000pt;}
._11_c01259{width:13.312000pt;}
._10_c01259{width:14.400000pt;}
._a_c01259{width:32.000000pt;}
._b_c01259{width:32.896000pt;}
.fs1_c01259{font-size:56.320000pt;}
.fs0_c01259{font-size:64.000000pt;}
.y0_c01259{bottom:0.000000pt;}
.y2_c01259{bottom:51.040000pt;}
.y1_c01259{bottom:69.440000pt;}
.y34_c01259{bottom:114.240000pt;}
.y33_c01259{bottom:132.640000pt;}
.y32_c01259{bottom:151.040000pt;}
.y31_c01259{bottom:169.440000pt;}
.y30_c01259{bottom:187.866667pt;}
.y2f_c01259{bottom:206.266667pt;}
.y2e_c01259{bottom:224.666667pt;}
.y2d_c01259{bottom:243.066667pt;}
.y2c_c01259{bottom:261.146667pt;}
.y2b_c01259{bottom:279.866667pt;}
.y2a_c01259{bottom:298.266667pt;}
.y29_c01259{bottom:316.666667pt;}
.y28_c01259{bottom:335.066667pt;}
.y27_c01259{bottom:353.466667pt;}
.y26_c01259{bottom:371.866667pt;}
.y25_c01259{bottom:390.306667pt;}
.y24_c01259{bottom:408.706667pt;}
.y23_c01259{bottom:427.106667pt;}
.y22_c01259{bottom:445.506667pt;}
.y21_c01259{bottom:463.906667pt;}
.y20_c01259{bottom:482.306667pt;}
.y1f_c01259{bottom:500.706667pt;}
.y1e_c01259{bottom:519.106667pt;}
.y1d_c01259{bottom:537.506667pt;}
.y1c_c01259{bottom:555.906667pt;}
.y1b_c01259{bottom:574.306667pt;}
.y1a_c01259{bottom:592.706667pt;}
.y19_c01259{bottom:611.133333pt;}
.y18_c01259{bottom:629.533333pt;}
.y17_c01259{bottom:647.613333pt;}
.y16_c01259{bottom:666.333333pt;}
.y15_c01259{bottom:684.733333pt;}
.y14_c01259{bottom:703.133333pt;}
.y13_c01259{bottom:721.533333pt;}
.y12_c01259{bottom:739.933333pt;}
.y11_c01259{bottom:758.333333pt;}
.y10_c01259{bottom:776.733333pt;}
.yf_c01259{bottom:795.133333pt;}
.ye_c01259{bottom:813.573333pt;}
.yd_c01259{bottom:831.973333pt;}
.yc_c01259{bottom:850.373333pt;}
.yb_c01259{bottom:868.773333pt;}
.ya_c01259{bottom:887.173333pt;}
.y9_c01259{bottom:905.573333pt;}
.y8_c01259{bottom:923.973333pt;}
.y7_c01259{bottom:942.373333pt;}
.y6_c01259{bottom:960.773333pt;}
.y5_c01259{bottom:979.173333pt;}
.y4_c01259{bottom:997.253333pt;}
.y3_c01259{bottom:1015.493333pt;}
.h3_c01259{height:39.132500pt;}
.h6_c01259{height:44.437500pt;}
.h2_c01259{height:44.468750pt;}
.h5_c01259{height:57.375000pt;}
.h4_c01259{height:64.500000pt;}
.h0_c01259{height:1122.560000pt;}
.h1_c01259{height:1122.666667pt;}
.w0_c01259{width:793.760000pt;}
.w1_c01259{width:794.000000pt;}
.x0_c01259{left:0.000000pt;}
.x1_c01259{left:113.472000pt;}
.x2_c01259{left:137.466667pt;}
.x3_c01259{left:161.466667pt;}
.x4_c01259{left:170.266667pt;}
.x5_c01259{left:188.986667pt;}
}





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

.ir_c01260:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01260;src:url('chunks/assets/font_9137f1e6cac1a55446cfc5d5.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01260;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff2_c01260{font-family:ff2_c01260;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01260;src:url('chunks/assets/font_cb6af13f7b4be2e8690fda8c.woff2')format("woff");}.ff3_c01260{font-family:ff3_c01260;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_c01260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01260{vertical-align:0.000000px;}
.ls0_c01260{letter-spacing:0.000000px;}
.sc__c01260{text-shadow:none;}
.sc0_c01260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01260{-webkit-text-stroke:0px transparent;}
.sc0_c01260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01260{word-spacing:-18.000000px;}
.ws1_c01260{word-spacing:0.000000px;}
._7_c01260{margin-left:-3.600000px;}
._0_c01260{margin-left:-2.016000px;}
._5_c01260{margin-left:-1.008000px;}
._3_c01260{width:1.128024px;}
._1_c01260{width:2.808000px;}
._2_c01260{width:4.176000px;}
._c_c01260{width:6.840000px;}
._d_c01260{width:8.208000px;}
._a_c01260{width:9.360000px;}
._9_c01260{width:10.728000px;}
._b_c01260{width:11.759976px;}
._4_c01260{width:12.888000px;}
._6_c01260{width:19.008000px;}
._8_c01260{width:20.664000px;}
.fc0_c01260{color:rgb(0,0,0);}
.fs0_c01260{font-size:72.000000px;}
.y0_c01260{bottom:0.000000px;}
.y2_c01260{bottom:57.420000px;}
.y1_c01260{bottom:78.120000px;}
.y33_c01260{bottom:146.700000px;}
.y32_c01260{bottom:167.400000px;}
.y31_c01260{bottom:187.740000px;}
.y30_c01260{bottom:208.830000px;}
.y2f_c01260{bottom:229.530000px;}
.y2e_c01260{bottom:250.230000px;}
.y2d_c01260{bottom:270.930000px;}
.y2c_c01260{bottom:291.630000px;}
.y2b_c01260{bottom:312.330000px;}
.y2a_c01260{bottom:333.030000px;}
.y29_c01260{bottom:353.730000px;}
.y28_c01260{bottom:374.430000px;}
.y27_c01260{bottom:395.130000px;}
.y26_c01260{bottom:415.830000px;}
.y25_c01260{bottom:436.530000px;}
.y24_c01260{bottom:457.275000px;}
.y23_c01260{bottom:477.975000px;}
.y22_c01260{bottom:498.675000px;}
.y21_c01260{bottom:519.375000px;}
.y20_c01260{bottom:540.075000px;}
.y1f_c01260{bottom:560.775000px;}
.y1e_c01260{bottom:581.475000px;}
.y1d_c01260{bottom:602.175000px;}
.y1c_c01260{bottom:622.875000px;}
.y1b_c01260{bottom:643.575000px;}
.y1a_c01260{bottom:664.275000px;}
.y19_c01260{bottom:685.005000px;}
.y18_c01260{bottom:705.705000px;}
.y17_c01260{bottom:726.405000px;}
.y16_c01260{bottom:747.105000px;}
.y15_c01260{bottom:767.805000px;}
.y14_c01260{bottom:788.505000px;}
.y13_c01260{bottom:809.205000px;}
.y12_c01260{bottom:829.905000px;}
.y11_c01260{bottom:850.605000px;}
.y10_c01260{bottom:871.305000px;}
.yf_c01260{bottom:892.005000px;}
.ye_c01260{bottom:912.705000px;}
.yd_c01260{bottom:933.450000px;}
.yc_c01260{bottom:953.790000px;}
.yb_c01260{bottom:974.850000px;}
.ya_c01260{bottom:995.550000px;}
.y9_c01260{bottom:1016.250000px;}
.y8_c01260{bottom:1036.950000px;}
.y7_c01260{bottom:1057.650000px;}
.y6_c01260{bottom:1078.350000px;}
.y5_c01260{bottom:1099.050000px;}
.y4_c01260{bottom:1119.750000px;}
.y3_c01260{bottom:1140.450000px;}
.h2_c01260{height:50.027344px;}
.h3_c01260{height:64.546875px;}
.h4_c01260{height:72.562500px;}
.h0_c01260{height:1262.880000px;}
.h1_c01260{height:1263.000000px;}
.w0_c01260{width:892.980000px;}
.w1_c01260{width:893.250000px;}
.x0_c01260{left:0.000000px;}
.x2_c01260{left:127.656000px;}
.x3_c01260{left:154.650000px;}
.x4_c01260{left:181.650000px;}
.x5_c01260{left:191.550000px;}
.x6_c01260{left:212.610000px;}
.x1_c01260{left:738.510000px;}
@media print{
.v0_c01260{vertical-align:0.000000pt;}
.ls0_c01260{letter-spacing:0.000000pt;}
.ws0_c01260{word-spacing:-16.000000pt;}
.ws1_c01260{word-spacing:0.000000pt;}
._7_c01260{margin-left:-3.200000pt;}
._0_c01260{margin-left:-1.792000pt;}
._5_c01260{margin-left:-0.896000pt;}
._3_c01260{width:1.002688pt;}
._1_c01260{width:2.496000pt;}
._2_c01260{width:3.712000pt;}
._c_c01260{width:6.080000pt;}
._d_c01260{width:7.296000pt;}
._a_c01260{width:8.320000pt;}
._9_c01260{width:9.536000pt;}
._b_c01260{width:10.453312pt;}
._4_c01260{width:11.456000pt;}
._6_c01260{width:16.896000pt;}
._8_c01260{width:18.368000pt;}
.fs0_c01260{font-size:64.000000pt;}
.y0_c01260{bottom:0.000000pt;}
.y2_c01260{bottom:51.040000pt;}
.y1_c01260{bottom:69.440000pt;}
.y33_c01260{bottom:130.400000pt;}
.y32_c01260{bottom:148.800000pt;}
.y31_c01260{bottom:166.880000pt;}
.y30_c01260{bottom:185.626667pt;}
.y2f_c01260{bottom:204.026667pt;}
.y2e_c01260{bottom:222.426667pt;}
.y2d_c01260{bottom:240.826667pt;}
.y2c_c01260{bottom:259.226667pt;}
.y2b_c01260{bottom:277.626667pt;}
.y2a_c01260{bottom:296.026667pt;}
.y29_c01260{bottom:314.426667pt;}
.y28_c01260{bottom:332.826667pt;}
.y27_c01260{bottom:351.226667pt;}
.y26_c01260{bottom:369.626667pt;}
.y25_c01260{bottom:388.026667pt;}
.y24_c01260{bottom:406.466667pt;}
.y23_c01260{bottom:424.866667pt;}
.y22_c01260{bottom:443.266667pt;}
.y21_c01260{bottom:461.666667pt;}
.y20_c01260{bottom:480.066667pt;}
.y1f_c01260{bottom:498.466667pt;}
.y1e_c01260{bottom:516.866667pt;}
.y1d_c01260{bottom:535.266667pt;}
.y1c_c01260{bottom:553.666667pt;}
.y1b_c01260{bottom:572.066667pt;}
.y1a_c01260{bottom:590.466667pt;}
.y19_c01260{bottom:608.893333pt;}
.y18_c01260{bottom:627.293333pt;}
.y17_c01260{bottom:645.693333pt;}
.y16_c01260{bottom:664.093333pt;}
.y15_c01260{bottom:682.493333pt;}
.y14_c01260{bottom:700.893333pt;}
.y13_c01260{bottom:719.293333pt;}
.y12_c01260{bottom:737.693333pt;}
.y11_c01260{bottom:756.093333pt;}
.y10_c01260{bottom:774.493333pt;}
.yf_c01260{bottom:792.893333pt;}
.ye_c01260{bottom:811.293333pt;}
.yd_c01260{bottom:829.733333pt;}
.yc_c01260{bottom:847.813333pt;}
.yb_c01260{bottom:866.533333pt;}
.ya_c01260{bottom:884.933333pt;}
.y9_c01260{bottom:903.333333pt;}
.y8_c01260{bottom:921.733333pt;}
.y7_c01260{bottom:940.133333pt;}
.y6_c01260{bottom:958.533333pt;}
.y5_c01260{bottom:976.933333pt;}
.y4_c01260{bottom:995.333333pt;}
.y3_c01260{bottom:1013.733333pt;}
.h2_c01260{height:44.468750pt;}
.h3_c01260{height:57.375000pt;}
.h4_c01260{height:64.500000pt;}
.h0_c01260{height:1122.560000pt;}
.h1_c01260{height:1122.666667pt;}
.w0_c01260{width:793.760000pt;}
.w1_c01260{width:794.000000pt;}
.x0_c01260{left:0.000000pt;}
.x2_c01260{left:113.472000pt;}
.x3_c01260{left:137.466667pt;}
.x4_c01260{left:161.466667pt;}
.x5_c01260{left:170.266667pt;}
.x6_c01260{left:188.986667pt;}
.x1_c01260{left:656.453333pt;}
}





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

.ir_c01261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01261;src:url('chunks/assets/font_869b47b0b4367c0003c4c8e6.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01261;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff2_c01261{font-family:ff2_c01261;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01261;src:url('chunks/assets/font_292fbeafc0338ed70871affa.woff2')format("woff");}.ff3_c01261{font-family:ff3_c01261;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_c01261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01261{vertical-align:0.000000px;}
.ls1_c01261{letter-spacing:-0.288000px;}
.ls0_c01261{letter-spacing:0.000000px;}
.ls2_c01261{letter-spacing:0.144000px;}
.sc__c01261{text-shadow:none;}
.sc0_c01261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01261{-webkit-text-stroke:0px transparent;}
.sc0_c01261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01261{word-spacing:-18.144000px;}
.ws0_c01261{word-spacing:-18.000000px;}
.ws1_c01261{word-spacing:-17.712000px;}
.ws3_c01261{word-spacing:0.000000px;}
._12_c01261{margin-left:-3.888000px;}
._0_c01261{margin-left:-2.016000px;}
._2_c01261{margin-left:-1.008000px;}
._4_c01261{width:1.008000px;}
._3_c01261{width:2.088000px;}
._1_c01261{width:3.096000px;}
._8_c01261{width:4.248000px;}
._e_c01261{width:6.336000px;}
._13_c01261{width:8.064000px;}
._5_c01261{width:12.312000px;}
._6_c01261{width:13.500000px;}
._f_c01261{width:14.976000px;}
._7_c01261{width:16.776000px;}
._10_c01261{width:20.016000px;}
._11_c01261{width:21.168000px;}
._c_c01261{width:22.896000px;}
._b_c01261{width:23.904000px;}
._d_c01261{width:25.200000px;}
._9_c01261{width:26.352000px;}
._a_c01261{width:27.504000px;}
.fc0_c01261{color:rgb(0,0,0);}
.fs0_c01261{font-size:72.000000px;}
.y0_c01261{bottom:0.000000px;}
.y2_c01261{bottom:57.420000px;}
.y1_c01261{bottom:78.120000px;}
.y34_c01261{bottom:126.000000px;}
.y33_c01261{bottom:146.700000px;}
.y32_c01261{bottom:167.040000px;}
.y31_c01261{bottom:188.100000px;}
.y30_c01261{bottom:208.830000px;}
.y2f_c01261{bottom:229.530000px;}
.y2e_c01261{bottom:250.230000px;}
.y2d_c01261{bottom:270.930000px;}
.y2c_c01261{bottom:291.630000px;}
.y2b_c01261{bottom:312.330000px;}
.y2a_c01261{bottom:333.030000px;}
.y29_c01261{bottom:353.730000px;}
.y28_c01261{bottom:374.070000px;}
.y27_c01261{bottom:395.130000px;}
.y26_c01261{bottom:415.830000px;}
.y25_c01261{bottom:436.530000px;}
.y24_c01261{bottom:457.275000px;}
.y23_c01261{bottom:477.975000px;}
.y22_c01261{bottom:498.675000px;}
.y21_c01261{bottom:519.375000px;}
.y20_c01261{bottom:540.075000px;}
.y1f_c01261{bottom:560.775000px;}
.y1e_c01261{bottom:581.475000px;}
.y1d_c01261{bottom:602.175000px;}
.y1c_c01261{bottom:622.875000px;}
.y1b_c01261{bottom:643.575000px;}
.y1a_c01261{bottom:663.915000px;}
.y19_c01261{bottom:685.005000px;}
.y18_c01261{bottom:705.705000px;}
.y17_c01261{bottom:726.405000px;}
.y16_c01261{bottom:747.105000px;}
.y15_c01261{bottom:767.805000px;}
.y14_c01261{bottom:788.505000px;}
.y13_c01261{bottom:809.205000px;}
.y12_c01261{bottom:829.905000px;}
.y11_c01261{bottom:850.605000px;}
.y10_c01261{bottom:871.305000px;}
.yf_c01261{bottom:892.005000px;}
.ye_c01261{bottom:912.705000px;}
.yd_c01261{bottom:933.450000px;}
.yc_c01261{bottom:954.150000px;}
.yb_c01261{bottom:974.850000px;}
.ya_c01261{bottom:995.190000px;}
.y9_c01261{bottom:1016.250000px;}
.y8_c01261{bottom:1036.950000px;}
.y7_c01261{bottom:1057.650000px;}
.y6_c01261{bottom:1078.350000px;}
.y5_c01261{bottom:1099.050000px;}
.y4_c01261{bottom:1119.750000px;}
.y3_c01261{bottom:1140.450000px;}
.h2_c01261{height:50.027344px;}
.h3_c01261{height:64.546875px;}
.h4_c01261{height:72.562500px;}
.h0_c01261{height:1262.880000px;}
.h1_c01261{height:1263.000000px;}
.w0_c01261{width:892.980000px;}
.w1_c01261{width:893.250000px;}
.x0_c01261{left:0.000000px;}
.x1_c01261{left:127.656000px;}
.x2_c01261{left:154.650000px;}
.x3_c01261{left:181.650000px;}
@media print{
.v0_c01261{vertical-align:0.000000pt;}
.ls1_c01261{letter-spacing:-0.256000pt;}
.ls0_c01261{letter-spacing:0.000000pt;}
.ls2_c01261{letter-spacing:0.128000pt;}
.ws2_c01261{word-spacing:-16.128000pt;}
.ws0_c01261{word-spacing:-16.000000pt;}
.ws1_c01261{word-spacing:-15.744000pt;}
.ws3_c01261{word-spacing:0.000000pt;}
._12_c01261{margin-left:-3.456000pt;}
._0_c01261{margin-left:-1.792000pt;}
._2_c01261{margin-left:-0.896000pt;}
._4_c01261{width:0.896000pt;}
._3_c01261{width:1.856000pt;}
._1_c01261{width:2.752000pt;}
._8_c01261{width:3.776000pt;}
._e_c01261{width:5.632000pt;}
._13_c01261{width:7.168000pt;}
._5_c01261{width:10.944000pt;}
._6_c01261{width:12.000000pt;}
._f_c01261{width:13.312000pt;}
._7_c01261{width:14.912000pt;}
._10_c01261{width:17.792000pt;}
._11_c01261{width:18.816000pt;}
._c_c01261{width:20.352000pt;}
._b_c01261{width:21.248000pt;}
._d_c01261{width:22.400000pt;}
._9_c01261{width:23.424000pt;}
._a_c01261{width:24.448000pt;}
.fs0_c01261{font-size:64.000000pt;}
.y0_c01261{bottom:0.000000pt;}
.y2_c01261{bottom:51.040000pt;}
.y1_c01261{bottom:69.440000pt;}
.y34_c01261{bottom:112.000000pt;}
.y33_c01261{bottom:130.400000pt;}
.y32_c01261{bottom:148.480000pt;}
.y31_c01261{bottom:167.200000pt;}
.y30_c01261{bottom:185.626667pt;}
.y2f_c01261{bottom:204.026667pt;}
.y2e_c01261{bottom:222.426667pt;}
.y2d_c01261{bottom:240.826667pt;}
.y2c_c01261{bottom:259.226667pt;}
.y2b_c01261{bottom:277.626667pt;}
.y2a_c01261{bottom:296.026667pt;}
.y29_c01261{bottom:314.426667pt;}
.y28_c01261{bottom:332.506667pt;}
.y27_c01261{bottom:351.226667pt;}
.y26_c01261{bottom:369.626667pt;}
.y25_c01261{bottom:388.026667pt;}
.y24_c01261{bottom:406.466667pt;}
.y23_c01261{bottom:424.866667pt;}
.y22_c01261{bottom:443.266667pt;}
.y21_c01261{bottom:461.666667pt;}
.y20_c01261{bottom:480.066667pt;}
.y1f_c01261{bottom:498.466667pt;}
.y1e_c01261{bottom:516.866667pt;}
.y1d_c01261{bottom:535.266667pt;}
.y1c_c01261{bottom:553.666667pt;}
.y1b_c01261{bottom:572.066667pt;}
.y1a_c01261{bottom:590.146667pt;}
.y19_c01261{bottom:608.893333pt;}
.y18_c01261{bottom:627.293333pt;}
.y17_c01261{bottom:645.693333pt;}
.y16_c01261{bottom:664.093333pt;}
.y15_c01261{bottom:682.493333pt;}
.y14_c01261{bottom:700.893333pt;}
.y13_c01261{bottom:719.293333pt;}
.y12_c01261{bottom:737.693333pt;}
.y11_c01261{bottom:756.093333pt;}
.y10_c01261{bottom:774.493333pt;}
.yf_c01261{bottom:792.893333pt;}
.ye_c01261{bottom:811.293333pt;}
.yd_c01261{bottom:829.733333pt;}
.yc_c01261{bottom:848.133333pt;}
.yb_c01261{bottom:866.533333pt;}
.ya_c01261{bottom:884.613333pt;}
.y9_c01261{bottom:903.333333pt;}
.y8_c01261{bottom:921.733333pt;}
.y7_c01261{bottom:940.133333pt;}
.y6_c01261{bottom:958.533333pt;}
.y5_c01261{bottom:976.933333pt;}
.y4_c01261{bottom:995.333333pt;}
.y3_c01261{bottom:1013.733333pt;}
.h2_c01261{height:44.468750pt;}
.h3_c01261{height:57.375000pt;}
.h4_c01261{height:64.500000pt;}
.h0_c01261{height:1122.560000pt;}
.h1_c01261{height:1122.666667pt;}
.w0_c01261{width:793.760000pt;}
.w1_c01261{width:794.000000pt;}
.x0_c01261{left:0.000000pt;}
.x1_c01261{left:113.472000pt;}
.x2_c01261{left:137.466667pt;}
.x3_c01261{left:161.466667pt;}
}





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

.ir_c01262:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01262;src:url('chunks/assets/font_d8425517c709b3ccf7919327.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01262;src:url('chunks/assets/font_d2cef12e62d2851ad16303a4.woff2')format("woff");}.ff2_c01262{font-family:ff2_c01262;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01262;src:url('chunks/assets/font_dcfddc79dc5c01509c1407e4.woff2')format("woff");}.ff3_c01262{font-family:ff3_c01262;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_c01262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01262{vertical-align:0.000000px;}
.ls0_c01262{letter-spacing:0.000000px;}
.sc__c01262{text-shadow:none;}
.sc0_c01262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01262{-webkit-text-stroke:0px transparent;}
.sc0_c01262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01262{word-spacing:-18.000000px;}
.ws1_c01262{word-spacing:0.000000px;}
._0_c01262{margin-left:-2.016000px;}
._5_c01262{margin-left:-1.008000px;}
._1_c01262{width:1.152000px;}
._2_c01262{width:3.096000px;}
._6_c01262{width:4.896000px;}
._3_c01262{width:6.264000px;}
._4_c01262{width:7.452000px;}
._7_c01262{width:16.560000px;}
._8_c01262{width:846.156000px;}
.fc0_c01262{color:rgb(0,0,0);}
.fs0_c01262{font-size:72.000000px;}
.y0_c01262{bottom:0.000000px;}
.y2_c01262{bottom:57.420000px;}
.y1_c01262{bottom:78.120000px;}
.y16_c01262{bottom:747.105000px;}
.y15_c01262{bottom:767.805000px;}
.y14_c01262{bottom:788.505000px;}
.y13_c01262{bottom:809.205000px;}
.y12_c01262{bottom:829.905000px;}
.y11_c01262{bottom:850.605000px;}
.y10_c01262{bottom:870.945000px;}
.yf_c01262{bottom:892.005000px;}
.ye_c01262{bottom:912.705000px;}
.yd_c01262{bottom:933.450000px;}
.yc_c01262{bottom:954.150000px;}
.yb_c01262{bottom:974.850000px;}
.ya_c01262{bottom:995.550000px;}
.y9_c01262{bottom:1015.890000px;}
.y8_c01262{bottom:1036.950000px;}
.y7_c01262{bottom:1057.650000px;}
.y6_c01262{bottom:1078.350000px;}
.y5_c01262{bottom:1099.050000px;}
.y4_c01262{bottom:1119.750000px;}
.y3_c01262{bottom:1140.450000px;}
.h2_c01262{height:50.027344px;}
.h3_c01262{height:64.546875px;}
.h4_c01262{height:72.562500px;}
.h0_c01262{height:1262.880000px;}
.h1_c01262{height:1263.000000px;}
.w0_c01262{width:892.980000px;}
.w1_c01262{width:893.250000px;}
.x0_c01262{left:0.000000px;}
.x2_c01262{left:127.656000px;}
.x3_c01262{left:154.650000px;}
.x4_c01262{left:181.650000px;}
.x1_c01262{left:738.510000px;}
@media print{
.v0_c01262{vertical-align:0.000000pt;}
.ls0_c01262{letter-spacing:0.000000pt;}
.ws0_c01262{word-spacing:-16.000000pt;}
.ws1_c01262{word-spacing:0.000000pt;}
._0_c01262{margin-left:-1.792000pt;}
._5_c01262{margin-left:-0.896000pt;}
._1_c01262{width:1.024000pt;}
._2_c01262{width:2.752000pt;}
._6_c01262{width:4.352000pt;}
._3_c01262{width:5.568000pt;}
._4_c01262{width:6.624000pt;}
._7_c01262{width:14.720000pt;}
._8_c01262{width:752.138667pt;}
.fs0_c01262{font-size:64.000000pt;}
.y0_c01262{bottom:0.000000pt;}
.y2_c01262{bottom:51.040000pt;}
.y1_c01262{bottom:69.440000pt;}
.y16_c01262{bottom:664.093333pt;}
.y15_c01262{bottom:682.493333pt;}
.y14_c01262{bottom:700.893333pt;}
.y13_c01262{bottom:719.293333pt;}
.y12_c01262{bottom:737.693333pt;}
.y11_c01262{bottom:756.093333pt;}
.y10_c01262{bottom:774.173333pt;}
.yf_c01262{bottom:792.893333pt;}
.ye_c01262{bottom:811.293333pt;}
.yd_c01262{bottom:829.733333pt;}
.yc_c01262{bottom:848.133333pt;}
.yb_c01262{bottom:866.533333pt;}
.ya_c01262{bottom:884.933333pt;}
.y9_c01262{bottom:903.013333pt;}
.y8_c01262{bottom:921.733333pt;}
.y7_c01262{bottom:940.133333pt;}
.y6_c01262{bottom:958.533333pt;}
.y5_c01262{bottom:976.933333pt;}
.y4_c01262{bottom:995.333333pt;}
.y3_c01262{bottom:1013.733333pt;}
.h2_c01262{height:44.468750pt;}
.h3_c01262{height:57.375000pt;}
.h4_c01262{height:64.500000pt;}
.h0_c01262{height:1122.560000pt;}
.h1_c01262{height:1122.666667pt;}
.w0_c01262{width:793.760000pt;}
.w1_c01262{width:794.000000pt;}
.x0_c01262{left:0.000000pt;}
.x2_c01262{left:113.472000pt;}
.x3_c01262{left:137.466667pt;}
.x4_c01262{left:161.466667pt;}
.x1_c01262{left:656.453333pt;}
}





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

.ir_c01263:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01263;src:url('chunks/assets/font_0f648e4efdf5148e368cd8e3.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01263{vertical-align:0.000000px;}
.ls0_c01263{letter-spacing:0.024000px;}
.sc__c01263{text-shadow:none;}
.sc0_c01263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01263{-webkit-text-stroke:0px transparent;}
.sc0_c01263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01263{word-spacing:-0.024000px;}
.fc0_c01263{color:rgb(0,0,0);}
.fs0_c01263{font-size:72.000000px;}
.y0_c01263{bottom:0.000000px;}
.y1_c01263{bottom:78.120000px;}
.h2_c01263{height:50.027344px;}
.h0_c01263{height:1262.880000px;}
.h1_c01263{height:1263.000000px;}
.w0_c01263{width:892.980000px;}
.w1_c01263{width:893.250000px;}
.x0_c01263{left:0.000000px;}
.x1_c01263{left:127.656000px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls0_c01263{letter-spacing:0.021333pt;}
.ws0_c01263{word-spacing:-0.021333pt;}
.fs0_c01263{font-size:64.000000pt;}
.y0_c01263{bottom:0.000000pt;}
.y1_c01263{bottom:69.440000pt;}
.h2_c01263{height:44.468750pt;}
.h0_c01263{height:1122.560000pt;}
.h1_c01263{height:1122.666667pt;}
.w0_c01263{width:793.760000pt;}
.w1_c01263{width:794.000000pt;}
.x0_c01263{left:0.000000pt;}
.x1_c01263{left:113.472000pt;}
}





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

.ir_c01264:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01264;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01264;src:url('chunks/assets/font_0a08368f4ab7779c77e1ca57.woff2')format("woff");}.ff2_c01264{font-family:ff2_c01264;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01264{vertical-align:0.000000px;}
.ls0_c01264{letter-spacing:0.000000px;}
.sc__c01264{text-shadow:none;}
.sc0_c01264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01264{-webkit-text-stroke:0px transparent;}
.sc0_c01264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01264{word-spacing:-0.408000px;}
.ws1_c01264{word-spacing:0.000000px;}
.fc0_c01264{color:rgb(0,0,0);}
.fs0_c01264{font-size:66.240000px;}
.fs1_c01264{font-size:108.000000px;}
.y0_c01264{bottom:0.000000px;}
.y1_c01264{bottom:77.796000px;}
.y2_c01264{bottom:1031.550000px;}
.h2_c01264{height:50.229844px;}
.h3_c01264{height:93.023438px;}
.h0_c01264{height:1262.880000px;}
.h1_c01264{height:1263.000000px;}
.w0_c01264{width:892.980000px;}
.w1_c01264{width:893.250000px;}
.x0_c01264{left:0.000000px;}
.x2_c01264{left:127.656000px;}
.x1_c01264{left:740.490000px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.ls0_c01264{letter-spacing:0.000000pt;}
.ws0_c01264{word-spacing:-0.362667pt;}
.ws1_c01264{word-spacing:0.000000pt;}
.fs0_c01264{font-size:58.880000pt;}
.fs1_c01264{font-size:96.000000pt;}
.y0_c01264{bottom:0.000000pt;}
.y1_c01264{bottom:69.152000pt;}
.y2_c01264{bottom:916.933333pt;}
.h2_c01264{height:44.648750pt;}
.h3_c01264{height:82.687500pt;}
.h0_c01264{height:1122.560000pt;}
.h1_c01264{height:1122.666667pt;}
.w0_c01264{width:793.760000pt;}
.w1_c01264{width:794.000000pt;}
.x0_c01264{left:0.000000pt;}
.x2_c01264{left:113.472000pt;}
.x1_c01264{left:658.213333pt;}
}





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

.ir_c01265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01265;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01265{vertical-align:0.000000px;}
.ls0_c01265{letter-spacing:0.000000px;}
.sc__c01265{text-shadow:none;}
.sc0_c01265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01265{-webkit-text-stroke:0px transparent;}
.sc0_c01265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01265{word-spacing:0.288000px;}
.fc0_c01265{color:rgb(0,0,0);}
.fs0_c01265{font-size:66.240000px;}
.y0_c01265{bottom:0.000000px;}
.y1_c01265{bottom:77.796000px;}
.h2_c01265{height:50.229844px;}
.h0_c01265{height:1262.880000px;}
.h1_c01265{height:1263.000000px;}
.w0_c01265{width:892.980000px;}
.w1_c01265{width:893.250000px;}
.x0_c01265{left:0.000000px;}
.x1_c01265{left:127.656000px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.ls0_c01265{letter-spacing:0.000000pt;}
.ws0_c01265{word-spacing:0.256000pt;}
.fs0_c01265{font-size:58.880000pt;}
.y0_c01265{bottom:0.000000pt;}
.y1_c01265{bottom:69.152000pt;}
.h2_c01265{height:44.648750pt;}
.h0_c01265{height:1122.560000pt;}
.h1_c01265{height:1122.666667pt;}
.w0_c01265{width:793.760000pt;}
.w1_c01265{width:794.000000pt;}
.x0_c01265{left:0.000000pt;}
.x1_c01265{left:113.472000pt;}
}





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

.ir_c01266:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01266;src:url('chunks/assets/font_c52f601a45404cbd444b024c.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01266;src:url('chunks/assets/font_a4386a8f7c8ea9a54ac3f54f.woff2')format("woff");}.ff2_c01266{font-family:ff2_c01266;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01266;src:url('chunks/assets/font_6fd4cb4b26a637bf012a3e1a.woff2')format("woff");}.ff3_c01266{font-family:ff3_c01266;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01266;src:url('chunks/assets/font_6a1c1af8a965871e9ab1048f.woff2')format("woff");}.ff4_c01266{font-family:ff4_c01266;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01266{vertical-align:0.000000px;}
.ls1_c01266{letter-spacing:0.000000px;}
.ls2_c01266{letter-spacing:0.224400px;}
.ls0_c01266{letter-spacing:0.288000px;}
.sc__c01266{text-shadow:none;}
.sc0_c01266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01266{-webkit-text-stroke:0px transparent;}
.sc0_c01266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01266{word-spacing:-40.069920px;}
.ws1_c01266{word-spacing:-20.016000px;}
.ws2_c01266{word-spacing:0.000000px;}
._0_c01266{margin-left:-3.392880px;}
._1_c01266{margin-left:-1.600813px;}
._2_c01266{width:1.428000px;}
._3_c01266{width:2.834438px;}
.fc0_c01266{color:rgb(0,0,0);}
.fs0_c01266{font-size:66.240000px;}
.fs2_c01266{font-size:72.000000px;}
.fs1_c01266{font-size:84.240000px;}
.y0_c01266{bottom:0.000000px;}
.y2_c01266{bottom:57.636000px;}
.y1_c01266{bottom:77.796000px;}
.y30_c01266{bottom:121.176000px;}
.y2f_c01266{bottom:142.056000px;}
.y2e_c01266{bottom:162.570000px;}
.y2d_c01266{bottom:183.270000px;}
.y2c_c01266{bottom:203.970000px;}
.y2b_c01266{bottom:224.850000px;}
.y2a_c01266{bottom:245.550000px;}
.y29_c01266{bottom:266.070000px;}
.y28_c01266{bottom:286.815000px;}
.y27_c01266{bottom:307.515000px;}
.y26_c01266{bottom:328.215000px;}
.y25_c01266{bottom:349.095000px;}
.y24_c01266{bottom:369.615000px;}
.y23_c01266{bottom:390.315000px;}
.y22_c01266{bottom:411.015000px;}
.y21_c01266{bottom:431.895000px;}
.y20_c01266{bottom:452.415000px;}
.y1f_c01266{bottom:473.115000px;}
.y1e_c01266{bottom:497.055000px;}
.y1d_c01266{bottom:521.175000px;}
.y1c_c01266{bottom:544.935000px;}
.y1b_c01266{bottom:568.905000px;}
.y1a_c01266{bottom:593.025000px;}
.y19_c01266{bottom:616.965000px;}
.y18_c01266{bottom:640.725000px;}
.y17_c01266{bottom:664.485000px;}
.y16_c01266{bottom:688.425000px;}
.y15_c01266{bottom:709.305000px;}
.y14_c01266{bottom:729.825000px;}
.y13_c01266{bottom:753.765000px;}
.y12_c01266{bottom:777.885000px;}
.y11_c01266{bottom:801.645000px;}
.y10_c01266{bottom:825.585000px;}
.yf_c01266{bottom:849.750000px;}
.ye_c01266{bottom:873.690000px;}
.yd_c01266{bottom:897.450000px;}
.yc_c01266{bottom:921.390000px;}
.yb_c01266{bottom:945.330000px;}
.ya_c01266{bottom:969.450000px;}
.y9_c01266{bottom:993.030000px;}
.y8_c01266{bottom:1016.970000px;}
.y7_c01266{bottom:1040.910000px;}
.y6_c01266{bottom:1065.030000px;}
.y5_c01266{bottom:1088.790000px;}
.y4_c01266{bottom:1112.730000px;}
.y3_c01266{bottom:1137.780000px;}
.h2_c01266{height:50.229844px;}
.h5_c01266{height:64.371094px;}
.h4_c01266{height:64.546875px;}
.h3_c01266{height:75.519844px;}
.h0_c01266{height:1262.880000px;}
.h1_c01266{height:1263.000000px;}
.w0_c01266{width:892.980000px;}
.w1_c01266{width:893.250000px;}
.x0_c01266{left:0.000000px;}
.x2_c01266{left:127.656000px;}
.x3_c01266{left:154.650000px;}
.x1_c01266{left:740.490000px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls1_c01266{letter-spacing:0.000000pt;}
.ls2_c01266{letter-spacing:0.199467pt;}
.ls0_c01266{letter-spacing:0.256000pt;}
.ws0_c01266{word-spacing:-35.617707pt;}
.ws1_c01266{word-spacing:-17.792000pt;}
.ws2_c01266{word-spacing:0.000000pt;}
._0_c01266{margin-left:-3.015893pt;}
._1_c01266{margin-left:-1.422945pt;}
._2_c01266{width:1.269333pt;}
._3_c01266{width:2.519501pt;}
.fs0_c01266{font-size:58.880000pt;}
.fs2_c01266{font-size:64.000000pt;}
.fs1_c01266{font-size:74.880000pt;}
.y0_c01266{bottom:0.000000pt;}
.y2_c01266{bottom:51.232000pt;}
.y1_c01266{bottom:69.152000pt;}
.y30_c01266{bottom:107.712000pt;}
.y2f_c01266{bottom:126.272000pt;}
.y2e_c01266{bottom:144.506667pt;}
.y2d_c01266{bottom:162.906667pt;}
.y2c_c01266{bottom:181.306667pt;}
.y2b_c01266{bottom:199.866667pt;}
.y2a_c01266{bottom:218.266667pt;}
.y29_c01266{bottom:236.506667pt;}
.y28_c01266{bottom:254.946667pt;}
.y27_c01266{bottom:273.346667pt;}
.y26_c01266{bottom:291.746667pt;}
.y25_c01266{bottom:310.306667pt;}
.y24_c01266{bottom:328.546667pt;}
.y23_c01266{bottom:346.946667pt;}
.y22_c01266{bottom:365.346667pt;}
.y21_c01266{bottom:383.906667pt;}
.y20_c01266{bottom:402.146667pt;}
.y1f_c01266{bottom:420.546667pt;}
.y1e_c01266{bottom:441.826667pt;}
.y1d_c01266{bottom:463.266667pt;}
.y1c_c01266{bottom:484.386667pt;}
.y1b_c01266{bottom:505.693333pt;}
.y1a_c01266{bottom:527.133333pt;}
.y19_c01266{bottom:548.413333pt;}
.y18_c01266{bottom:569.533333pt;}
.y17_c01266{bottom:590.653333pt;}
.y16_c01266{bottom:611.933333pt;}
.y15_c01266{bottom:630.493333pt;}
.y14_c01266{bottom:648.733333pt;}
.y13_c01266{bottom:670.013333pt;}
.y12_c01266{bottom:691.453333pt;}
.y11_c01266{bottom:712.573333pt;}
.y10_c01266{bottom:733.853333pt;}
.yf_c01266{bottom:755.333333pt;}
.ye_c01266{bottom:776.613333pt;}
.yd_c01266{bottom:797.733333pt;}
.yc_c01266{bottom:819.013333pt;}
.yb_c01266{bottom:840.293333pt;}
.ya_c01266{bottom:861.733333pt;}
.y9_c01266{bottom:882.693333pt;}
.y8_c01266{bottom:903.973333pt;}
.y7_c01266{bottom:925.253333pt;}
.y6_c01266{bottom:946.693333pt;}
.y5_c01266{bottom:967.813333pt;}
.y4_c01266{bottom:989.093333pt;}
.y3_c01266{bottom:1011.360000pt;}
.h2_c01266{height:44.648750pt;}
.h5_c01266{height:57.218750pt;}
.h4_c01266{height:57.375000pt;}
.h3_c01266{height:67.128750pt;}
.h0_c01266{height:1122.560000pt;}
.h1_c01266{height:1122.666667pt;}
.w0_c01266{width:793.760000pt;}
.w1_c01266{width:794.000000pt;}
.x0_c01266{left:0.000000pt;}
.x2_c01266{left:113.472000pt;}
.x3_c01266{left:137.466667pt;}
.x1_c01266{left:658.213333pt;}
}





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

.ir_c01267:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01267;src:url('chunks/assets/font_7847b58ff63650f6fdcaabf5.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01267;src:url('chunks/assets/font_4a6b535df0e865b3a7cdfeca.woff2')format("woff");}.ff2_c01267{font-family:ff2_c01267;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01267;src:url('chunks/assets/font_aba6aa32be86674243110086.woff2')format("woff");}.ff3_c01267{font-family:ff3_c01267;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01267{vertical-align:0.000000px;}
.ls0_c01267{letter-spacing:0.000000px;}
.sc__c01267{text-shadow:none;}
.sc0_c01267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01267{-webkit-text-stroke:0px transparent;}
.sc0_c01267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01267{word-spacing:-20.016000px;}
.ws1_c01267{word-spacing:0.000000px;}
._1_c01267{margin-left:-1.031976px;}
._0_c01267{width:1.284000px;}
.fc0_c01267{color:rgb(0,0,0);}
.fs0_c01267{font-size:66.240000px;}
.fs1_c01267{font-size:72.000000px;}
.y0_c01267{bottom:0.000000px;}
.y2_c01267{bottom:57.636000px;}
.y1_c01267{bottom:77.796000px;}
.y30_c01267{bottom:114.876000px;}
.y2f_c01267{bottom:138.816000px;}
.y2e_c01267{bottom:162.930000px;}
.y2d_c01267{bottom:186.690000px;}
.y2c_c01267{bottom:210.630000px;}
.y2b_c01267{bottom:234.570000px;}
.y2a_c01267{bottom:258.690000px;}
.y29_c01267{bottom:282.495000px;}
.y28_c01267{bottom:306.435000px;}
.y27_c01267{bottom:330.195000px;}
.y26_c01267{bottom:354.135000px;}
.y25_c01267{bottom:378.075000px;}
.y24_c01267{bottom:402.015000px;}
.y23_c01267{bottom:426.135000px;}
.y22_c01267{bottom:450.075000px;}
.y21_c01267{bottom:473.835000px;}
.y20_c01267{bottom:497.775000px;}
.y1f_c01267{bottom:521.895000px;}
.y1e_c01267{bottom:545.835000px;}
.y1d_c01267{bottom:569.625000px;}
.y1c_c01267{bottom:593.385000px;}
.y1b_c01267{bottom:617.325000px;}
.y1a_c01267{bottom:641.445000px;}
.y19_c01267{bottom:665.205000px;}
.y18_c01267{bottom:689.145000px;}
.y17_c01267{bottom:713.085000px;}
.y16_c01267{bottom:737.205000px;}
.y15_c01267{bottom:760.965000px;}
.y14_c01267{bottom:784.905000px;}
.y13_c01267{bottom:805.605000px;}
.y12_c01267{bottom:826.485000px;}
.y11_c01267{bottom:847.005000px;}
.y10_c01267{bottom:867.750000px;}
.yf_c01267{bottom:888.450000px;}
.ye_c01267{bottom:909.330000px;}
.yd_c01267{bottom:930.030000px;}
.yc_c01267{bottom:950.550000px;}
.yb_c01267{bottom:974.670000px;}
.ya_c01267{bottom:995.370000px;}
.y9_c01267{bottom:1015.890000px;}
.y8_c01267{bottom:1036.590000px;}
.y7_c01267{bottom:1057.470000px;}
.y6_c01267{bottom:1077.990000px;}
.y5_c01267{bottom:1098.690000px;}
.y4_c01267{bottom:1119.390000px;}
.y3_c01267{bottom:1140.300000px;}
.h2_c01267{height:50.229844px;}
.h3_c01267{height:64.546875px;}
.h0_c01267{height:1262.880000px;}
.h1_c01267{height:1263.000000px;}
.w0_c01267{width:892.980000px;}
.w1_c01267{width:893.250000px;}
.x0_c01267{left:0.000000px;}
.x1_c01267{left:127.656000px;}
@media print{
.v0_c01267{vertical-align:0.000000pt;}
.ls0_c01267{letter-spacing:0.000000pt;}
.ws0_c01267{word-spacing:-17.792000pt;}
.ws1_c01267{word-spacing:0.000000pt;}
._1_c01267{margin-left:-0.917312pt;}
._0_c01267{width:1.141333pt;}
.fs0_c01267{font-size:58.880000pt;}
.fs1_c01267{font-size:64.000000pt;}
.y0_c01267{bottom:0.000000pt;}
.y2_c01267{bottom:51.232000pt;}
.y1_c01267{bottom:69.152000pt;}
.y30_c01267{bottom:102.112000pt;}
.y2f_c01267{bottom:123.392000pt;}
.y2e_c01267{bottom:144.826667pt;}
.y2d_c01267{bottom:165.946667pt;}
.y2c_c01267{bottom:187.226667pt;}
.y2b_c01267{bottom:208.506667pt;}
.y2a_c01267{bottom:229.946667pt;}
.y29_c01267{bottom:251.106667pt;}
.y28_c01267{bottom:272.386667pt;}
.y27_c01267{bottom:293.506667pt;}
.y26_c01267{bottom:314.786667pt;}
.y25_c01267{bottom:336.066667pt;}
.y24_c01267{bottom:357.346667pt;}
.y23_c01267{bottom:378.786667pt;}
.y22_c01267{bottom:400.066667pt;}
.y21_c01267{bottom:421.186667pt;}
.y20_c01267{bottom:442.466667pt;}
.y1f_c01267{bottom:463.906667pt;}
.y1e_c01267{bottom:485.186667pt;}
.y1d_c01267{bottom:506.333333pt;}
.y1c_c01267{bottom:527.453333pt;}
.y1b_c01267{bottom:548.733333pt;}
.y1a_c01267{bottom:570.173333pt;}
.y19_c01267{bottom:591.293333pt;}
.y18_c01267{bottom:612.573333pt;}
.y17_c01267{bottom:633.853333pt;}
.y16_c01267{bottom:655.293333pt;}
.y15_c01267{bottom:676.413333pt;}
.y14_c01267{bottom:697.693333pt;}
.y13_c01267{bottom:716.093333pt;}
.y12_c01267{bottom:734.653333pt;}
.y11_c01267{bottom:752.893333pt;}
.y10_c01267{bottom:771.333333pt;}
.yf_c01267{bottom:789.733333pt;}
.ye_c01267{bottom:808.293333pt;}
.yd_c01267{bottom:826.693333pt;}
.yc_c01267{bottom:844.933333pt;}
.yb_c01267{bottom:866.373333pt;}
.ya_c01267{bottom:884.773333pt;}
.y9_c01267{bottom:903.013333pt;}
.y8_c01267{bottom:921.413333pt;}
.y7_c01267{bottom:939.973333pt;}
.y6_c01267{bottom:958.213333pt;}
.y5_c01267{bottom:976.613333pt;}
.y4_c01267{bottom:995.013333pt;}
.y3_c01267{bottom:1013.600000pt;}
.h2_c01267{height:44.648750pt;}
.h3_c01267{height:57.375000pt;}
.h0_c01267{height:1122.560000pt;}
.h1_c01267{height:1122.666667pt;}
.w0_c01267{width:793.760000pt;}
.w1_c01267{width:794.000000pt;}
.x0_c01267{left:0.000000pt;}
.x1_c01267{left:113.472000pt;}
}





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

.ir_c01268:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01268;src:url('chunks/assets/font_fd6a9386fcf0e56c86c3c3d1.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01268;src:url('chunks/assets/font_338ec8d0675305dd2e0d0132.woff2')format("woff");}.ff2_c01268{font-family:ff2_c01268;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01268;src:url('chunks/assets/font_df208d1af07c8feca5b752ef.woff2')format("woff");}.ff3_c01268{font-family:ff3_c01268;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01268{vertical-align:0.000000px;}
.ls3_c01268{letter-spacing:-0.576000px;}
.ls2_c01268{letter-spacing:0.000000px;}
.ls0_c01268{letter-spacing:0.144000px;}
.ls1_c01268{letter-spacing:0.288000px;}
.sc__c01268{text-shadow:none;}
.sc0_c01268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01268{-webkit-text-stroke:0px transparent;}
.sc0_c01268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01268{word-spacing:-20.016000px;}
.ws1_c01268{word-spacing:0.000000px;}
._0_c01268{margin-left:-1.008000px;}
._1_c01268{width:1.536000px;}
._2_c01268{width:2.832000px;}
.fc0_c01268{color:rgb(0,0,0);}
.fs0_c01268{font-size:66.240000px;}
.fs1_c01268{font-size:72.000000px;}
.y0_c01268{bottom:0.000000px;}
.y1_c01268{bottom:77.796000px;}
.y21_c01268{bottom:131.976000px;}
.y20_c01268{bottom:155.910000px;}
.y1f_c01268{bottom:203.790000px;}
.y1e_c01268{bottom:251.490000px;}
.y1d_c01268{bottom:275.610000px;}
.y1c_c01268{bottom:323.175000px;}
.y1b_c01268{bottom:347.115000px;}
.y1a_c01268{bottom:395.175000px;}
.y19_c01268{bottom:419.115000px;}
.y18_c01268{bottom:466.815000px;}
.y17_c01268{bottom:490.755000px;}
.y16_c01268{bottom:514.875000px;}
.y15_c01268{bottom:538.815000px;}
.y14_c01268{bottom:586.545000px;}
.y13_c01268{bottom:610.485000px;}
.y12_c01268{bottom:634.425000px;}
.y11_c01268{bottom:658.185000px;}
.y10_c01268{bottom:706.065000px;}
.yf_c01268{bottom:730.185000px;}
.ye_c01268{bottom:754.125000px;}
.yd_c01268{bottom:802.005000px;}
.yc_c01268{bottom:825.945000px;}
.yb_c01268{bottom:849.930000px;}
.ya_c01268{bottom:897.630000px;}
.y9_c01268{bottom:921.570000px;}
.y8_c01268{bottom:945.330000px;}
.y7_c01268{bottom:993.210000px;}
.y6_c01268{bottom:1017.330000px;}
.y5_c01268{bottom:1065.030000px;}
.y4_c01268{bottom:1088.970000px;}
.y3_c01268{bottom:1112.910000px;}
.y2_c01268{bottom:1136.880000px;}
.h2_c01268{height:50.229844px;}
.h4_c01268{height:64.371094px;}
.h3_c01268{height:64.546875px;}
.h0_c01268{height:1262.880000px;}
.h1_c01268{height:1263.000000px;}
.w0_c01268{width:892.980000px;}
.w1_c01268{width:893.250000px;}
.x0_c01268{left:0.000000px;}
.x2_c01268{left:127.656000px;}
.x1_c01268{left:740.490000px;}
@media print{
.v0_c01268{vertical-align:0.000000pt;}
.ls3_c01268{letter-spacing:-0.512000pt;}
.ls2_c01268{letter-spacing:0.000000pt;}
.ls0_c01268{letter-spacing:0.128000pt;}
.ls1_c01268{letter-spacing:0.256000pt;}
.ws0_c01268{word-spacing:-17.792000pt;}
.ws1_c01268{word-spacing:0.000000pt;}
._0_c01268{margin-left:-0.896000pt;}
._1_c01268{width:1.365333pt;}
._2_c01268{width:2.517333pt;}
.fs0_c01268{font-size:58.880000pt;}
.fs1_c01268{font-size:64.000000pt;}
.y0_c01268{bottom:0.000000pt;}
.y1_c01268{bottom:69.152000pt;}
.y21_c01268{bottom:117.312000pt;}
.y20_c01268{bottom:138.586667pt;}
.y1f_c01268{bottom:181.146667pt;}
.y1e_c01268{bottom:223.546667pt;}
.y1d_c01268{bottom:244.986667pt;}
.y1c_c01268{bottom:287.266667pt;}
.y1b_c01268{bottom:308.546667pt;}
.y1a_c01268{bottom:351.266667pt;}
.y19_c01268{bottom:372.546667pt;}
.y18_c01268{bottom:414.946667pt;}
.y17_c01268{bottom:436.226667pt;}
.y16_c01268{bottom:457.666667pt;}
.y15_c01268{bottom:478.946667pt;}
.y14_c01268{bottom:521.373333pt;}
.y13_c01268{bottom:542.653333pt;}
.y12_c01268{bottom:563.933333pt;}
.y11_c01268{bottom:585.053333pt;}
.y10_c01268{bottom:627.613333pt;}
.yf_c01268{bottom:649.053333pt;}
.ye_c01268{bottom:670.333333pt;}
.yd_c01268{bottom:712.893333pt;}
.yc_c01268{bottom:734.173333pt;}
.yb_c01268{bottom:755.493333pt;}
.ya_c01268{bottom:797.893333pt;}
.y9_c01268{bottom:819.173333pt;}
.y8_c01268{bottom:840.293333pt;}
.y7_c01268{bottom:882.853333pt;}
.y6_c01268{bottom:904.293333pt;}
.y5_c01268{bottom:946.693333pt;}
.y4_c01268{bottom:967.973333pt;}
.y3_c01268{bottom:989.253333pt;}
.y2_c01268{bottom:1010.560000pt;}
.h2_c01268{height:44.648750pt;}
.h4_c01268{height:57.218750pt;}
.h3_c01268{height:57.375000pt;}
.h0_c01268{height:1122.560000pt;}
.h1_c01268{height:1122.666667pt;}
.w0_c01268{width:793.760000pt;}
.w1_c01268{width:794.000000pt;}
.x0_c01268{left:0.000000pt;}
.x2_c01268{left:113.472000pt;}
.x1_c01268{left:658.213333pt;}
}





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

.ir_c01269:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01269;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01269;src:url('chunks/assets/font_41274de0a14e03b9577e75d1.woff2')format("woff");}.ff2_c01269{font-family:ff2_c01269;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01269;src:url('chunks/assets/font_0f1b7fd43d2063afccd2f521.woff2')format("woff");}.ff3_c01269{font-family:ff3_c01269;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01269{vertical-align:0.000000px;}
.ls2_c01269{letter-spacing:-0.576000px;}
.ls1_c01269{letter-spacing:0.000000px;}
.ls0_c01269{letter-spacing:0.144000px;}
.ls3_c01269{letter-spacing:0.288000px;}
.sc__c01269{text-shadow:none;}
.sc0_c01269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01269{-webkit-text-stroke:0px transparent;}
.sc0_c01269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01269{word-spacing:0.000000px;}
._1_c01269{margin-left:-2.112000px;}
._2_c01269{margin-left:-1.008000px;}
._0_c01269{width:1.020000px;}
._3_c01269{width:2.328000px;}
.fc0_c01269{color:rgb(0,0,0);}
.fs0_c01269{font-size:66.240000px;}
.fs1_c01269{font-size:72.000000px;}
.y0_c01269{bottom:0.000000px;}
.y2_c01269{bottom:57.636000px;}
.y1_c01269{bottom:77.796000px;}
.y2e_c01269{bottom:156.270000px;}
.y2d_c01269{bottom:180.210000px;}
.y2c_c01269{bottom:204.150000px;}
.y2b_c01269{bottom:228.270000px;}
.y2a_c01269{bottom:252.210000px;}
.y29_c01269{bottom:275.970000px;}
.y28_c01269{bottom:299.955000px;}
.y27_c01269{bottom:320.655000px;}
.y26_c01269{bottom:341.535000px;}
.y25_c01269{bottom:362.055000px;}
.y24_c01269{bottom:382.755000px;}
.y23_c01269{bottom:406.695000px;}
.y22_c01269{bottom:430.635000px;}
.y21_c01269{bottom:454.395000px;}
.y20_c01269{bottom:478.335000px;}
.y1f_c01269{bottom:502.275000px;}
.y1e_c01269{bottom:526.215000px;}
.y1d_c01269{bottom:550.155000px;}
.y1c_c01269{bottom:574.125000px;}
.y1b_c01269{bottom:598.065000px;}
.y1a_c01269{bottom:618.765000px;}
.y19_c01269{bottom:639.645000px;}
.y18_c01269{bottom:660.165000px;}
.y17_c01269{bottom:680.865000px;}
.y16_c01269{bottom:701.565000px;}
.y15_c01269{bottom:722.445000px;}
.y14_c01269{bottom:742.965000px;}
.y13_c01269{bottom:763.845000px;}
.y12_c01269{bottom:784.545000px;}
.y11_c01269{bottom:805.065000px;}
.y10_c01269{bottom:825.765000px;}
.yf_c01269{bottom:849.750000px;}
.ye_c01269{bottom:873.870000px;}
.yd_c01269{bottom:897.450000px;}
.yc_c01269{bottom:921.390000px;}
.yb_c01269{bottom:945.330000px;}
.ya_c01269{bottom:969.450000px;}
.y9_c01269{bottom:993.390000px;}
.y8_c01269{bottom:1017.150000px;}
.y7_c01269{bottom:1041.270000px;}
.y6_c01269{bottom:1065.030000px;}
.y5_c01269{bottom:1088.970000px;}
.y4_c01269{bottom:1112.910000px;}
.y3_c01269{bottom:1137.060000px;}
.h2_c01269{height:50.229844px;}
.h3_c01269{height:64.546875px;}
.h0_c01269{height:1262.880000px;}
.h1_c01269{height:1263.000000px;}
.w0_c01269{width:892.980000px;}
.w1_c01269{width:893.250000px;}
.x0_c01269{left:0.000000px;}
.x1_c01269{left:127.656000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls2_c01269{letter-spacing:-0.512000pt;}
.ls1_c01269{letter-spacing:0.000000pt;}
.ls0_c01269{letter-spacing:0.128000pt;}
.ls3_c01269{letter-spacing:0.256000pt;}
.ws0_c01269{word-spacing:0.000000pt;}
._1_c01269{margin-left:-1.877333pt;}
._2_c01269{margin-left:-0.896000pt;}
._0_c01269{width:0.906667pt;}
._3_c01269{width:2.069333pt;}
.fs0_c01269{font-size:58.880000pt;}
.fs1_c01269{font-size:64.000000pt;}
.y0_c01269{bottom:0.000000pt;}
.y2_c01269{bottom:51.232000pt;}
.y1_c01269{bottom:69.152000pt;}
.y2e_c01269{bottom:138.906667pt;}
.y2d_c01269{bottom:160.186667pt;}
.y2c_c01269{bottom:181.466667pt;}
.y2b_c01269{bottom:202.906667pt;}
.y2a_c01269{bottom:224.186667pt;}
.y29_c01269{bottom:245.306667pt;}
.y28_c01269{bottom:266.626667pt;}
.y27_c01269{bottom:285.026667pt;}
.y26_c01269{bottom:303.586667pt;}
.y25_c01269{bottom:321.826667pt;}
.y24_c01269{bottom:340.226667pt;}
.y23_c01269{bottom:361.506667pt;}
.y22_c01269{bottom:382.786667pt;}
.y21_c01269{bottom:403.906667pt;}
.y20_c01269{bottom:425.186667pt;}
.y1f_c01269{bottom:446.466667pt;}
.y1e_c01269{bottom:467.746667pt;}
.y1d_c01269{bottom:489.026667pt;}
.y1c_c01269{bottom:510.333333pt;}
.y1b_c01269{bottom:531.613333pt;}
.y1a_c01269{bottom:550.013333pt;}
.y19_c01269{bottom:568.573333pt;}
.y18_c01269{bottom:586.813333pt;}
.y17_c01269{bottom:605.213333pt;}
.y16_c01269{bottom:623.613333pt;}
.y15_c01269{bottom:642.173333pt;}
.y14_c01269{bottom:660.413333pt;}
.y13_c01269{bottom:678.973333pt;}
.y12_c01269{bottom:697.373333pt;}
.y11_c01269{bottom:715.613333pt;}
.y10_c01269{bottom:734.013333pt;}
.yf_c01269{bottom:755.333333pt;}
.ye_c01269{bottom:776.773333pt;}
.yd_c01269{bottom:797.733333pt;}
.yc_c01269{bottom:819.013333pt;}
.yb_c01269{bottom:840.293333pt;}
.ya_c01269{bottom:861.733333pt;}
.y9_c01269{bottom:883.013333pt;}
.y8_c01269{bottom:904.133333pt;}
.y7_c01269{bottom:925.573333pt;}
.y6_c01269{bottom:946.693333pt;}
.y5_c01269{bottom:967.973333pt;}
.y4_c01269{bottom:989.253333pt;}
.y3_c01269{bottom:1010.720000pt;}
.h2_c01269{height:44.648750pt;}
.h3_c01269{height:57.375000pt;}
.h0_c01269{height:1122.560000pt;}
.h1_c01269{height:1122.666667pt;}
.w0_c01269{width:793.760000pt;}
.w1_c01269{width:794.000000pt;}
.x0_c01269{left:0.000000pt;}
.x1_c01269{left:113.472000pt;}
}





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

.ir_c01270:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01270;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01270;src:url('chunks/assets/font_5187f0aebef10a93eba88722.woff2')format("woff");}.ff2_c01270{font-family:ff2_c01270;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01270;src:url('chunks/assets/font_776c64ad103814ff3468114c.woff2')format("woff");}.ff3_c01270{font-family:ff3_c01270;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01270;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01270{font-family:ff4_c01270;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01270{vertical-align:0.000000px;}
.ls0_c01270{letter-spacing:0.000000px;}
.ls1_c01270{letter-spacing:0.288000px;}
.sc__c01270{text-shadow:none;}
.sc0_c01270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01270{-webkit-text-stroke:0px transparent;}
.sc0_c01270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01270{word-spacing:0.000000px;}
._0_c01270{margin-left:-1.008000px;}
._1_c01270{width:1.056000px;}
._2_c01270{width:2.580000px;}
.fc0_c01270{color:rgb(0,0,0);}
.fs0_c01270{font-size:66.240000px;}
.fs1_c01270{font-size:72.000000px;}
.y0_c01270{bottom:0.000000px;}
.y2_c01270{bottom:57.636000px;}
.y1_c01270{bottom:77.796000px;}
.y2e_c01270{bottom:127.296000px;}
.y2d_c01270{bottom:147.996000px;}
.y2c_c01270{bottom:168.690000px;}
.y2b_c01270{bottom:192.630000px;}
.y2a_c01270{bottom:216.570000px;}
.y29_c01270{bottom:240.330000px;}
.y28_c01270{bottom:264.270000px;}
.y27_c01270{bottom:288.255000px;}
.y26_c01270{bottom:312.195000px;}
.y25_c01270{bottom:336.135000px;}
.y24_c01270{bottom:360.255000px;}
.y23_c01270{bottom:384.195000px;}
.y22_c01270{bottom:407.955000px;}
.y21_c01270{bottom:431.895000px;}
.y20_c01270{bottom:455.835000px;}
.y1f_c01270{bottom:479.955000px;}
.y1e_c01270{bottom:503.715000px;}
.y1d_c01270{bottom:527.475000px;}
.y1c_c01270{bottom:551.595000px;}
.y1b_c01270{bottom:575.565000px;}
.y1a_c01270{bottom:599.325000px;}
.y19_c01270{bottom:623.265000px;}
.y18_c01270{bottom:647.385000px;}
.y17_c01270{bottom:671.325000px;}
.y16_c01270{bottom:695.085000px;}
.y15_c01270{bottom:715.965000px;}
.y14_c01270{bottom:736.665000px;}
.y13_c01270{bottom:757.185000px;}
.y12_c01270{bottom:777.885000px;}
.y11_c01270{bottom:802.005000px;}
.y10_c01270{bottom:825.945000px;}
.yf_c01270{bottom:849.750000px;}
.ye_c01270{bottom:873.870000px;}
.yd_c01270{bottom:897.450000px;}
.yc_c01270{bottom:921.390000px;}
.yb_c01270{bottom:945.510000px;}
.ya_c01270{bottom:969.270000px;}
.y9_c01270{bottom:993.210000px;}
.y8_c01270{bottom:1017.150000px;}
.y7_c01270{bottom:1041.270000px;}
.y6_c01270{bottom:1065.210000px;}
.y5_c01270{bottom:1088.970000px;}
.y4_c01270{bottom:1112.910000px;}
.y3_c01270{bottom:1136.880000px;}
.h2_c01270{height:50.229844px;}
.h3_c01270{height:64.546875px;}
.h4_c01270{height:65.003906px;}
.h0_c01270{height:1262.880000px;}
.h1_c01270{height:1263.000000px;}
.w0_c01270{width:892.980000px;}
.w1_c01270{width:893.250000px;}
.x0_c01270{left:0.000000px;}
.x2_c01270{left:127.656000px;}
.x1_c01270{left:740.490000px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.ls0_c01270{letter-spacing:0.000000pt;}
.ls1_c01270{letter-spacing:0.256000pt;}
.ws0_c01270{word-spacing:0.000000pt;}
._0_c01270{margin-left:-0.896000pt;}
._1_c01270{width:0.938667pt;}
._2_c01270{width:2.293333pt;}
.fs0_c01270{font-size:58.880000pt;}
.fs1_c01270{font-size:64.000000pt;}
.y0_c01270{bottom:0.000000pt;}
.y2_c01270{bottom:51.232000pt;}
.y1_c01270{bottom:69.152000pt;}
.y2e_c01270{bottom:113.152000pt;}
.y2d_c01270{bottom:131.552000pt;}
.y2c_c01270{bottom:149.946667pt;}
.y2b_c01270{bottom:171.226667pt;}
.y2a_c01270{bottom:192.506667pt;}
.y29_c01270{bottom:213.626667pt;}
.y28_c01270{bottom:234.906667pt;}
.y27_c01270{bottom:256.226667pt;}
.y26_c01270{bottom:277.506667pt;}
.y25_c01270{bottom:298.786667pt;}
.y24_c01270{bottom:320.226667pt;}
.y23_c01270{bottom:341.506667pt;}
.y22_c01270{bottom:362.626667pt;}
.y21_c01270{bottom:383.906667pt;}
.y20_c01270{bottom:405.186667pt;}
.y1f_c01270{bottom:426.626667pt;}
.y1e_c01270{bottom:447.746667pt;}
.y1d_c01270{bottom:468.866667pt;}
.y1c_c01270{bottom:490.306667pt;}
.y1b_c01270{bottom:511.613333pt;}
.y1a_c01270{bottom:532.733333pt;}
.y19_c01270{bottom:554.013333pt;}
.y18_c01270{bottom:575.453333pt;}
.y17_c01270{bottom:596.733333pt;}
.y16_c01270{bottom:617.853333pt;}
.y15_c01270{bottom:636.413333pt;}
.y14_c01270{bottom:654.813333pt;}
.y13_c01270{bottom:673.053333pt;}
.y12_c01270{bottom:691.453333pt;}
.y11_c01270{bottom:712.893333pt;}
.y10_c01270{bottom:734.173333pt;}
.yf_c01270{bottom:755.333333pt;}
.ye_c01270{bottom:776.773333pt;}
.yd_c01270{bottom:797.733333pt;}
.yc_c01270{bottom:819.013333pt;}
.yb_c01270{bottom:840.453333pt;}
.ya_c01270{bottom:861.573333pt;}
.y9_c01270{bottom:882.853333pt;}
.y8_c01270{bottom:904.133333pt;}
.y7_c01270{bottom:925.573333pt;}
.y6_c01270{bottom:946.853333pt;}
.y5_c01270{bottom:967.973333pt;}
.y4_c01270{bottom:989.253333pt;}
.y3_c01270{bottom:1010.560000pt;}
.h2_c01270{height:44.648750pt;}
.h3_c01270{height:57.375000pt;}
.h4_c01270{height:57.781250pt;}
.h0_c01270{height:1122.560000pt;}
.h1_c01270{height:1122.666667pt;}
.w0_c01270{width:793.760000pt;}
.w1_c01270{width:794.000000pt;}
.x0_c01270{left:0.000000pt;}
.x2_c01270{left:113.472000pt;}
.x1_c01270{left:658.213333pt;}
}





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

.ir_c01271:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01271;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01271;src:url('chunks/assets/font_3e0115f88acb69ab40c22730.woff2')format("woff");}.ff2_c01271{font-family:ff2_c01271;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01271;src:url('chunks/assets/font_c8e433f9c6936ff99cb5e6ba.woff2')format("woff");}.ff3_c01271{font-family:ff3_c01271;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01271;src:url('chunks/assets/font_7ed6fbc850a96b8da62d70e7.woff2')format("woff");}.ff4_c01271{font-family:ff4_c01271;line-height:1.106934;font-style:normal;font-weight: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_c01271;src:url('chunks/assets/font_4ca0bf679a796fc212a332e0.woff2')format("woff");}.ff5_c01271{font-family:ff5_c01271;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01271{vertical-align:-94.320000px;}
.v0_c01271{vertical-align:0.000000px;}
.ls3_c01271{letter-spacing:-0.037200px;}
.ls2_c01271{letter-spacing:0.000000px;}
.ls1_c01271{letter-spacing:0.216000px;}
.ls4_c01271{letter-spacing:0.288000px;}
.ls0_c01271{letter-spacing:87.960000px;}
.sc__c01271{text-shadow:none;}
.sc0_c01271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01271{-webkit-text-stroke:0px transparent;}
.sc0_c01271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01271{word-spacing:-23.381520px;}
.ws1_c01271{word-spacing:0.000000px;}
._1_c01271{margin-left:-1.584000px;}
._0_c01271{width:1.080000px;}
._3_c01271{width:2.795976px;}
._2_c01271{width:9.766320px;}
.fc0_c01271{color:rgb(0,0,0);}
.fs0_c01271{font-size:66.240000px;}
.fs1_c01271{font-size:72.000000px;}
.fs2_c01271{font-size:84.240000px;}
.y0_c01271{bottom:0.000000px;}
.y2_c01271{bottom:57.636000px;}
.y1_c01271{bottom:77.796000px;}
.y32_c01271{bottom:130.176000px;}
.y31_c01271{bottom:153.930000px;}
.y30_c01271{bottom:174.630000px;}
.y2f_c01271{bottom:195.330000px;}
.y2e_c01271{bottom:216.030000px;}
.y2d_c01271{bottom:236.730000px;}
.y2c_c01271{bottom:257.430000px;}
.y2b_c01271{bottom:278.130000px;}
.y2a_c01271{bottom:298.875000px;}
.y29_c01271{bottom:319.575000px;}
.y28_c01271{bottom:340.275000px;}
.y27_c01271{bottom:360.975000px;}
.y26_c01271{bottom:381.675000px;}
.y25_c01271{bottom:402.375000px;}
.y24_c01271{bottom:423.075000px;}
.y23_c01271{bottom:443.775000px;}
.y22_c01271{bottom:464.655000px;}
.y21_c01271{bottom:485.355000px;}
.y20_c01271{bottom:506.055000px;}
.y1f_c01271{bottom:526.575000px;}
.y1e_c01271{bottom:547.275000px;}
.y1d_c01271{bottom:568.185000px;}
.y1c_c01271{bottom:588.885000px;}
.y1b_c01271{bottom:609.405000px;}
.y1a_c01271{bottom:630.105000px;}
.y19_c01271{bottom:650.985000px;}
.y18_c01271{bottom:671.505000px;}
.y17_c01271{bottom:692.205000px;}
.y16_c01271{bottom:712.905000px;}
.y15_c01271{bottom:733.605000px;}
.y14_c01271{bottom:754.305000px;}
.y13_c01271{bottom:775.005000px;}
.y12_c01271{bottom:795.705000px;}
.y11_c01271{bottom:816.405000px;}
.y10_c01271{bottom:837.105000px;}
.yf_c01271{bottom:857.850000px;}
.ye_c01271{bottom:878.550000px;}
.yd_c01271{bottom:899.250000px;}
.yc_c01271{bottom:919.950000px;}
.yb_c01271{bottom:940.650000px;}
.ya_c01271{bottom:961.350000px;}
.y9_c01271{bottom:982.050000px;}
.y8_c01271{bottom:1002.750000px;}
.y7_c01271{bottom:1026.690000px;}
.y6_c01271{bottom:1050.450000px;}
.y5_c01271{bottom:1098.690000px;}
.y4_c01271{bottom:1119.390000px;}
.y3_c01271{bottom:1140.120000px;}
.h2_c01271{height:50.229844px;}
.h5_c01271{height:64.371094px;}
.h4_c01271{height:64.546875px;}
.h3_c01271{height:65.003906px;}
.h0_c01271{height:1262.880000px;}
.h1_c01271{height:1263.000000px;}
.w0_c01271{width:892.980000px;}
.w1_c01271{width:893.250000px;}
.x0_c01271{left:0.000000px;}
.x1_c01271{left:127.656000px;}
.x2_c01271{left:181.650000px;}
@media print{
.v1_c01271{vertical-align:-83.840000pt;}
.v0_c01271{vertical-align:0.000000pt;}
.ls3_c01271{letter-spacing:-0.033067pt;}
.ls2_c01271{letter-spacing:0.000000pt;}
.ls1_c01271{letter-spacing:0.192000pt;}
.ls4_c01271{letter-spacing:0.256000pt;}
.ls0_c01271{letter-spacing:78.186667pt;}
.ws0_c01271{word-spacing:-20.783573pt;}
.ws1_c01271{word-spacing:0.000000pt;}
._1_c01271{margin-left:-1.408000pt;}
._0_c01271{width:0.960000pt;}
._3_c01271{width:2.485312pt;}
._2_c01271{width:8.681173pt;}
.fs0_c01271{font-size:58.880000pt;}
.fs1_c01271{font-size:64.000000pt;}
.fs2_c01271{font-size:74.880000pt;}
.y0_c01271{bottom:0.000000pt;}
.y2_c01271{bottom:51.232000pt;}
.y1_c01271{bottom:69.152000pt;}
.y32_c01271{bottom:115.712000pt;}
.y31_c01271{bottom:136.826667pt;}
.y30_c01271{bottom:155.226667pt;}
.y2f_c01271{bottom:173.626667pt;}
.y2e_c01271{bottom:192.026667pt;}
.y2d_c01271{bottom:210.426667pt;}
.y2c_c01271{bottom:228.826667pt;}
.y2b_c01271{bottom:247.226667pt;}
.y2a_c01271{bottom:265.666667pt;}
.y29_c01271{bottom:284.066667pt;}
.y28_c01271{bottom:302.466667pt;}
.y27_c01271{bottom:320.866667pt;}
.y26_c01271{bottom:339.266667pt;}
.y25_c01271{bottom:357.666667pt;}
.y24_c01271{bottom:376.066667pt;}
.y23_c01271{bottom:394.466667pt;}
.y22_c01271{bottom:413.026667pt;}
.y21_c01271{bottom:431.426667pt;}
.y20_c01271{bottom:449.826667pt;}
.y1f_c01271{bottom:468.066667pt;}
.y1e_c01271{bottom:486.466667pt;}
.y1d_c01271{bottom:505.053333pt;}
.y1c_c01271{bottom:523.453333pt;}
.y1b_c01271{bottom:541.693333pt;}
.y1a_c01271{bottom:560.093333pt;}
.y19_c01271{bottom:578.653333pt;}
.y18_c01271{bottom:596.893333pt;}
.y17_c01271{bottom:615.293333pt;}
.y16_c01271{bottom:633.693333pt;}
.y15_c01271{bottom:652.093333pt;}
.y14_c01271{bottom:670.493333pt;}
.y13_c01271{bottom:688.893333pt;}
.y12_c01271{bottom:707.293333pt;}
.y11_c01271{bottom:725.693333pt;}
.y10_c01271{bottom:744.093333pt;}
.yf_c01271{bottom:762.533333pt;}
.ye_c01271{bottom:780.933333pt;}
.yd_c01271{bottom:799.333333pt;}
.yc_c01271{bottom:817.733333pt;}
.yb_c01271{bottom:836.133333pt;}
.ya_c01271{bottom:854.533333pt;}
.y9_c01271{bottom:872.933333pt;}
.y8_c01271{bottom:891.333333pt;}
.y7_c01271{bottom:912.613333pt;}
.y6_c01271{bottom:933.733333pt;}
.y5_c01271{bottom:976.613333pt;}
.y4_c01271{bottom:995.013333pt;}
.y3_c01271{bottom:1013.440000pt;}
.h2_c01271{height:44.648750pt;}
.h5_c01271{height:57.218750pt;}
.h4_c01271{height:57.375000pt;}
.h3_c01271{height:57.781250pt;}
.h0_c01271{height:1122.560000pt;}
.h1_c01271{height:1122.666667pt;}
.w0_c01271{width:793.760000pt;}
.w1_c01271{width:794.000000pt;}
.x0_c01271{left:0.000000pt;}
.x1_c01271{left:113.472000pt;}
.x2_c01271{left:161.466667pt;}
}





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

.ir_c01272:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01272;src:url('chunks/assets/font_7248a18c0fce9c8d94f985b7.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01272;src:url('chunks/assets/font_b8e2ca0924eb5ac903e72f0d.woff2')format("woff");}.ff2_c01272{font-family:ff2_c01272;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01272;src:url('chunks/assets/font_8fc8e0aaf045b7b5515804a2.woff2')format("woff");}.ff3_c01272{font-family:ff3_c01272;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01272;src:url('chunks/assets/font_d7f821754d14e28b51e3ab57.woff2')format("woff");}.ff4_c01272{font-family:ff4_c01272;line-height:1.106934;font-style:normal;font-weight: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_c01272;src:url('chunks/assets/font_f2dac6dbdf71d2d6e3866946.woff2')format("woff");}.ff5_c01272{font-family:ff5_c01272;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01272{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_c01272{vertical-align:0.000000px;}
.ls2_c01272{letter-spacing:-0.350400px;}
.ls1_c01272{letter-spacing:0.000000px;}
.ls0_c01272{letter-spacing:0.216000px;}
.ls3_c01272{letter-spacing:0.288000px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01272{word-spacing:-23.068320px;}
.ws1_c01272{word-spacing:-20.016000px;}
.ws2_c01272{word-spacing:0.000000px;}
._3_c01272{margin-left:-2.189987px;}
._1_c01272{margin-left:-1.010964px;}
._2_c01272{width:1.860000px;}
._0_c01272{width:5.759520px;}
.fc1_c01272{color:rgb(5,5,5);}
.fc0_c01272{color:rgb(0,0,0);}
.fs0_c01272{font-size:66.240000px;}
.fs2_c01272{font-size:72.000000px;}
.fs1_c01272{font-size:84.240000px;}
.y0_c01272{bottom:0.000000px;}
.y2_c01272{bottom:57.636000px;}
.y1_c01272{bottom:77.796000px;}
.y30_c01272{bottom:130.356000px;}
.y2f_c01272{bottom:151.050000px;}
.y2e_c01272{bottom:171.750000px;}
.y2d_c01272{bottom:192.450000px;}
.y2c_c01272{bottom:213.150000px;}
.y2b_c01272{bottom:233.850000px;}
.y2a_c01272{bottom:254.550000px;}
.y29_c01272{bottom:275.250000px;}
.y28_c01272{bottom:295.995000px;}
.y27_c01272{bottom:317.235000px;}
.y26_c01272{bottom:340.815000px;}
.y25_c01272{bottom:361.515000px;}
.y24_c01272{bottom:382.395000px;}
.y23_c01272{bottom:402.915000px;}
.y22_c01272{bottom:423.615000px;}
.y21_c01272{bottom:444.495000px;}
.y20_c01272{bottom:465.195000px;}
.y1f_c01272{bottom:485.715000px;}
.y1e_c01272{bottom:506.595000px;}
.y1d_c01272{bottom:527.295000px;}
.y1c_c01272{bottom:547.815000px;}
.y1b_c01272{bottom:568.725000px;}
.y1a_c01272{bottom:589.245000px;}
.y19_c01272{bottom:610.485000px;}
.y18_c01272{bottom:634.065000px;}
.y17_c01272{bottom:658.005000px;}
.y16_c01272{bottom:681.945000px;}
.y15_c01272{bottom:705.885000px;}
.y14_c01272{bottom:729.825000px;}
.y13_c01272{bottom:753.765000px;}
.y12_c01272{bottom:777.885000px;}
.y11_c01272{bottom:801.825000px;}
.y10_c01272{bottom:825.405000px;}
.yf_c01272{bottom:849.390000px;}
.ye_c01272{bottom:873.330000px;}
.yd_c01272{bottom:897.270000px;}
.yc_c01272{bottom:921.390000px;}
.yb_c01272{bottom:945.150000px;}
.ya_c01272{bottom:969.270000px;}
.y9_c01272{bottom:993.030000px;}
.y8_c01272{bottom:1016.970000px;}
.y7_c01272{bottom:1040.910000px;}
.y6_c01272{bottom:1064.850000px;}
.y5_c01272{bottom:1088.970000px;}
.y4_c01272{bottom:1112.730000px;}
.y3_c01272{bottom:1137.240000px;}
.h2_c01272{height:50.229844px;}
.h4_c01272{height:64.371094px;}
.h5_c01272{height:64.546875px;}
.h7_c01272{height:65.003906px;}
.h6_c01272{height:76.054570px;}
.h3_c01272{height:87.859687px;}
.h0_c01272{height:1262.880000px;}
.h1_c01272{height:1263.000000px;}
.w0_c01272{width:892.980000px;}
.w1_c01272{width:893.250000px;}
.x0_c01272{left:0.000000px;}
.x2_c01272{left:127.656000px;}
.x3_c01272{left:154.650000px;}
.x1_c01272{left:740.490000px;}
@media print{
.v0_c01272{vertical-align:0.000000pt;}
.ls2_c01272{letter-spacing:-0.311467pt;}
.ls1_c01272{letter-spacing:0.000000pt;}
.ls0_c01272{letter-spacing:0.192000pt;}
.ls3_c01272{letter-spacing:0.256000pt;}
.ws0_c01272{word-spacing:-20.505173pt;}
.ws1_c01272{word-spacing:-17.792000pt;}
.ws2_c01272{word-spacing:0.000000pt;}
._3_c01272{margin-left:-1.946655pt;}
._1_c01272{margin-left:-0.898635pt;}
._2_c01272{width:1.653333pt;}
._0_c01272{width:5.119573pt;}
.fs0_c01272{font-size:58.880000pt;}
.fs2_c01272{font-size:64.000000pt;}
.fs1_c01272{font-size:74.880000pt;}
.y0_c01272{bottom:0.000000pt;}
.y2_c01272{bottom:51.232000pt;}
.y1_c01272{bottom:69.152000pt;}
.y30_c01272{bottom:115.872000pt;}
.y2f_c01272{bottom:134.266667pt;}
.y2e_c01272{bottom:152.666667pt;}
.y2d_c01272{bottom:171.066667pt;}
.y2c_c01272{bottom:189.466667pt;}
.y2b_c01272{bottom:207.866667pt;}
.y2a_c01272{bottom:226.266667pt;}
.y29_c01272{bottom:244.666667pt;}
.y28_c01272{bottom:263.106667pt;}
.y27_c01272{bottom:281.986667pt;}
.y26_c01272{bottom:302.946667pt;}
.y25_c01272{bottom:321.346667pt;}
.y24_c01272{bottom:339.906667pt;}
.y23_c01272{bottom:358.146667pt;}
.y22_c01272{bottom:376.546667pt;}
.y21_c01272{bottom:395.106667pt;}
.y20_c01272{bottom:413.506667pt;}
.y1f_c01272{bottom:431.746667pt;}
.y1e_c01272{bottom:450.306667pt;}
.y1d_c01272{bottom:468.706667pt;}
.y1c_c01272{bottom:486.946667pt;}
.y1b_c01272{bottom:505.533333pt;}
.y1a_c01272{bottom:523.773333pt;}
.y19_c01272{bottom:542.653333pt;}
.y18_c01272{bottom:563.613333pt;}
.y17_c01272{bottom:584.893333pt;}
.y16_c01272{bottom:606.173333pt;}
.y15_c01272{bottom:627.453333pt;}
.y14_c01272{bottom:648.733333pt;}
.y13_c01272{bottom:670.013333pt;}
.y12_c01272{bottom:691.453333pt;}
.y11_c01272{bottom:712.733333pt;}
.y10_c01272{bottom:733.693333pt;}
.yf_c01272{bottom:755.013333pt;}
.ye_c01272{bottom:776.293333pt;}
.yd_c01272{bottom:797.573333pt;}
.yc_c01272{bottom:819.013333pt;}
.yb_c01272{bottom:840.133333pt;}
.ya_c01272{bottom:861.573333pt;}
.y9_c01272{bottom:882.693333pt;}
.y8_c01272{bottom:903.973333pt;}
.y7_c01272{bottom:925.253333pt;}
.y6_c01272{bottom:946.533333pt;}
.y5_c01272{bottom:967.973333pt;}
.y4_c01272{bottom:989.093333pt;}
.y3_c01272{bottom:1010.880000pt;}
.h2_c01272{height:44.648750pt;}
.h4_c01272{height:57.218750pt;}
.h5_c01272{height:57.375000pt;}
.h7_c01272{height:57.781250pt;}
.h6_c01272{height:67.604062pt;}
.h3_c01272{height:78.097500pt;}
.h0_c01272{height:1122.560000pt;}
.h1_c01272{height:1122.666667pt;}
.w0_c01272{width:793.760000pt;}
.w1_c01272{width:794.000000pt;}
.x0_c01272{left:0.000000pt;}
.x2_c01272{left:113.472000pt;}
.x3_c01272{left:137.466667pt;}
.x1_c01272{left:658.213333pt;}
}





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

.ir_c01273:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01273;src:url('chunks/assets/font_0e5b023a3dbaf251af5f4869.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01273;src:url('chunks/assets/font_aec8bde1ab1bf3bbf4937ee6.woff2')format("woff");}.ff2_c01273{font-family:ff2_c01273;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01273{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_c01273{vertical-align:0.000000px;}
.ls3_c01273{letter-spacing:-0.432000px;}
.ls2_c01273{letter-spacing:-0.144000px;}
.ls1_c01273{letter-spacing:0.000000px;}
.ls0_c01273{letter-spacing:0.288000px;}
.sc__c01273{text-shadow:none;}
.sc0_c01273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01273{-webkit-text-stroke:0px transparent;}
.sc0_c01273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01273{word-spacing:-20.304000px;}
.ws0_c01273{word-spacing:-20.016000px;}
.ws1_c01273{word-spacing:-19.872000px;}
.ws3_c01273{word-spacing:-19.584000px;}
.ws4_c01273{word-spacing:0.000000px;}
._1_c01273{margin-left:-1.296000px;}
._0_c01273{width:1.164024px;}
._2_c01273{width:2.363976px;}
.fc0_c01273{color:rgb(0,0,0);}
.fs0_c01273{font-size:66.240000px;}
.fs1_c01273{font-size:72.000000px;}
.y0_c01273{bottom:0.000000px;}
.y1_c01273{bottom:77.796000px;}
.yb_c01273{bottom:850.290000px;}
.ya_c01273{bottom:870.990000px;}
.y9_c01273{bottom:891.690000px;}
.y8_c01273{bottom:933.090000px;}
.y7_c01273{bottom:974.490000px;}
.y6_c01273{bottom:1015.890000px;}
.y5_c01273{bottom:1036.590000px;}
.y4_c01273{bottom:1077.990000px;}
.y3_c01273{bottom:1098.690000px;}
.y2_c01273{bottom:1140.120000px;}
.h2_c01273{height:50.229844px;}
.h3_c01273{height:64.546875px;}
.h0_c01273{height:1262.880000px;}
.h1_c01273{height:1263.000000px;}
.w0_c01273{width:892.980000px;}
.w1_c01273{width:893.250000px;}
.x0_c01273{left:0.000000px;}
.x1_c01273{left:127.656000px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls3_c01273{letter-spacing:-0.384000pt;}
.ls2_c01273{letter-spacing:-0.128000pt;}
.ls1_c01273{letter-spacing:0.000000pt;}
.ls0_c01273{letter-spacing:0.256000pt;}
.ws2_c01273{word-spacing:-18.048000pt;}
.ws0_c01273{word-spacing:-17.792000pt;}
.ws1_c01273{word-spacing:-17.664000pt;}
.ws3_c01273{word-spacing:-17.408000pt;}
.ws4_c01273{word-spacing:0.000000pt;}
._1_c01273{margin-left:-1.152000pt;}
._0_c01273{width:1.034688pt;}
._2_c01273{width:2.101312pt;}
.fs0_c01273{font-size:58.880000pt;}
.fs1_c01273{font-size:64.000000pt;}
.y0_c01273{bottom:0.000000pt;}
.y1_c01273{bottom:69.152000pt;}
.yb_c01273{bottom:755.813333pt;}
.ya_c01273{bottom:774.213333pt;}
.y9_c01273{bottom:792.613333pt;}
.y8_c01273{bottom:829.413333pt;}
.y7_c01273{bottom:866.213333pt;}
.y6_c01273{bottom:903.013333pt;}
.y5_c01273{bottom:921.413333pt;}
.y4_c01273{bottom:958.213333pt;}
.y3_c01273{bottom:976.613333pt;}
.y2_c01273{bottom:1013.440000pt;}
.h2_c01273{height:44.648750pt;}
.h3_c01273{height:57.375000pt;}
.h0_c01273{height:1122.560000pt;}
.h1_c01273{height:1122.666667pt;}
.w0_c01273{width:793.760000pt;}
.w1_c01273{width:794.000000pt;}
.x0_c01273{left:0.000000pt;}
.x1_c01273{left:113.472000pt;}
}





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

.ir_c01274:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01274;src:url('chunks/assets/font_960b1188675f798cc3174999.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01274;src:url('chunks/assets/font_4024ad062aef0d86d5b9f94f.woff2')format("woff");}.ff2_c01274{font-family:ff2_c01274;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01274;src:url('chunks/assets/font_3f2841e426cb40bbbba6a844.woff2')format("woff");}.ff3_c01274{font-family:ff3_c01274;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01274;src:url('chunks/assets/font_b10fea2e8083979f0cff13cd.woff2')format("woff");}.ff4_c01274{font-family:ff4_c01274;line-height:1.106934;font-style:normal;font-weight: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_c01274;src:url('chunks/assets/font_7a5fa1a47a59d3f9c91a8873.woff2')format("woff");}.ff5_c01274{font-family:ff5_c01274;line-height:1.104492;font-style:normal;font-weight: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_c01274;src:url('chunks/assets/font_e2f9a5278ebbebd689c82000.woff2')format("woff");}.ff6_c01274{font-family:ff6_c01274;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01274{vertical-align:0.000000px;}
.ls4_c01274{letter-spacing:-0.576000px;}
.ls3_c01274{letter-spacing:-0.021600px;}
.ls2_c01274{letter-spacing:0.000000px;}
.ls1_c01274{letter-spacing:0.144000px;}
.ls0_c01274{letter-spacing:0.288000px;}
.sc__c01274{text-shadow:none;}
.sc0_c01274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01274{-webkit-text-stroke:0px transparent;}
.sc0_c01274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01274{word-spacing:-13.072320px;}
.ws1_c01274{word-spacing:0.000000px;}
._0_c01274{margin-left:-1.768872px;}
._3_c01274{width:1.048872px;}
._2_c01274{width:3.168000px;}
._1_c01274{width:4.248000px;}
._5_c01274{width:6.480000px;}
._4_c01274{width:11.664000px;}
._8_c01274{width:22.968000px;}
._9_c01274{width:27.432000px;}
._7_c01274{width:37.164000px;}
._6_c01274{width:38.376000px;}
.fc0_c01274{color:rgb(0,0,0);}
.fs0_c01274{font-size:66.240000px;}
.fs2_c01274{font-size:72.000000px;}
.fs1_c01274{font-size:84.240000px;}
.y0_c01274{bottom:0.000000px;}
.y1_c01274{bottom:77.796000px;}
.y21_c01274{bottom:139.716000px;}
.y20_c01274{bottom:160.230000px;}
.y1f_c01274{bottom:201.810000px;}
.y1e_c01274{bottom:222.330000px;}
.y1d_c01274{bottom:263.730000px;}
.y1c_c01274{bottom:284.655000px;}
.y1b_c01274{bottom:326.055000px;}
.y1a_c01274{bottom:346.575000px;}
.y19_c01274{bottom:388.155000px;}
.y18_c01274{bottom:408.855000px;}
.y17_c01274{bottom:450.255000px;}
.y16_c01274{bottom:470.775000px;}
.y15_c01274{bottom:512.355000px;}
.y14_c01274{bottom:532.875000px;}
.y13_c01274{bottom:574.485000px;}
.y12_c01274{bottom:595.005000px;}
.y11_c01274{bottom:636.405000px;}
.y10_c01274{bottom:698.505000px;}
.yf_c01274{bottom:719.385000px;}
.ye_c01274{bottom:740.085000px;}
.yd_c01274{bottom:781.305000px;}
.yc_c01274{bottom:802.185000px;}
.yb_c01274{bottom:843.405000px;}
.ya_c01274{bottom:864.330000px;}
.y9_c01274{bottom:905.550000px;}
.y8_c01274{bottom:926.430000px;}
.y7_c01274{bottom:946.950000px;}
.y6_c01274{bottom:988.350000px;}
.y5_c01274{bottom:1009.230000px;}
.y4_c01274{bottom:1029.750000px;}
.y3_c01274{bottom:1071.690000px;}
.y2_c01274{bottom:1137.780000px;}
.h2_c01274{height:50.229844px;}
.h5_c01274{height:64.546875px;}
.h6_c01274{height:65.003906px;}
.h3_c01274{height:72.558281px;}
.h4_c01274{height:87.859687px;}
.h0_c01274{height:1262.880000px;}
.h1_c01274{height:1263.000000px;}
.w0_c01274{width:892.980000px;}
.w1_c01274{width:893.250000px;}
.x0_c01274{left:0.000000px;}
.x3_c01274{left:127.656000px;}
.x2_c01274{left:154.650000px;}
.x1_c01274{left:740.490000px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls4_c01274{letter-spacing:-0.512000pt;}
.ls3_c01274{letter-spacing:-0.019200pt;}
.ls2_c01274{letter-spacing:0.000000pt;}
.ls1_c01274{letter-spacing:0.128000pt;}
.ls0_c01274{letter-spacing:0.256000pt;}
.ws0_c01274{word-spacing:-11.619840pt;}
.ws1_c01274{word-spacing:0.000000pt;}
._0_c01274{margin-left:-1.572330pt;}
._3_c01274{width:0.932330pt;}
._2_c01274{width:2.816000pt;}
._1_c01274{width:3.776000pt;}
._5_c01274{width:5.760000pt;}
._4_c01274{width:10.368000pt;}
._8_c01274{width:20.416000pt;}
._9_c01274{width:24.384000pt;}
._7_c01274{width:33.034667pt;}
._6_c01274{width:34.112000pt;}
.fs0_c01274{font-size:58.880000pt;}
.fs2_c01274{font-size:64.000000pt;}
.fs1_c01274{font-size:74.880000pt;}
.y0_c01274{bottom:0.000000pt;}
.y1_c01274{bottom:69.152000pt;}
.y21_c01274{bottom:124.192000pt;}
.y20_c01274{bottom:142.426667pt;}
.y1f_c01274{bottom:179.386667pt;}
.y1e_c01274{bottom:197.626667pt;}
.y1d_c01274{bottom:234.426667pt;}
.y1c_c01274{bottom:253.026667pt;}
.y1b_c01274{bottom:289.826667pt;}
.y1a_c01274{bottom:308.066667pt;}
.y19_c01274{bottom:345.026667pt;}
.y18_c01274{bottom:363.426667pt;}
.y17_c01274{bottom:400.226667pt;}
.y16_c01274{bottom:418.466667pt;}
.y15_c01274{bottom:455.426667pt;}
.y14_c01274{bottom:473.666667pt;}
.y13_c01274{bottom:510.653333pt;}
.y12_c01274{bottom:528.893333pt;}
.y11_c01274{bottom:565.693333pt;}
.y10_c01274{bottom:620.893333pt;}
.yf_c01274{bottom:639.453333pt;}
.ye_c01274{bottom:657.853333pt;}
.yd_c01274{bottom:694.493333pt;}
.yc_c01274{bottom:713.053333pt;}
.yb_c01274{bottom:749.693333pt;}
.ya_c01274{bottom:768.293333pt;}
.y9_c01274{bottom:804.933333pt;}
.y8_c01274{bottom:823.493333pt;}
.y7_c01274{bottom:841.733333pt;}
.y6_c01274{bottom:878.533333pt;}
.y5_c01274{bottom:897.093333pt;}
.y4_c01274{bottom:915.333333pt;}
.y3_c01274{bottom:952.613333pt;}
.y2_c01274{bottom:1011.360000pt;}
.h2_c01274{height:44.648750pt;}
.h5_c01274{height:57.375000pt;}
.h6_c01274{height:57.781250pt;}
.h3_c01274{height:64.496250pt;}
.h4_c01274{height:78.097500pt;}
.h0_c01274{height:1122.560000pt;}
.h1_c01274{height:1122.666667pt;}
.w0_c01274{width:793.760000pt;}
.w1_c01274{width:794.000000pt;}
.x0_c01274{left:0.000000pt;}
.x3_c01274{left:113.472000pt;}
.x2_c01274{left:137.466667pt;}
.x1_c01274{left:658.213333pt;}
}





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

.ir_c01275:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01275;src:url('chunks/assets/font_e57e95ff0ac80b822786e108.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01275;src:url('chunks/assets/font_ac4c1b0ff966058f90c98e1c.woff2')format("woff");}.ff2_c01275{font-family:ff2_c01275;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01275;src:url('chunks/assets/font_9a1bf0fce99435727c3cdbeb.woff2')format("woff");}.ff3_c01275{font-family:ff3_c01275;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01275;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01275{font-family:ff4_c01275;line-height:1.113281;font-style:normal;font-weight: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_c01275;src:url('chunks/assets/font_2b1ff7e9719e1114b71759b9.woff2')format("woff");}.ff5_c01275{font-family:ff5_c01275;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;}
.m0_c01275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01275{vertical-align:0.000000px;}
.ls2_c01275{letter-spacing:-0.576000px;}
.ls1_c01275{letter-spacing:0.000000px;}
.ls0_c01275{letter-spacing:0.288000px;}
.sc__c01275{text-shadow:none;}
.sc0_c01275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01275{-webkit-text-stroke:0px transparent;}
.sc0_c01275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01275{word-spacing:-20.304000px;}
.ws1_c01275{word-spacing:-20.016000px;}
.ws2_c01275{word-spacing:0.000000px;}
._9_c01275{margin-left:-4.104000px;}
._0_c01275{margin-left:-2.880000px;}
._1_c01275{margin-left:-1.296000px;}
._3_c01275{width:1.164000px;}
._2_c01275{width:2.760000px;}
._c_c01275{width:3.888000px;}
._b_c01275{width:5.184000px;}
._7_c01275{width:6.912000px;}
._6_c01275{width:7.920000px;}
._f_c01275{width:10.056000px;}
._8_c01275{width:11.112000px;}
._e_c01275{width:17.424000px;}
._d_c01275{width:18.864000px;}
._a_c01275{width:26.640000px;}
._5_c01275{width:38.304000px;}
._4_c01275{width:39.600000px;}
.fc0_c01275{color:rgb(0,0,0);}
.fs0_c01275{font-size:66.240000px;}
.fs1_c01275{font-size:72.000000px;}
.fs2_c01275{font-size:84.240000px;}
.y0_c01275{bottom:0.000000px;}
.y2_c01275{bottom:57.636000px;}
.y1_c01275{bottom:77.796000px;}
.y33_c01275{bottom:142.956000px;}
.y32_c01275{bottom:163.650000px;}
.y31_c01275{bottom:184.350000px;}
.y30_c01275{bottom:205.230000px;}
.y2f_c01275{bottom:225.750000px;}
.y2e_c01275{bottom:246.450000px;}
.y2d_c01275{bottom:267.150000px;}
.y2c_c01275{bottom:288.075000px;}
.y2b_c01275{bottom:308.775000px;}
.y2a_c01275{bottom:329.295000px;}
.y29_c01275{bottom:349.995000px;}
.y28_c01275{bottom:370.695000px;}
.y27_c01275{bottom:391.395000px;}
.y26_c01275{bottom:412.275000px;}
.y25_c01275{bottom:432.975000px;}
.y24_c01275{bottom:453.495000px;}
.y23_c01275{bottom:474.375000px;}
.y22_c01275{bottom:495.075000px;}
.y21_c01275{bottom:515.775000px;}
.y20_c01275{bottom:536.295000px;}
.y1f_c01275{bottom:556.995000px;}
.y1e_c01275{bottom:577.905000px;}
.y1d_c01275{bottom:598.425000px;}
.y1c_c01275{bottom:619.125000px;}
.y1b_c01275{bottom:639.825000px;}
.y1a_c01275{bottom:660.705000px;}
.y19_c01275{bottom:681.225000px;}
.y18_c01275{bottom:701.925000px;}
.y17_c01275{bottom:722.805000px;}
.y16_c01275{bottom:743.325000px;}
.y15_c01275{bottom:764.565000px;}
.y14_c01275{bottom:788.145000px;}
.y13_c01275{bottom:808.845000px;}
.y12_c01275{bottom:829.545000px;}
.y11_c01275{bottom:850.290000px;}
.y10_c01275{bottom:871.170000px;}
.yf_c01275{bottom:891.870000px;}
.ye_c01275{bottom:912.390000px;}
.yd_c01275{bottom:933.270000px;}
.yc_c01275{bottom:953.790000px;}
.yb_c01275{bottom:974.490000px;}
.ya_c01275{bottom:995.370000px;}
.y9_c01275{bottom:1016.070000px;}
.y8_c01275{bottom:1036.590000px;}
.y7_c01275{bottom:1057.470000px;}
.y6_c01275{bottom:1078.170000px;}
.y5_c01275{bottom:1098.690000px;}
.y4_c01275{bottom:1119.570000px;}
.y3_c01275{bottom:1140.120000px;}
.h2_c01275{height:50.229844px;}
.h6_c01275{height:64.371094px;}
.h3_c01275{height:64.546875px;}
.h4_c01275{height:65.003906px;}
.h5_c01275{height:87.859687px;}
.h0_c01275{height:1262.880000px;}
.h1_c01275{height:1263.000000px;}
.w0_c01275{width:892.980000px;}
.w1_c01275{width:893.250000px;}
.x0_c01275{left:0.000000px;}
.x1_c01275{left:127.656000px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls2_c01275{letter-spacing:-0.512000pt;}
.ls1_c01275{letter-spacing:0.000000pt;}
.ls0_c01275{letter-spacing:0.256000pt;}
.ws0_c01275{word-spacing:-18.048000pt;}
.ws1_c01275{word-spacing:-17.792000pt;}
.ws2_c01275{word-spacing:0.000000pt;}
._9_c01275{margin-left:-3.648000pt;}
._0_c01275{margin-left:-2.560000pt;}
._1_c01275{margin-left:-1.152000pt;}
._3_c01275{width:1.034667pt;}
._2_c01275{width:2.453333pt;}
._c_c01275{width:3.456000pt;}
._b_c01275{width:4.608000pt;}
._7_c01275{width:6.144000pt;}
._6_c01275{width:7.040000pt;}
._f_c01275{width:8.938667pt;}
._8_c01275{width:9.877333pt;}
._e_c01275{width:15.488000pt;}
._d_c01275{width:16.768000pt;}
._a_c01275{width:23.680000pt;}
._5_c01275{width:34.048000pt;}
._4_c01275{width:35.200000pt;}
.fs0_c01275{font-size:58.880000pt;}
.fs1_c01275{font-size:64.000000pt;}
.fs2_c01275{font-size:74.880000pt;}
.y0_c01275{bottom:0.000000pt;}
.y2_c01275{bottom:51.232000pt;}
.y1_c01275{bottom:69.152000pt;}
.y33_c01275{bottom:127.072000pt;}
.y32_c01275{bottom:145.466667pt;}
.y31_c01275{bottom:163.866667pt;}
.y30_c01275{bottom:182.426667pt;}
.y2f_c01275{bottom:200.666667pt;}
.y2e_c01275{bottom:219.066667pt;}
.y2d_c01275{bottom:237.466667pt;}
.y2c_c01275{bottom:256.066667pt;}
.y2b_c01275{bottom:274.466667pt;}
.y2a_c01275{bottom:292.706667pt;}
.y29_c01275{bottom:311.106667pt;}
.y28_c01275{bottom:329.506667pt;}
.y27_c01275{bottom:347.906667pt;}
.y26_c01275{bottom:366.466667pt;}
.y25_c01275{bottom:384.866667pt;}
.y24_c01275{bottom:403.106667pt;}
.y23_c01275{bottom:421.666667pt;}
.y22_c01275{bottom:440.066667pt;}
.y21_c01275{bottom:458.466667pt;}
.y20_c01275{bottom:476.706667pt;}
.y1f_c01275{bottom:495.106667pt;}
.y1e_c01275{bottom:513.693333pt;}
.y1d_c01275{bottom:531.933333pt;}
.y1c_c01275{bottom:550.333333pt;}
.y1b_c01275{bottom:568.733333pt;}
.y1a_c01275{bottom:587.293333pt;}
.y19_c01275{bottom:605.533333pt;}
.y18_c01275{bottom:623.933333pt;}
.y17_c01275{bottom:642.493333pt;}
.y16_c01275{bottom:660.733333pt;}
.y15_c01275{bottom:679.613333pt;}
.y14_c01275{bottom:700.573333pt;}
.y13_c01275{bottom:718.973333pt;}
.y12_c01275{bottom:737.373333pt;}
.y11_c01275{bottom:755.813333pt;}
.y10_c01275{bottom:774.373333pt;}
.yf_c01275{bottom:792.773333pt;}
.ye_c01275{bottom:811.013333pt;}
.yd_c01275{bottom:829.573333pt;}
.yc_c01275{bottom:847.813333pt;}
.yb_c01275{bottom:866.213333pt;}
.ya_c01275{bottom:884.773333pt;}
.y9_c01275{bottom:903.173333pt;}
.y8_c01275{bottom:921.413333pt;}
.y7_c01275{bottom:939.973333pt;}
.y6_c01275{bottom:958.373333pt;}
.y5_c01275{bottom:976.613333pt;}
.y4_c01275{bottom:995.173333pt;}
.y3_c01275{bottom:1013.440000pt;}
.h2_c01275{height:44.648750pt;}
.h6_c01275{height:57.218750pt;}
.h3_c01275{height:57.375000pt;}
.h4_c01275{height:57.781250pt;}
.h5_c01275{height:78.097500pt;}
.h0_c01275{height:1122.560000pt;}
.h1_c01275{height:1122.666667pt;}
.w0_c01275{width:793.760000pt;}
.w1_c01275{width:794.000000pt;}
.x0_c01275{left:0.000000pt;}
.x1_c01275{left:113.472000pt;}
}





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

.ir_c01276:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01276;src:url('chunks/assets/font_1f9193ce3825705007dbcf35.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01276;src:url('chunks/assets/font_0eb2f40e7e140cbaf301cc26.woff2')format("woff");}.ff2_c01276{font-family:ff2_c01276;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01276;src:url('chunks/assets/font_7d97d617e8ca84d87e6c69e0.woff2')format("woff");}.ff3_c01276{font-family:ff3_c01276;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01276;src:url('chunks/assets/font_0fca904d0f2eddb026167ff2.woff2')format("woff");}.ff4_c01276{font-family:ff4_c01276;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.ls1_c01276{letter-spacing:-0.576000px;}
.ls0_c01276{letter-spacing:0.000000px;}
.sc__c01276{text-shadow:none;}
.sc0_c01276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01276{-webkit-text-stroke:0px transparent;}
.sc0_c01276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01276{word-spacing:-20.016000px;}
.ws1_c01276{word-spacing:0.000000px;}
._3_c01276{margin-left:-4.104000px;}
._1_c01276{margin-left:-2.880000px;}
._0_c01276{margin-left:-1.584000px;}
._2_c01276{width:1.452024px;}
._4_c01276{width:2.640000px;}
._10_c01276{width:3.672000px;}
._f_c01276{width:4.680000px;}
._6_c01276{width:6.264000px;}
._9_c01276{width:8.208000px;}
._a_c01276{width:9.516000px;}
._5_c01276{width:10.584000px;}
._d_c01276{width:11.808000px;}
._e_c01276{width:13.319976px;}
._8_c01276{width:14.688000px;}
._7_c01276{width:15.768000px;}
._c_c01276{width:21.744000px;}
._b_c01276{width:22.824000px;}
.fc0_c01276{color:rgb(0,0,0);}
.fs0_c01276{font-size:66.240000px;}
.fs1_c01276{font-size:72.000000px;}
.y0_c01276{bottom:0.000000px;}
.y2_c01276{bottom:57.636000px;}
.y1_c01276{bottom:77.796000px;}
.y34_c01276{bottom:125.676000px;}
.y33_c01276{bottom:146.376000px;}
.y32_c01276{bottom:167.070000px;}
.y31_c01276{bottom:187.950000px;}
.y30_c01276{bottom:208.470000px;}
.y2f_c01276{bottom:229.350000px;}
.y2e_c01276{bottom:249.870000px;}
.y2d_c01276{bottom:270.570000px;}
.y2c_c01276{bottom:291.495000px;}
.y2b_c01276{bottom:312.015000px;}
.y2a_c01276{bottom:332.895000px;}
.y29_c01276{bottom:353.595000px;}
.y28_c01276{bottom:374.115000px;}
.y27_c01276{bottom:394.815000px;}
.y26_c01276{bottom:415.695000px;}
.y25_c01276{bottom:436.395000px;}
.y24_c01276{bottom:456.915000px;}
.y23_c01276{bottom:477.795000px;}
.y22_c01276{bottom:498.315000px;}
.y21_c01276{bottom:519.015000px;}
.y20_c01276{bottom:539.715000px;}
.y1f_c01276{bottom:560.595000px;}
.y1e_c01276{bottom:581.145000px;}
.y1d_c01276{bottom:602.025000px;}
.y1c_c01276{bottom:622.725000px;}
.y1b_c01276{bottom:643.245000px;}
.y1a_c01276{bottom:663.945000px;}
.y19_c01276{bottom:684.825000px;}
.y18_c01276{bottom:705.345000px;}
.y17_c01276{bottom:726.225000px;}
.y16_c01276{bottom:746.745000px;}
.y15_c01276{bottom:767.445000px;}
.y14_c01276{bottom:788.145000px;}
.y13_c01276{bottom:809.025000px;}
.y12_c01276{bottom:829.545000px;}
.y11_c01276{bottom:850.290000px;}
.y10_c01276{bottom:871.170000px;}
.yf_c01276{bottom:891.690000px;}
.ye_c01276{bottom:912.390000px;}
.yd_c01276{bottom:933.270000px;}
.yc_c01276{bottom:953.790000px;}
.yb_c01276{bottom:974.490000px;}
.ya_c01276{bottom:995.190000px;}
.y9_c01276{bottom:1016.070000px;}
.y8_c01276{bottom:1036.590000px;}
.y7_c01276{bottom:1057.290000px;}
.y6_c01276{bottom:1077.990000px;}
.y5_c01276{bottom:1098.870000px;}
.y4_c01276{bottom:1119.390000px;}
.y3_c01276{bottom:1140.120000px;}
.h2_c01276{height:50.229844px;}
.h3_c01276{height:64.546875px;}
.h4_c01276{height:65.003906px;}
.h0_c01276{height:1262.880000px;}
.h1_c01276{height:1263.000000px;}
.w0_c01276{width:892.980000px;}
.w1_c01276{width:893.250000px;}
.x0_c01276{left:0.000000px;}
.x2_c01276{left:127.656000px;}
.x1_c01276{left:740.490000px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.ls1_c01276{letter-spacing:-0.512000pt;}
.ls0_c01276{letter-spacing:0.000000pt;}
.ws0_c01276{word-spacing:-17.792000pt;}
.ws1_c01276{word-spacing:0.000000pt;}
._3_c01276{margin-left:-3.648000pt;}
._1_c01276{margin-left:-2.560000pt;}
._0_c01276{margin-left:-1.408000pt;}
._2_c01276{width:1.290688pt;}
._4_c01276{width:2.346667pt;}
._10_c01276{width:3.264000pt;}
._f_c01276{width:4.160000pt;}
._6_c01276{width:5.568000pt;}
._9_c01276{width:7.296000pt;}
._a_c01276{width:8.458667pt;}
._5_c01276{width:9.408000pt;}
._d_c01276{width:10.496000pt;}
._e_c01276{width:11.839979pt;}
._8_c01276{width:13.056000pt;}
._7_c01276{width:14.016000pt;}
._c_c01276{width:19.328000pt;}
._b_c01276{width:20.288000pt;}
.fs0_c01276{font-size:58.880000pt;}
.fs1_c01276{font-size:64.000000pt;}
.y0_c01276{bottom:0.000000pt;}
.y2_c01276{bottom:51.232000pt;}
.y1_c01276{bottom:69.152000pt;}
.y34_c01276{bottom:111.712000pt;}
.y33_c01276{bottom:130.112000pt;}
.y32_c01276{bottom:148.506667pt;}
.y31_c01276{bottom:167.066667pt;}
.y30_c01276{bottom:185.306667pt;}
.y2f_c01276{bottom:203.866667pt;}
.y2e_c01276{bottom:222.106667pt;}
.y2d_c01276{bottom:240.506667pt;}
.y2c_c01276{bottom:259.106667pt;}
.y2b_c01276{bottom:277.346667pt;}
.y2a_c01276{bottom:295.906667pt;}
.y29_c01276{bottom:314.306667pt;}
.y28_c01276{bottom:332.546667pt;}
.y27_c01276{bottom:350.946667pt;}
.y26_c01276{bottom:369.506667pt;}
.y25_c01276{bottom:387.906667pt;}
.y24_c01276{bottom:406.146667pt;}
.y23_c01276{bottom:424.706667pt;}
.y22_c01276{bottom:442.946667pt;}
.y21_c01276{bottom:461.346667pt;}
.y20_c01276{bottom:479.746667pt;}
.y1f_c01276{bottom:498.306667pt;}
.y1e_c01276{bottom:516.573333pt;}
.y1d_c01276{bottom:535.133333pt;}
.y1c_c01276{bottom:553.533333pt;}
.y1b_c01276{bottom:571.773333pt;}
.y1a_c01276{bottom:590.173333pt;}
.y19_c01276{bottom:608.733333pt;}
.y18_c01276{bottom:626.973333pt;}
.y17_c01276{bottom:645.533333pt;}
.y16_c01276{bottom:663.773333pt;}
.y15_c01276{bottom:682.173333pt;}
.y14_c01276{bottom:700.573333pt;}
.y13_c01276{bottom:719.133333pt;}
.y12_c01276{bottom:737.373333pt;}
.y11_c01276{bottom:755.813333pt;}
.y10_c01276{bottom:774.373333pt;}
.yf_c01276{bottom:792.613333pt;}
.ye_c01276{bottom:811.013333pt;}
.yd_c01276{bottom:829.573333pt;}
.yc_c01276{bottom:847.813333pt;}
.yb_c01276{bottom:866.213333pt;}
.ya_c01276{bottom:884.613333pt;}
.y9_c01276{bottom:903.173333pt;}
.y8_c01276{bottom:921.413333pt;}
.y7_c01276{bottom:939.813333pt;}
.y6_c01276{bottom:958.213333pt;}
.y5_c01276{bottom:976.773333pt;}
.y4_c01276{bottom:995.013333pt;}
.y3_c01276{bottom:1013.440000pt;}
.h2_c01276{height:44.648750pt;}
.h3_c01276{height:57.375000pt;}
.h4_c01276{height:57.781250pt;}
.h0_c01276{height:1122.560000pt;}
.h1_c01276{height:1122.666667pt;}
.w0_c01276{width:793.760000pt;}
.w1_c01276{width:794.000000pt;}
.x0_c01276{left:0.000000pt;}
.x2_c01276{left:113.472000pt;}
.x1_c01276{left:658.213333pt;}
}





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

.ir_c01277:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01277;src:url('chunks/assets/font_b7a48e088b1e2bf8b81077ef.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01277;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff2_c01277{font-family:ff2_c01277;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01277;src:url('chunks/assets/font_7435ee9e7e5b6b0bb9387fc6.woff2')format("woff");}.ff3_c01277{font-family:ff3_c01277;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01277;src:url('chunks/assets/font_09e0c2559608a73afdfb8c7d.woff2')format("woff");}.ff4_c01277{font-family:ff4_c01277;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:ff5_c01277;src:url('chunks/assets/font_e1fcae1de4d9ecf98bd97e89.woff2')format("woff");}.ff5_c01277{font-family:ff5_c01277;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01277{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_c01277{vertical-align:0.000000px;}
.ls0_c01277{letter-spacing:0.000000px;}
.sc__c01277{text-shadow:none;}
.sc0_c01277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01277{-webkit-text-stroke:0px transparent;}
.sc0_c01277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01277{word-spacing:0.000000px;}
._0_c01277{margin-left:-1.080000px;}
._1_c01277{width:1.596000px;}
._2_c01277{width:18.936000px;}
.fc0_c01277{color:rgb(0,0,0);}
.fs0_c01277{font-size:66.240000px;}
.fs1_c01277{font-size:72.000000px;}
.fs2_c01277{font-size:84.240000px;}
.y0_c01277{bottom:0.000000px;}
.y2_c01277{bottom:57.636000px;}
.y1_c01277{bottom:77.796000px;}
.y34_c01277{bottom:122.256000px;}
.y33_c01277{bottom:142.956000px;}
.y32_c01277{bottom:163.830000px;}
.y31_c01277{bottom:184.350000px;}
.y30_c01277{bottom:205.050000px;}
.y2f_c01277{bottom:225.750000px;}
.y2e_c01277{bottom:246.450000px;}
.y2d_c01277{bottom:267.150000px;}
.y2c_c01277{bottom:287.895000px;}
.y2b_c01277{bottom:308.775000px;}
.y2a_c01277{bottom:329.295000px;}
.y29_c01277{bottom:349.995000px;}
.y28_c01277{bottom:370.695000px;}
.y27_c01277{bottom:391.395000px;}
.y26_c01277{bottom:412.095000px;}
.y25_c01277{bottom:432.795000px;}
.y24_c01277{bottom:453.495000px;}
.y23_c01277{bottom:474.195000px;}
.y22_c01277{bottom:494.895000px;}
.y21_c01277{bottom:515.595000px;}
.y20_c01277{bottom:536.295000px;}
.y1f_c01277{bottom:556.995000px;}
.y1e_c01277{bottom:577.725000px;}
.y1d_c01277{bottom:598.425000px;}
.y1c_c01277{bottom:619.125000px;}
.y1b_c01277{bottom:639.825000px;}
.y1a_c01277{bottom:660.525000px;}
.y19_c01277{bottom:681.225000px;}
.y18_c01277{bottom:702.105000px;}
.y17_c01277{bottom:722.625000px;}
.y16_c01277{bottom:743.325000px;}
.y15_c01277{bottom:764.025000px;}
.y14_c01277{bottom:784.905000px;}
.y13_c01277{bottom:805.605000px;}
.y12_c01277{bottom:826.125000px;}
.y11_c01277{bottom:846.825000px;}
.y10_c01277{bottom:867.750000px;}
.yf_c01277{bottom:888.270000px;}
.ye_c01277{bottom:909.150000px;}
.yd_c01277{bottom:929.850000px;}
.yc_c01277{bottom:950.370000px;}
.yb_c01277{bottom:970.890000px;}
.ya_c01277{bottom:992.310000px;}
.y9_c01277{bottom:1015.890000px;}
.y8_c01277{bottom:1036.590000px;}
.y7_c01277{bottom:1057.290000px;}
.y6_c01277{bottom:1077.990000px;}
.y5_c01277{bottom:1098.690000px;}
.y4_c01277{bottom:1119.390000px;}
.y3_c01277{bottom:1140.120000px;}
.h2_c01277{height:50.229844px;}
.h6_c01277{height:64.371094px;}
.h4_c01277{height:64.546875px;}
.h3_c01277{height:65.003906px;}
.h5_c01277{height:87.859687px;}
.h0_c01277{height:1262.880000px;}
.h1_c01277{height:1263.000000px;}
.w0_c01277{width:892.980000px;}
.w1_c01277{width:893.250000px;}
.x0_c01277{left:0.000000px;}
.x1_c01277{left:127.656000px;}
@media print{
.v0_c01277{vertical-align:0.000000pt;}
.ls0_c01277{letter-spacing:0.000000pt;}
.ws0_c01277{word-spacing:0.000000pt;}
._0_c01277{margin-left:-0.960000pt;}
._1_c01277{width:1.418667pt;}
._2_c01277{width:16.832000pt;}
.fs0_c01277{font-size:58.880000pt;}
.fs1_c01277{font-size:64.000000pt;}
.fs2_c01277{font-size:74.880000pt;}
.y0_c01277{bottom:0.000000pt;}
.y2_c01277{bottom:51.232000pt;}
.y1_c01277{bottom:69.152000pt;}
.y34_c01277{bottom:108.672000pt;}
.y33_c01277{bottom:127.072000pt;}
.y32_c01277{bottom:145.626667pt;}
.y31_c01277{bottom:163.866667pt;}
.y30_c01277{bottom:182.266667pt;}
.y2f_c01277{bottom:200.666667pt;}
.y2e_c01277{bottom:219.066667pt;}
.y2d_c01277{bottom:237.466667pt;}
.y2c_c01277{bottom:255.906667pt;}
.y2b_c01277{bottom:274.466667pt;}
.y2a_c01277{bottom:292.706667pt;}
.y29_c01277{bottom:311.106667pt;}
.y28_c01277{bottom:329.506667pt;}
.y27_c01277{bottom:347.906667pt;}
.y26_c01277{bottom:366.306667pt;}
.y25_c01277{bottom:384.706667pt;}
.y24_c01277{bottom:403.106667pt;}
.y23_c01277{bottom:421.506667pt;}
.y22_c01277{bottom:439.906667pt;}
.y21_c01277{bottom:458.306667pt;}
.y20_c01277{bottom:476.706667pt;}
.y1f_c01277{bottom:495.106667pt;}
.y1e_c01277{bottom:513.533333pt;}
.y1d_c01277{bottom:531.933333pt;}
.y1c_c01277{bottom:550.333333pt;}
.y1b_c01277{bottom:568.733333pt;}
.y1a_c01277{bottom:587.133333pt;}
.y19_c01277{bottom:605.533333pt;}
.y18_c01277{bottom:624.093333pt;}
.y17_c01277{bottom:642.333333pt;}
.y16_c01277{bottom:660.733333pt;}
.y15_c01277{bottom:679.133333pt;}
.y14_c01277{bottom:697.693333pt;}
.y13_c01277{bottom:716.093333pt;}
.y12_c01277{bottom:734.333333pt;}
.y11_c01277{bottom:752.733333pt;}
.y10_c01277{bottom:771.333333pt;}
.yf_c01277{bottom:789.573333pt;}
.ye_c01277{bottom:808.133333pt;}
.yd_c01277{bottom:826.533333pt;}
.yc_c01277{bottom:844.773333pt;}
.yb_c01277{bottom:863.013333pt;}
.ya_c01277{bottom:882.053333pt;}
.y9_c01277{bottom:903.013333pt;}
.y8_c01277{bottom:921.413333pt;}
.y7_c01277{bottom:939.813333pt;}
.y6_c01277{bottom:958.213333pt;}
.y5_c01277{bottom:976.613333pt;}
.y4_c01277{bottom:995.013333pt;}
.y3_c01277{bottom:1013.440000pt;}
.h2_c01277{height:44.648750pt;}
.h6_c01277{height:57.218750pt;}
.h4_c01277{height:57.375000pt;}
.h3_c01277{height:57.781250pt;}
.h5_c01277{height:78.097500pt;}
.h0_c01277{height:1122.560000pt;}
.h1_c01277{height:1122.666667pt;}
.w0_c01277{width:793.760000pt;}
.w1_c01277{width:794.000000pt;}
.x0_c01277{left:0.000000pt;}
.x1_c01277{left:113.472000pt;}
}





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

.ir_c01278:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01278;src:url('chunks/assets/font_c017011d1b80cf46aef91fc3.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01278;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff2_c01278{font-family:ff2_c01278;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01278;src:url('chunks/assets/font_bbea92f7402644e778690d4d.woff2')format("woff");}.ff3_c01278{font-family:ff3_c01278;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01278;src:url('chunks/assets/font_08ed5049f1ff86c47abc363f.woff2')format("woff");}.ff4_c01278{font-family:ff4_c01278;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:ff5_c01278;src:url('chunks/assets/font_305d8a32f0457e1e08c493b0.woff2')format("woff");}.ff5_c01278{font-family:ff5_c01278;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01278{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_c01278{vertical-align:0.000000px;}
.ls2_c01278{letter-spacing:-0.432000px;}
.ls1_c01278{letter-spacing:0.000000px;}
.ls0_c01278{letter-spacing:0.288000px;}
.sc__c01278{text-shadow:none;}
.sc0_c01278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01278{-webkit-text-stroke:0px transparent;}
.sc0_c01278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01278{word-spacing:-20.304000px;}
.ws0_c01278{word-spacing:-20.016000px;}
.ws2_c01278{word-spacing:0.000000px;}
._2_c01278{margin-left:-5.616000px;}
._1_c01278{margin-left:-4.464000px;}
._9_c01278{margin-left:-2.736000px;}
._0_c01278{margin-left:-1.010964px;}
._3_c01278{width:1.166964px;}
._6_c01278{width:2.274072px;}
._5_c01278{width:3.432000px;}
._8_c01278{width:6.272893px;}
._7_c01278{width:7.416000px;}
._4_c01278{width:11.592000px;}
.fc0_c01278{color:rgb(0,0,0);}
.fs0_c01278{font-size:66.240000px;}
.fs1_c01278{font-size:72.000000px;}
.fs2_c01278{font-size:84.240000px;}
.y0_c01278{bottom:0.000000px;}
.y2_c01278{bottom:57.636000px;}
.y1_c01278{bottom:77.796000px;}
.y34_c01278{bottom:122.256000px;}
.y33_c01278{bottom:142.956000px;}
.y32_c01278{bottom:163.650000px;}
.y31_c01278{bottom:184.350000px;}
.y30_c01278{bottom:205.050000px;}
.y2f_c01278{bottom:225.750000px;}
.y2e_c01278{bottom:246.450000px;}
.y2d_c01278{bottom:267.150000px;}
.y2c_c01278{bottom:287.895000px;}
.y2b_c01278{bottom:308.595000px;}
.y2a_c01278{bottom:329.295000px;}
.y29_c01278{bottom:349.995000px;}
.y28_c01278{bottom:370.695000px;}
.y27_c01278{bottom:391.575000px;}
.y26_c01278{bottom:412.095000px;}
.y25_c01278{bottom:432.795000px;}
.y24_c01278{bottom:453.675000px;}
.y23_c01278{bottom:474.195000px;}
.y22_c01278{bottom:494.895000px;}
.y21_c01278{bottom:515.775000px;}
.y20_c01278{bottom:536.295000px;}
.y1f_c01278{bottom:556.995000px;}
.y1e_c01278{bottom:577.905000px;}
.y1d_c01278{bottom:598.425000px;}
.y1c_c01278{bottom:619.125000px;}
.y1b_c01278{bottom:639.825000px;}
.y1a_c01278{bottom:660.525000px;}
.y19_c01278{bottom:681.225000px;}
.y18_c01278{bottom:701.925000px;}
.y17_c01278{bottom:722.805000px;}
.y16_c01278{bottom:743.325000px;}
.y15_c01278{bottom:764.205000px;}
.y14_c01278{bottom:784.905000px;}
.y13_c01278{bottom:805.425000px;}
.y12_c01278{bottom:826.305000px;}
.y11_c01278{bottom:846.825000px;}
.y10_c01278{bottom:867.570000px;}
.yf_c01278{bottom:888.450000px;}
.ye_c01278{bottom:909.150000px;}
.yd_c01278{bottom:929.670000px;}
.yc_c01278{bottom:950.370000px;}
.yb_c01278{bottom:971.070000px;}
.ya_c01278{bottom:991.590000px;}
.y9_c01278{bottom:1013.010000px;}
.y8_c01278{bottom:1036.590000px;}
.y7_c01278{bottom:1057.290000px;}
.y6_c01278{bottom:1077.990000px;}
.y5_c01278{bottom:1098.690000px;}
.y4_c01278{bottom:1119.390000px;}
.y3_c01278{bottom:1140.120000px;}
.h2_c01278{height:50.229844px;}
.h4_c01278{height:64.546875px;}
.h3_c01278{height:65.003906px;}
.h5_c01278{height:87.859687px;}
.h0_c01278{height:1262.880000px;}
.h1_c01278{height:1263.000000px;}
.w0_c01278{width:892.980000px;}
.w1_c01278{width:893.250000px;}
.x0_c01278{left:0.000000px;}
.x2_c01278{left:127.656000px;}
.x1_c01278{left:740.490000px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls2_c01278{letter-spacing:-0.384000pt;}
.ls1_c01278{letter-spacing:0.000000pt;}
.ls0_c01278{letter-spacing:0.256000pt;}
.ws1_c01278{word-spacing:-18.048000pt;}
.ws0_c01278{word-spacing:-17.792000pt;}
.ws2_c01278{word-spacing:0.000000pt;}
._2_c01278{margin-left:-4.992000pt;}
._1_c01278{margin-left:-3.968000pt;}
._9_c01278{margin-left:-2.432000pt;}
._0_c01278{margin-left:-0.898635pt;}
._3_c01278{width:1.037302pt;}
._6_c01278{width:2.021397pt;}
._5_c01278{width:3.050667pt;}
._8_c01278{width:5.575905pt;}
._7_c01278{width:6.592000pt;}
._4_c01278{width:10.304000pt;}
.fs0_c01278{font-size:58.880000pt;}
.fs1_c01278{font-size:64.000000pt;}
.fs2_c01278{font-size:74.880000pt;}
.y0_c01278{bottom:0.000000pt;}
.y2_c01278{bottom:51.232000pt;}
.y1_c01278{bottom:69.152000pt;}
.y34_c01278{bottom:108.672000pt;}
.y33_c01278{bottom:127.072000pt;}
.y32_c01278{bottom:145.466667pt;}
.y31_c01278{bottom:163.866667pt;}
.y30_c01278{bottom:182.266667pt;}
.y2f_c01278{bottom:200.666667pt;}
.y2e_c01278{bottom:219.066667pt;}
.y2d_c01278{bottom:237.466667pt;}
.y2c_c01278{bottom:255.906667pt;}
.y2b_c01278{bottom:274.306667pt;}
.y2a_c01278{bottom:292.706667pt;}
.y29_c01278{bottom:311.106667pt;}
.y28_c01278{bottom:329.506667pt;}
.y27_c01278{bottom:348.066667pt;}
.y26_c01278{bottom:366.306667pt;}
.y25_c01278{bottom:384.706667pt;}
.y24_c01278{bottom:403.266667pt;}
.y23_c01278{bottom:421.506667pt;}
.y22_c01278{bottom:439.906667pt;}
.y21_c01278{bottom:458.466667pt;}
.y20_c01278{bottom:476.706667pt;}
.y1f_c01278{bottom:495.106667pt;}
.y1e_c01278{bottom:513.693333pt;}
.y1d_c01278{bottom:531.933333pt;}
.y1c_c01278{bottom:550.333333pt;}
.y1b_c01278{bottom:568.733333pt;}
.y1a_c01278{bottom:587.133333pt;}
.y19_c01278{bottom:605.533333pt;}
.y18_c01278{bottom:623.933333pt;}
.y17_c01278{bottom:642.493333pt;}
.y16_c01278{bottom:660.733333pt;}
.y15_c01278{bottom:679.293333pt;}
.y14_c01278{bottom:697.693333pt;}
.y13_c01278{bottom:715.933333pt;}
.y12_c01278{bottom:734.493333pt;}
.y11_c01278{bottom:752.733333pt;}
.y10_c01278{bottom:771.173333pt;}
.yf_c01278{bottom:789.733333pt;}
.ye_c01278{bottom:808.133333pt;}
.yd_c01278{bottom:826.373333pt;}
.yc_c01278{bottom:844.773333pt;}
.yb_c01278{bottom:863.173333pt;}
.ya_c01278{bottom:881.413333pt;}
.y9_c01278{bottom:900.453333pt;}
.y8_c01278{bottom:921.413333pt;}
.y7_c01278{bottom:939.813333pt;}
.y6_c01278{bottom:958.213333pt;}
.y5_c01278{bottom:976.613333pt;}
.y4_c01278{bottom:995.013333pt;}
.y3_c01278{bottom:1013.440000pt;}
.h2_c01278{height:44.648750pt;}
.h4_c01278{height:57.375000pt;}
.h3_c01278{height:57.781250pt;}
.h5_c01278{height:78.097500pt;}
.h0_c01278{height:1122.560000pt;}
.h1_c01278{height:1122.666667pt;}
.w0_c01278{width:793.760000pt;}
.w1_c01278{width:794.000000pt;}
.x0_c01278{left:0.000000pt;}
.x2_c01278{left:113.472000pt;}
.x1_c01278{left:658.213333pt;}
}





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

.ir_c01279:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01279;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01279;src:url('chunks/assets/font_e5053e93734c57b00e720734.woff2')format("woff");}.ff2_c01279{font-family:ff2_c01279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01279;src:url('chunks/assets/font_05b58b2493a4f35346ee4829.woff2')format("woff");}.ff3_c01279{font-family:ff3_c01279;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01279;src:url('chunks/assets/font_dd5b649f633bf28a83df0532.woff2')format("woff");}.ff4_c01279{font-family:ff4_c01279;line-height:1.104492;font-style:normal;font-weight: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_c01279;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff5_c01279{font-family:ff5_c01279;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01279{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_c01279{vertical-align:0.000000px;}
.ls2_c01279{letter-spacing:-0.576000px;}
.ls1_c01279{letter-spacing:0.000000px;}
.ls0_c01279{letter-spacing:0.144000px;}
.ls3_c01279{letter-spacing:0.288000px;}
.sc__c01279{text-shadow:none;}
.sc0_c01279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01279{-webkit-text-stroke:0px transparent;}
.sc0_c01279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01279{word-spacing:-20.016000px;}
.ws1_c01279{word-spacing:0.000000px;}
._6_c01279{margin-left:-2.508000px;}
._0_c01279{margin-left:-1.010964px;}
._1_c01279{width:1.368000px;}
._7_c01279{width:2.748000px;}
._4_c01279{width:4.536000px;}
._3_c01279{width:5.544000px;}
._9_c01279{width:6.557928px;}
._8_c01279{width:7.560000px;}
._a_c01279{width:8.712000px;}
._b_c01279{width:9.864000px;}
._c_c01279{width:11.153928px;}
._d_c01279{width:14.904000px;}
._e_c01279{width:16.982964px;}
._2_c01279{width:22.464000px;}
._5_c01279{width:24.192000px;}
.fc0_c01279{color:rgb(0,0,0);}
.fs0_c01279{font-size:66.240000px;}
.fs2_c01279{font-size:72.000000px;}
.fs1_c01279{font-size:84.240000px;}
.y0_c01279{bottom:0.000000px;}
.y2_c01279{bottom:57.636000px;}
.y1_c01279{bottom:77.796000px;}
.y34_c01279{bottom:122.256000px;}
.y33_c01279{bottom:142.956000px;}
.y32_c01279{bottom:163.650000px;}
.y31_c01279{bottom:184.350000px;}
.y30_c01279{bottom:205.050000px;}
.y2f_c01279{bottom:225.750000px;}
.y2e_c01279{bottom:246.630000px;}
.y2d_c01279{bottom:267.150000px;}
.y2c_c01279{bottom:287.895000px;}
.y2b_c01279{bottom:308.595000px;}
.y2a_c01279{bottom:329.295000px;}
.y29_c01279{bottom:349.995000px;}
.y28_c01279{bottom:370.695000px;}
.y27_c01279{bottom:391.395000px;}
.y26_c01279{bottom:412.095000px;}
.y25_c01279{bottom:432.795000px;}
.y24_c01279{bottom:453.495000px;}
.y23_c01279{bottom:474.195000px;}
.y22_c01279{bottom:495.075000px;}
.y21_c01279{bottom:515.595000px;}
.y20_c01279{bottom:536.475000px;}
.y1f_c01279{bottom:556.995000px;}
.y1e_c01279{bottom:577.725000px;}
.y1d_c01279{bottom:598.425000px;}
.y1c_c01279{bottom:619.305000px;}
.y1b_c01279{bottom:639.825000px;}
.y1a_c01279{bottom:660.525000px;}
.y19_c01279{bottom:681.225000px;}
.y18_c01279{bottom:701.925000px;}
.y17_c01279{bottom:722.625000px;}
.y16_c01279{bottom:743.505000px;}
.y15_c01279{bottom:764.025000px;}
.y14_c01279{bottom:784.905000px;}
.y13_c01279{bottom:805.605000px;}
.y12_c01279{bottom:826.125000px;}
.y11_c01279{bottom:846.825000px;}
.y10_c01279{bottom:867.570000px;}
.yf_c01279{bottom:888.450000px;}
.ye_c01279{bottom:909.150000px;}
.yd_c01279{bottom:929.670000px;}
.yc_c01279{bottom:950.550000px;}
.yb_c01279{bottom:970.890000px;}
.ya_c01279{bottom:991.770000px;}
.y9_c01279{bottom:1012.290000px;}
.y8_c01279{bottom:1032.990000px;}
.y7_c01279{bottom:1053.690000px;}
.y6_c01279{bottom:1074.390000px;}
.y5_c01279{bottom:1095.270000px;}
.y4_c01279{bottom:1115.790000px;}
.y3_c01279{bottom:1137.240000px;}
.h2_c01279{height:50.229844px;}
.h6_c01279{height:64.371094px;}
.h4_c01279{height:64.546875px;}
.h5_c01279{height:65.003906px;}
.h7_c01279{height:75.093750px;}
.h3_c01279{height:87.859687px;}
.h0_c01279{height:1262.880000px;}
.h1_c01279{height:1263.000000px;}
.w0_c01279{width:892.980000px;}
.w1_c01279{width:893.250000px;}
.x0_c01279{left:0.000000px;}
.x1_c01279{left:127.656000px;}
@media print{
.v0_c01279{vertical-align:0.000000pt;}
.ls2_c01279{letter-spacing:-0.512000pt;}
.ls1_c01279{letter-spacing:0.000000pt;}
.ls0_c01279{letter-spacing:0.128000pt;}
.ls3_c01279{letter-spacing:0.256000pt;}
.ws0_c01279{word-spacing:-17.792000pt;}
.ws1_c01279{word-spacing:0.000000pt;}
._6_c01279{margin-left:-2.229333pt;}
._0_c01279{margin-left:-0.898635pt;}
._1_c01279{width:1.216000pt;}
._7_c01279{width:2.442667pt;}
._4_c01279{width:4.032000pt;}
._3_c01279{width:4.928000pt;}
._9_c01279{width:5.829270pt;}
._8_c01279{width:6.720000pt;}
._a_c01279{width:7.744000pt;}
._b_c01279{width:8.768000pt;}
._c_c01279{width:9.914603pt;}
._d_c01279{width:13.248000pt;}
._e_c01279{width:15.095968pt;}
._2_c01279{width:19.968000pt;}
._5_c01279{width:21.504000pt;}
.fs0_c01279{font-size:58.880000pt;}
.fs2_c01279{font-size:64.000000pt;}
.fs1_c01279{font-size:74.880000pt;}
.y0_c01279{bottom:0.000000pt;}
.y2_c01279{bottom:51.232000pt;}
.y1_c01279{bottom:69.152000pt;}
.y34_c01279{bottom:108.672000pt;}
.y33_c01279{bottom:127.072000pt;}
.y32_c01279{bottom:145.466667pt;}
.y31_c01279{bottom:163.866667pt;}
.y30_c01279{bottom:182.266667pt;}
.y2f_c01279{bottom:200.666667pt;}
.y2e_c01279{bottom:219.226667pt;}
.y2d_c01279{bottom:237.466667pt;}
.y2c_c01279{bottom:255.906667pt;}
.y2b_c01279{bottom:274.306667pt;}
.y2a_c01279{bottom:292.706667pt;}
.y29_c01279{bottom:311.106667pt;}
.y28_c01279{bottom:329.506667pt;}
.y27_c01279{bottom:347.906667pt;}
.y26_c01279{bottom:366.306667pt;}
.y25_c01279{bottom:384.706667pt;}
.y24_c01279{bottom:403.106667pt;}
.y23_c01279{bottom:421.506667pt;}
.y22_c01279{bottom:440.066667pt;}
.y21_c01279{bottom:458.306667pt;}
.y20_c01279{bottom:476.866667pt;}
.y1f_c01279{bottom:495.106667pt;}
.y1e_c01279{bottom:513.533333pt;}
.y1d_c01279{bottom:531.933333pt;}
.y1c_c01279{bottom:550.493333pt;}
.y1b_c01279{bottom:568.733333pt;}
.y1a_c01279{bottom:587.133333pt;}
.y19_c01279{bottom:605.533333pt;}
.y18_c01279{bottom:623.933333pt;}
.y17_c01279{bottom:642.333333pt;}
.y16_c01279{bottom:660.893333pt;}
.y15_c01279{bottom:679.133333pt;}
.y14_c01279{bottom:697.693333pt;}
.y13_c01279{bottom:716.093333pt;}
.y12_c01279{bottom:734.333333pt;}
.y11_c01279{bottom:752.733333pt;}
.y10_c01279{bottom:771.173333pt;}
.yf_c01279{bottom:789.733333pt;}
.ye_c01279{bottom:808.133333pt;}
.yd_c01279{bottom:826.373333pt;}
.yc_c01279{bottom:844.933333pt;}
.yb_c01279{bottom:863.013333pt;}
.ya_c01279{bottom:881.573333pt;}
.y9_c01279{bottom:899.813333pt;}
.y8_c01279{bottom:918.213333pt;}
.y7_c01279{bottom:936.613333pt;}
.y6_c01279{bottom:955.013333pt;}
.y5_c01279{bottom:973.573333pt;}
.y4_c01279{bottom:991.813333pt;}
.y3_c01279{bottom:1010.880000pt;}
.h2_c01279{height:44.648750pt;}
.h6_c01279{height:57.218750pt;}
.h4_c01279{height:57.375000pt;}
.h5_c01279{height:57.781250pt;}
.h7_c01279{height:66.750000pt;}
.h3_c01279{height:78.097500pt;}
.h0_c01279{height:1122.560000pt;}
.h1_c01279{height:1122.666667pt;}
.w0_c01279{width:793.760000pt;}
.w1_c01279{width:794.000000pt;}
.x0_c01279{left:0.000000pt;}
.x1_c01279{left:113.472000pt;}
}





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

.ir_c01280:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01280;src:url('chunks/assets/font_c2c5ebde5958a2dddcb78cfe.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01280;src:url('chunks/assets/font_93c22a805f2d20373fa07f7d.woff2')format("woff");}.ff2_c01280{font-family:ff2_c01280;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01280;src:url('chunks/assets/font_496d28e2a64ed500442d35cd.woff2')format("woff");}.ff3_c01280{font-family:ff3_c01280;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01280;src:url('chunks/assets/font_bf070c1e34e9ea64bc140760.woff2')format("woff");}.ff4_c01280{font-family:ff4_c01280;line-height:1.104492;font-style:normal;font-weight: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_c01280;src:url('chunks/assets/font_e2f9a5278ebbebd689c82000.woff2')format("woff");}.ff5_c01280{font-family:ff5_c01280;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01280{vertical-align:0.000000px;}
.ls3_c01280{letter-spacing:-0.432000px;}
.ls4_c01280{letter-spacing:-0.144000px;}
.ls2_c01280{letter-spacing:0.000000px;}
.ls0_c01280{letter-spacing:0.144000px;}
.ls1_c01280{letter-spacing:0.288000px;}
.sc__c01280{text-shadow:none;}
.sc0_c01280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01280{-webkit-text-stroke:0px transparent;}
.sc0_c01280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01280{word-spacing:-20.304000px;}
.ws0_c01280{word-spacing:-20.016000px;}
.ws1_c01280{word-spacing:-19.872000px;}
.ws3_c01280{word-spacing:0.000000px;}
._6_c01280{margin-left:-2.102988px;}
._0_c01280{margin-left:-1.010964px;}
._3_c01280{width:1.382988px;}
._7_c01280{width:3.071952px;}
._1_c01280{width:4.464000px;}
._2_c01280{width:5.688000px;}
._a_c01280{width:8.316000px;}
._8_c01280{width:9.504000px;}
._9_c01280{width:11.180941px;}
._d_c01280{width:12.242964px;}
._5_c01280{width:13.896000px;}
._4_c01280{width:14.904000px;}
._10_c01280{width:16.992000px;}
._b_c01280{width:35.352000px;}
._c_c01280{width:38.804988px;}
._e_c01280{width:40.896000px;}
._f_c01280{width:42.062988px;}
.fc0_c01280{color:rgb(0,0,0);}
.fs3_c01280{font-size:48.240000px;}
.fs0_c01280{font-size:66.240000px;}
.fs2_c01280{font-size:72.000000px;}
.fs1_c01280{font-size:84.240000px;}
.y0_c01280{bottom:0.000000px;}
.y2_c01280{bottom:57.636000px;}
.y1_c01280{bottom:77.796000px;}
.y33_c01280{bottom:148.896000px;}
.y32_c01280{bottom:163.830000px;}
.y31_c01280{bottom:184.350000px;}
.y30_c01280{bottom:205.050000px;}
.y2f_c01280{bottom:225.930000px;}
.y2e_c01280{bottom:246.450000px;}
.y2d_c01280{bottom:267.330000px;}
.y2c_c01280{bottom:287.895000px;}
.y2b_c01280{bottom:314.535000px;}
.y2a_c01280{bottom:329.475000px;}
.y29_c01280{bottom:349.995000px;}
.y28_c01280{bottom:376.635000px;}
.y27_c01280{bottom:391.395000px;}
.y26_c01280{bottom:412.095000px;}
.y25_c01280{bottom:432.795000px;}
.y24_c01280{bottom:453.495000px;}
.y23_c01280{bottom:474.375000px;}
.y22_c01280{bottom:494.895000px;}
.y21_c01280{bottom:515.595000px;}
.y20_c01280{bottom:536.475000px;}
.y1f_c01280{bottom:556.995000px;}
.y1e_c01280{bottom:577.725000px;}
.y1d_c01280{bottom:598.425000px;}
.y1c_c01280{bottom:619.125000px;}
.y1b_c01280{bottom:640.005000px;}
.y1a_c01280{bottom:660.705000px;}
.y19_c01280{bottom:681.225000px;}
.y18_c01280{bottom:701.925000px;}
.y17_c01280{bottom:722.625000px;}
.y16_c01280{bottom:743.505000px;}
.y15_c01280{bottom:764.205000px;}
.y14_c01280{bottom:784.725000px;}
.y13_c01280{bottom:805.425000px;}
.y12_c01280{bottom:826.125000px;}
.y11_c01280{bottom:847.005000px;}
.y10_c01280{bottom:867.750000px;}
.yf_c01280{bottom:888.270000px;}
.ye_c01280{bottom:908.970000px;}
.yd_c01280{bottom:929.670000px;}
.yc_c01280{bottom:950.370000px;}
.yb_c01280{bottom:971.070000px;}
.ya_c01280{bottom:991.590000px;}
.y9_c01280{bottom:1012.290000px;}
.y8_c01280{bottom:1032.990000px;}
.y7_c01280{bottom:1053.870000px;}
.y6_c01280{bottom:1074.570000px;}
.y5_c01280{bottom:1095.090000px;}
.y4_c01280{bottom:1115.790000px;}
.y3_c01280{bottom:1137.240000px;}
.h6_c01280{height:43.246406px;}
.h2_c01280{height:50.229844px;}
.h4_c01280{height:64.546875px;}
.h5_c01280{height:65.003906px;}
.h3_c01280{height:87.859687px;}
.h0_c01280{height:1262.880000px;}
.h1_c01280{height:1263.000000px;}
.w0_c01280{width:892.980000px;}
.w1_c01280{width:893.250000px;}
.x0_c01280{left:0.000000px;}
.x2_c01280{left:127.656000px;}
.x1_c01280{left:740.490000px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls3_c01280{letter-spacing:-0.384000pt;}
.ls4_c01280{letter-spacing:-0.128000pt;}
.ls2_c01280{letter-spacing:0.000000pt;}
.ls0_c01280{letter-spacing:0.128000pt;}
.ls1_c01280{letter-spacing:0.256000pt;}
.ws2_c01280{word-spacing:-18.048000pt;}
.ws0_c01280{word-spacing:-17.792000pt;}
.ws1_c01280{word-spacing:-17.664000pt;}
.ws3_c01280{word-spacing:0.000000pt;}
._6_c01280{margin-left:-1.869323pt;}
._0_c01280{margin-left:-0.898635pt;}
._3_c01280{width:1.229323pt;}
._7_c01280{width:2.730624pt;}
._1_c01280{width:3.968000pt;}
._2_c01280{width:5.056000pt;}
._a_c01280{width:7.392000pt;}
._8_c01280{width:8.448000pt;}
._9_c01280{width:9.938614pt;}
._d_c01280{width:10.882635pt;}
._5_c01280{width:12.352000pt;}
._4_c01280{width:13.248000pt;}
._10_c01280{width:15.104000pt;}
._b_c01280{width:31.424000pt;}
._c_c01280{width:34.493322pt;}
._e_c01280{width:36.352000pt;}
._f_c01280{width:37.389323pt;}
.fs3_c01280{font-size:42.880000pt;}
.fs0_c01280{font-size:58.880000pt;}
.fs2_c01280{font-size:64.000000pt;}
.fs1_c01280{font-size:74.880000pt;}
.y0_c01280{bottom:0.000000pt;}
.y2_c01280{bottom:51.232000pt;}
.y1_c01280{bottom:69.152000pt;}
.y33_c01280{bottom:132.352000pt;}
.y32_c01280{bottom:145.626667pt;}
.y31_c01280{bottom:163.866667pt;}
.y30_c01280{bottom:182.266667pt;}
.y2f_c01280{bottom:200.826667pt;}
.y2e_c01280{bottom:219.066667pt;}
.y2d_c01280{bottom:237.626667pt;}
.y2c_c01280{bottom:255.906667pt;}
.y2b_c01280{bottom:279.586667pt;}
.y2a_c01280{bottom:292.866667pt;}
.y29_c01280{bottom:311.106667pt;}
.y28_c01280{bottom:334.786667pt;}
.y27_c01280{bottom:347.906667pt;}
.y26_c01280{bottom:366.306667pt;}
.y25_c01280{bottom:384.706667pt;}
.y24_c01280{bottom:403.106667pt;}
.y23_c01280{bottom:421.666667pt;}
.y22_c01280{bottom:439.906667pt;}
.y21_c01280{bottom:458.306667pt;}
.y20_c01280{bottom:476.866667pt;}
.y1f_c01280{bottom:495.106667pt;}
.y1e_c01280{bottom:513.533333pt;}
.y1d_c01280{bottom:531.933333pt;}
.y1c_c01280{bottom:550.333333pt;}
.y1b_c01280{bottom:568.893333pt;}
.y1a_c01280{bottom:587.293333pt;}
.y19_c01280{bottom:605.533333pt;}
.y18_c01280{bottom:623.933333pt;}
.y17_c01280{bottom:642.333333pt;}
.y16_c01280{bottom:660.893333pt;}
.y15_c01280{bottom:679.293333pt;}
.y14_c01280{bottom:697.533333pt;}
.y13_c01280{bottom:715.933333pt;}
.y12_c01280{bottom:734.333333pt;}
.y11_c01280{bottom:752.893333pt;}
.y10_c01280{bottom:771.333333pt;}
.yf_c01280{bottom:789.573333pt;}
.ye_c01280{bottom:807.973333pt;}
.yd_c01280{bottom:826.373333pt;}
.yc_c01280{bottom:844.773333pt;}
.yb_c01280{bottom:863.173333pt;}
.ya_c01280{bottom:881.413333pt;}
.y9_c01280{bottom:899.813333pt;}
.y8_c01280{bottom:918.213333pt;}
.y7_c01280{bottom:936.773333pt;}
.y6_c01280{bottom:955.173333pt;}
.y5_c01280{bottom:973.413333pt;}
.y4_c01280{bottom:991.813333pt;}
.y3_c01280{bottom:1010.880000pt;}
.h6_c01280{height:38.441250pt;}
.h2_c01280{height:44.648750pt;}
.h4_c01280{height:57.375000pt;}
.h5_c01280{height:57.781250pt;}
.h3_c01280{height:78.097500pt;}
.h0_c01280{height:1122.560000pt;}
.h1_c01280{height:1122.666667pt;}
.w0_c01280{width:793.760000pt;}
.w1_c01280{width:794.000000pt;}
.x0_c01280{left:0.000000pt;}
.x2_c01280{left:113.472000pt;}
.x1_c01280{left:658.213333pt;}
}





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

.ir_c01281:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01281;src:url('chunks/assets/font_c2c5ebde5958a2dddcb78cfe.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01281;src:url('chunks/assets/font_40c93b60427ff3f43025b4df.woff2')format("woff");}.ff2_c01281{font-family:ff2_c01281;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01281;src:url('chunks/assets/font_b245d01b2a6ee77201fc96bd.woff2')format("woff");}.ff3_c01281{font-family:ff3_c01281;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01281;src:url('chunks/assets/font_0e81840b5a3da2e94e7b4bb5.woff2')format("woff");}.ff4_c01281{font-family:ff4_c01281;line-height:1.113281;font-style:normal;font-weight: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_c01281;src:url('chunks/assets/font_e6f861c3885728c13b70a1de.woff2')format("woff");}.ff5_c01281{font-family:ff5_c01281;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;}
.m0_c01281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01281{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_c01281{vertical-align:0.000000px;}
.ls2_c01281{letter-spacing:0.000000px;}
.ls1_c01281{letter-spacing:0.216000px;}
.ls0_c01281{letter-spacing:0.288000px;}
.sc__c01281{text-shadow:none;}
.sc0_c01281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01281{-webkit-text-stroke:0px transparent;}
.sc0_c01281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01281{word-spacing:-20.016000px;}
.ws1_c01281{word-spacing:0.000000px;}
._0_c01281{margin-left:-1.152000px;}
._1_c01281{width:1.164000px;}
._6_c01281{width:2.220000px;}
._5_c01281{width:3.300000px;}
._2_c01281{width:5.112000px;}
._4_c01281{width:6.336000px;}
._7_c01281{width:17.136000px;}
._8_c01281{width:18.408000px;}
._3_c01281{width:21.612000px;}
.fc0_c01281{color:rgb(0,0,0);}
.fs2_c01281{font-size:48.240000px;}
.fs0_c01281{font-size:66.240000px;}
.fs1_c01281{font-size:72.000000px;}
.fs3_c01281{font-size:84.240000px;}
.y0_c01281{bottom:0.000000px;}
.y2_c01281{bottom:57.636000px;}
.y1_c01281{bottom:77.796000px;}
.y33_c01281{bottom:142.956000px;}
.y32_c01281{bottom:163.650000px;}
.y31_c01281{bottom:184.530000px;}
.y30_c01281{bottom:205.230000px;}
.y2f_c01281{bottom:225.750000px;}
.y2e_c01281{bottom:246.450000px;}
.y2d_c01281{bottom:267.330000px;}
.y2c_c01281{bottom:287.895000px;}
.y2b_c01281{bottom:308.595000px;}
.y2a_c01281{bottom:329.475000px;}
.y29_c01281{bottom:350.175000px;}
.y28_c01281{bottom:370.875000px;}
.y27_c01281{bottom:391.395000px;}
.y26_c01281{bottom:412.635000px;}
.y25_c01281{bottom:436.215000px;}
.y24_c01281{bottom:456.915000px;}
.y23_c01281{bottom:477.615000px;}
.y22_c01281{bottom:498.315000px;}
.y21_c01281{bottom:519.015000px;}
.y20_c01281{bottom:545.655000px;}
.y1f_c01281{bottom:560.415000px;}
.y1e_c01281{bottom:581.145000px;}
.y1d_c01281{bottom:601.845000px;}
.y1c_c01281{bottom:622.545000px;}
.y1b_c01281{bottom:643.425000px;}
.y1a_c01281{bottom:663.945000px;}
.y19_c01281{bottom:684.645000px;}
.y18_c01281{bottom:705.525000px;}
.y17_c01281{bottom:726.045000px;}
.y16_c01281{bottom:746.745000px;}
.y15_c01281{bottom:767.625000px;}
.y14_c01281{bottom:788.145000px;}
.y13_c01281{bottom:814.785000px;}
.y12_c01281{bottom:829.725000px;}
.y11_c01281{bottom:850.470000px;}
.y10_c01281{bottom:870.990000px;}
.yf_c01281{bottom:891.870000px;}
.ye_c01281{bottom:912.390000px;}
.yd_c01281{bottom:939.030000px;}
.yc_c01281{bottom:953.970000px;}
.yb_c01281{bottom:974.670000px;}
.ya_c01281{bottom:995.190000px;}
.y9_c01281{bottom:1016.070000px;}
.y8_c01281{bottom:1036.590000px;}
.y7_c01281{bottom:1057.470000px;}
.y6_c01281{bottom:1077.990000px;}
.y5_c01281{bottom:1104.630000px;}
.y4_c01281{bottom:1119.570000px;}
.y3_c01281{bottom:1140.120000px;}
.h4_c01281{height:43.246406px;}
.h2_c01281{height:50.229844px;}
.h7_c01281{height:64.371094px;}
.h3_c01281{height:64.546875px;}
.h5_c01281{height:65.003906px;}
.h6_c01281{height:87.859687px;}
.h0_c01281{height:1262.880000px;}
.h1_c01281{height:1263.000000px;}
.w0_c01281{width:892.980000px;}
.w1_c01281{width:893.250000px;}
.x0_c01281{left:0.000000px;}
.x1_c01281{left:127.656000px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls2_c01281{letter-spacing:0.000000pt;}
.ls1_c01281{letter-spacing:0.192000pt;}
.ls0_c01281{letter-spacing:0.256000pt;}
.ws0_c01281{word-spacing:-17.792000pt;}
.ws1_c01281{word-spacing:0.000000pt;}
._0_c01281{margin-left:-1.024000pt;}
._1_c01281{width:1.034667pt;}
._6_c01281{width:1.973333pt;}
._5_c01281{width:2.933333pt;}
._2_c01281{width:4.544000pt;}
._4_c01281{width:5.632000pt;}
._7_c01281{width:15.232000pt;}
._8_c01281{width:16.362667pt;}
._3_c01281{width:19.210667pt;}
.fs2_c01281{font-size:42.880000pt;}
.fs0_c01281{font-size:58.880000pt;}
.fs1_c01281{font-size:64.000000pt;}
.fs3_c01281{font-size:74.880000pt;}
.y0_c01281{bottom:0.000000pt;}
.y2_c01281{bottom:51.232000pt;}
.y1_c01281{bottom:69.152000pt;}
.y33_c01281{bottom:127.072000pt;}
.y32_c01281{bottom:145.466667pt;}
.y31_c01281{bottom:164.026667pt;}
.y30_c01281{bottom:182.426667pt;}
.y2f_c01281{bottom:200.666667pt;}
.y2e_c01281{bottom:219.066667pt;}
.y2d_c01281{bottom:237.626667pt;}
.y2c_c01281{bottom:255.906667pt;}
.y2b_c01281{bottom:274.306667pt;}
.y2a_c01281{bottom:292.866667pt;}
.y29_c01281{bottom:311.266667pt;}
.y28_c01281{bottom:329.666667pt;}
.y27_c01281{bottom:347.906667pt;}
.y26_c01281{bottom:366.786667pt;}
.y25_c01281{bottom:387.746667pt;}
.y24_c01281{bottom:406.146667pt;}
.y23_c01281{bottom:424.546667pt;}
.y22_c01281{bottom:442.946667pt;}
.y21_c01281{bottom:461.346667pt;}
.y20_c01281{bottom:485.026667pt;}
.y1f_c01281{bottom:498.146667pt;}
.y1e_c01281{bottom:516.573333pt;}
.y1d_c01281{bottom:534.973333pt;}
.y1c_c01281{bottom:553.373333pt;}
.y1b_c01281{bottom:571.933333pt;}
.y1a_c01281{bottom:590.173333pt;}
.y19_c01281{bottom:608.573333pt;}
.y18_c01281{bottom:627.133333pt;}
.y17_c01281{bottom:645.373333pt;}
.y16_c01281{bottom:663.773333pt;}
.y15_c01281{bottom:682.333333pt;}
.y14_c01281{bottom:700.573333pt;}
.y13_c01281{bottom:724.253333pt;}
.y12_c01281{bottom:737.533333pt;}
.y11_c01281{bottom:755.973333pt;}
.y10_c01281{bottom:774.213333pt;}
.yf_c01281{bottom:792.773333pt;}
.ye_c01281{bottom:811.013333pt;}
.yd_c01281{bottom:834.693333pt;}
.yc_c01281{bottom:847.973333pt;}
.yb_c01281{bottom:866.373333pt;}
.ya_c01281{bottom:884.613333pt;}
.y9_c01281{bottom:903.173333pt;}
.y8_c01281{bottom:921.413333pt;}
.y7_c01281{bottom:939.973333pt;}
.y6_c01281{bottom:958.213333pt;}
.y5_c01281{bottom:981.893333pt;}
.y4_c01281{bottom:995.173333pt;}
.y3_c01281{bottom:1013.440000pt;}
.h4_c01281{height:38.441250pt;}
.h2_c01281{height:44.648750pt;}
.h7_c01281{height:57.218750pt;}
.h3_c01281{height:57.375000pt;}
.h5_c01281{height:57.781250pt;}
.h6_c01281{height:78.097500pt;}
.h0_c01281{height:1122.560000pt;}
.h1_c01281{height:1122.666667pt;}
.w0_c01281{width:793.760000pt;}
.w1_c01281{width:794.000000pt;}
.x0_c01281{left:0.000000pt;}
.x1_c01281{left:113.472000pt;}
}





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

.ir_c01282:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01282;src:url('chunks/assets/font_94ea8845d806fd7339b38932.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01282;src:url('chunks/assets/font_405ea67097108164a47c0007.woff2')format("woff");}.ff2_c01282{font-family:ff2_c01282;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01282;src:url('chunks/assets/font_85b8565997b4d5f91b25fae9.woff2')format("woff");}.ff3_c01282{font-family:ff3_c01282;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01282;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff4_c01282{font-family:ff4_c01282;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01282{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_c01282{vertical-align:0.000000px;}
.ls2_c01282{letter-spacing:0.000000px;}
.ls1_c01282{letter-spacing:0.144000px;}
.ls0_c01282{letter-spacing:0.216000px;}
.sc__c01282{text-shadow:none;}
.sc0_c01282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01282{-webkit-text-stroke:0px transparent;}
.sc0_c01282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01282{word-spacing:-20.016000px;}
.ws1_c01282{word-spacing:0.000000px;}
._7_c01282{margin-left:-5.328000px;}
._6_c01282{margin-left:-3.816000px;}
._1_c01282{margin-left:-1.296000px;}
._3_c01282{width:1.512000px;}
._2_c01282{width:2.520000px;}
._0_c01282{width:4.176000px;}
._b_c01282{width:12.096000px;}
._a_c01282{width:13.392000px;}
._9_c01282{width:17.676000px;}
._5_c01282{width:18.804024px;}
._4_c01282{width:31.392000px;}
._8_c01282{width:34.704000px;}
.fc0_c01282{color:rgb(0,0,0);}
.fs0_c01282{font-size:66.240000px;}
.fs1_c01282{font-size:72.000000px;}
.y0_c01282{bottom:0.000000px;}
.y2_c01282{bottom:57.636000px;}
.y1_c01282{bottom:77.796000px;}
.y34_c01282{bottom:125.676000px;}
.y33_c01282{bottom:146.376000px;}
.y32_c01282{bottom:167.070000px;}
.y31_c01282{bottom:187.770000px;}
.y30_c01282{bottom:208.470000px;}
.y2f_c01282{bottom:229.170000px;}
.y2e_c01282{bottom:249.870000px;}
.y2d_c01282{bottom:270.570000px;}
.y2c_c01282{bottom:291.315000px;}
.y2b_c01282{bottom:312.015000px;}
.y2a_c01282{bottom:332.715000px;}
.y29_c01282{bottom:353.415000px;}
.y28_c01282{bottom:374.115000px;}
.y27_c01282{bottom:394.815000px;}
.y26_c01282{bottom:415.695000px;}
.y25_c01282{bottom:436.215000px;}
.y24_c01282{bottom:456.915000px;}
.y23_c01282{bottom:477.615000px;}
.y22_c01282{bottom:498.315000px;}
.y21_c01282{bottom:519.015000px;}
.y20_c01282{bottom:539.895000px;}
.y1f_c01282{bottom:560.595000px;}
.y1e_c01282{bottom:581.145000px;}
.y1d_c01282{bottom:601.845000px;}
.y1c_c01282{bottom:622.725000px;}
.y1b_c01282{bottom:643.245000px;}
.y1a_c01282{bottom:663.945000px;}
.y19_c01282{bottom:684.825000px;}
.y18_c01282{bottom:705.525000px;}
.y17_c01282{bottom:726.045000px;}
.y16_c01282{bottom:746.925000px;}
.y15_c01282{bottom:767.625000px;}
.y14_c01282{bottom:788.145000px;}
.y13_c01282{bottom:809.025000px;}
.y12_c01282{bottom:829.545000px;}
.y11_c01282{bottom:850.290000px;}
.y10_c01282{bottom:870.990000px;}
.yf_c01282{bottom:891.870000px;}
.ye_c01282{bottom:912.390000px;}
.yd_c01282{bottom:933.270000px;}
.yc_c01282{bottom:953.790000px;}
.yb_c01282{bottom:974.490000px;}
.ya_c01282{bottom:995.190000px;}
.y9_c01282{bottom:1016.070000px;}
.y8_c01282{bottom:1036.770000px;}
.y7_c01282{bottom:1057.290000px;}
.y6_c01282{bottom:1077.990000px;}
.y5_c01282{bottom:1098.870000px;}
.y4_c01282{bottom:1119.570000px;}
.y3_c01282{bottom:1140.120000px;}
.h2_c01282{height:50.229844px;}
.h3_c01282{height:64.546875px;}
.h4_c01282{height:65.003906px;}
.h0_c01282{height:1262.880000px;}
.h1_c01282{height:1263.000000px;}
.w0_c01282{width:892.980000px;}
.w1_c01282{width:893.250000px;}
.x0_c01282{left:0.000000px;}
.x2_c01282{left:127.656000px;}
.x1_c01282{left:740.490000px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls2_c01282{letter-spacing:0.000000pt;}
.ls1_c01282{letter-spacing:0.128000pt;}
.ls0_c01282{letter-spacing:0.192000pt;}
.ws0_c01282{word-spacing:-17.792000pt;}
.ws1_c01282{word-spacing:0.000000pt;}
._7_c01282{margin-left:-4.736000pt;}
._6_c01282{margin-left:-3.392000pt;}
._1_c01282{margin-left:-1.152000pt;}
._3_c01282{width:1.344000pt;}
._2_c01282{width:2.240000pt;}
._0_c01282{width:3.712000pt;}
._b_c01282{width:10.752000pt;}
._a_c01282{width:11.904000pt;}
._9_c01282{width:15.712000pt;}
._5_c01282{width:16.714688pt;}
._4_c01282{width:27.904000pt;}
._8_c01282{width:30.848000pt;}
.fs0_c01282{font-size:58.880000pt;}
.fs1_c01282{font-size:64.000000pt;}
.y0_c01282{bottom:0.000000pt;}
.y2_c01282{bottom:51.232000pt;}
.y1_c01282{bottom:69.152000pt;}
.y34_c01282{bottom:111.712000pt;}
.y33_c01282{bottom:130.112000pt;}
.y32_c01282{bottom:148.506667pt;}
.y31_c01282{bottom:166.906667pt;}
.y30_c01282{bottom:185.306667pt;}
.y2f_c01282{bottom:203.706667pt;}
.y2e_c01282{bottom:222.106667pt;}
.y2d_c01282{bottom:240.506667pt;}
.y2c_c01282{bottom:258.946667pt;}
.y2b_c01282{bottom:277.346667pt;}
.y2a_c01282{bottom:295.746667pt;}
.y29_c01282{bottom:314.146667pt;}
.y28_c01282{bottom:332.546667pt;}
.y27_c01282{bottom:350.946667pt;}
.y26_c01282{bottom:369.506667pt;}
.y25_c01282{bottom:387.746667pt;}
.y24_c01282{bottom:406.146667pt;}
.y23_c01282{bottom:424.546667pt;}
.y22_c01282{bottom:442.946667pt;}
.y21_c01282{bottom:461.346667pt;}
.y20_c01282{bottom:479.906667pt;}
.y1f_c01282{bottom:498.306667pt;}
.y1e_c01282{bottom:516.573333pt;}
.y1d_c01282{bottom:534.973333pt;}
.y1c_c01282{bottom:553.533333pt;}
.y1b_c01282{bottom:571.773333pt;}
.y1a_c01282{bottom:590.173333pt;}
.y19_c01282{bottom:608.733333pt;}
.y18_c01282{bottom:627.133333pt;}
.y17_c01282{bottom:645.373333pt;}
.y16_c01282{bottom:663.933333pt;}
.y15_c01282{bottom:682.333333pt;}
.y14_c01282{bottom:700.573333pt;}
.y13_c01282{bottom:719.133333pt;}
.y12_c01282{bottom:737.373333pt;}
.y11_c01282{bottom:755.813333pt;}
.y10_c01282{bottom:774.213333pt;}
.yf_c01282{bottom:792.773333pt;}
.ye_c01282{bottom:811.013333pt;}
.yd_c01282{bottom:829.573333pt;}
.yc_c01282{bottom:847.813333pt;}
.yb_c01282{bottom:866.213333pt;}
.ya_c01282{bottom:884.613333pt;}
.y9_c01282{bottom:903.173333pt;}
.y8_c01282{bottom:921.573333pt;}
.y7_c01282{bottom:939.813333pt;}
.y6_c01282{bottom:958.213333pt;}
.y5_c01282{bottom:976.773333pt;}
.y4_c01282{bottom:995.173333pt;}
.y3_c01282{bottom:1013.440000pt;}
.h2_c01282{height:44.648750pt;}
.h3_c01282{height:57.375000pt;}
.h4_c01282{height:57.781250pt;}
.h0_c01282{height:1122.560000pt;}
.h1_c01282{height:1122.666667pt;}
.w0_c01282{width:793.760000pt;}
.w1_c01282{width:794.000000pt;}
.x0_c01282{left:0.000000pt;}
.x2_c01282{left:113.472000pt;}
.x1_c01282{left:658.213333pt;}
}





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

.ir_c01283:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01283;src:url('chunks/assets/font_0e5b023a3dbaf251af5f4869.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01283;src:url('chunks/assets/font_ff3d46685f084539197d37be.woff2')format("woff");}.ff2_c01283{font-family:ff2_c01283;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01283;src:url('chunks/assets/font_2482db2f70ffcde3d8c97fae.woff2')format("woff");}.ff3_c01283{font-family:ff3_c01283;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01283;src:url('chunks/assets/font_7b2ce63c53d20d530984dd42.woff2')format("woff");}.ff4_c01283{font-family:ff4_c01283;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01283{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_c01283{vertical-align:0.000000px;}
.ls4_c01283{letter-spacing:-0.864000px;}
.ls3_c01283{letter-spacing:-0.576000px;}
.ls5_c01283{letter-spacing:-0.432000px;}
.ls2_c01283{letter-spacing:0.000000px;}
.ls1_c01283{letter-spacing:0.144000px;}
.ls0_c01283{letter-spacing:0.288000px;}
.sc__c01283{text-shadow:none;}
.sc0_c01283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01283{-webkit-text-stroke:0px transparent;}
.sc0_c01283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01283{word-spacing:-20.304000px;}
.ws0_c01283{word-spacing:-20.160000px;}
.ws1_c01283{word-spacing:-20.016000px;}
.ws3_c01283{word-spacing:-19.584000px;}
.ws4_c01283{word-spacing:0.000000px;}
._4_c01283{margin-left:-5.013145px;}
._3_c01283{margin-left:-3.440952px;}
._2_c01283{margin-left:-2.376000px;}
._0_c01283{margin-left:-1.011048px;}
._1_c01283{width:1.284000px;}
._5_c01283{width:2.733000px;}
._e_c01283{width:4.320000px;}
._d_c01283{width:5.544000px;}
._6_c01283{width:12.672000px;}
._a_c01283{width:14.307048px;}
._9_c01283{width:15.456000px;}
._11_c01283{width:21.456000px;}
._7_c01283{width:23.040000px;}
._8_c01283{width:24.396000px;}
._f_c01283{width:27.288000px;}
._10_c01283{width:29.463048px;}
._c_c01283{width:32.763048px;}
._b_c01283{width:33.768000px;}
.fc1_c01283{color:rgb(255,0,0);}
.fc0_c01283{color:rgb(0,0,0);}
.fs0_c01283{font-size:66.240000px;}
.fs2_c01283{font-size:72.000000px;}
.fs1_c01283{font-size:84.240000px;}
.y0_c01283{bottom:0.000000px;}
.y2_c01283{bottom:57.636000px;}
.y1_c01283{bottom:77.796000px;}
.y33_c01283{bottom:142.956000px;}
.y32_c01283{bottom:163.650000px;}
.y31_c01283{bottom:184.530000px;}
.y30_c01283{bottom:205.230000px;}
.y2f_c01283{bottom:225.930000px;}
.y2e_c01283{bottom:246.450000px;}
.y2d_c01283{bottom:267.150000px;}
.y2c_c01283{bottom:288.075000px;}
.y2b_c01283{bottom:308.775000px;}
.y2a_c01283{bottom:329.295000px;}
.y29_c01283{bottom:350.175000px;}
.y28_c01283{bottom:370.875000px;}
.y27_c01283{bottom:391.395000px;}
.y26_c01283{bottom:412.095000px;}
.y25_c01283{bottom:432.795000px;}
.y24_c01283{bottom:453.675000px;}
.y23_c01283{bottom:474.195000px;}
.y22_c01283{bottom:494.895000px;}
.y21_c01283{bottom:515.595000px;}
.y20_c01283{bottom:536.475000px;}
.y1f_c01283{bottom:557.175000px;}
.y1e_c01283{bottom:577.905000px;}
.y1d_c01283{bottom:598.425000px;}
.y1c_c01283{bottom:619.125000px;}
.y1b_c01283{bottom:640.005000px;}
.y1a_c01283{bottom:660.705000px;}
.y19_c01283{bottom:681.225000px;}
.y18_c01283{bottom:701.925000px;}
.y17_c01283{bottom:722.625000px;}
.y16_c01283{bottom:743.325000px;}
.y15_c01283{bottom:764.205000px;}
.y14_c01283{bottom:784.905000px;}
.y13_c01283{bottom:805.425000px;}
.y12_c01283{bottom:826.125000px;}
.y11_c01283{bottom:846.825000px;}
.y10_c01283{bottom:867.570000px;}
.yf_c01283{bottom:888.450000px;}
.ye_c01283{bottom:909.150000px;}
.yd_c01283{bottom:929.670000px;}
.yc_c01283{bottom:950.370000px;}
.yb_c01283{bottom:970.890000px;}
.ya_c01283{bottom:991.770000px;}
.y9_c01283{bottom:1012.290000px;}
.y8_c01283{bottom:1032.990000px;}
.y7_c01283{bottom:1053.690000px;}
.y6_c01283{bottom:1074.570000px;}
.y5_c01283{bottom:1095.090000px;}
.y4_c01283{bottom:1115.790000px;}
.y3_c01283{bottom:1137.240000px;}
.h2_c01283{height:50.229844px;}
.h5_c01283{height:64.371094px;}
.h4_c01283{height:64.546875px;}
.h3_c01283{height:87.859687px;}
.h0_c01283{height:1262.880000px;}
.h1_c01283{height:1263.000000px;}
.w0_c01283{width:892.980000px;}
.w1_c01283{width:893.250000px;}
.x0_c01283{left:0.000000px;}
.x1_c01283{left:127.656000px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.ls4_c01283{letter-spacing:-0.768000pt;}
.ls3_c01283{letter-spacing:-0.512000pt;}
.ls5_c01283{letter-spacing:-0.384000pt;}
.ls2_c01283{letter-spacing:0.000000pt;}
.ls1_c01283{letter-spacing:0.128000pt;}
.ls0_c01283{letter-spacing:0.256000pt;}
.ws2_c01283{word-spacing:-18.048000pt;}
.ws0_c01283{word-spacing:-17.920000pt;}
.ws1_c01283{word-spacing:-17.792000pt;}
.ws3_c01283{word-spacing:-17.408000pt;}
.ws4_c01283{word-spacing:0.000000pt;}
._4_c01283{margin-left:-4.456129pt;}
._3_c01283{margin-left:-3.058624pt;}
._2_c01283{margin-left:-2.112000pt;}
._0_c01283{margin-left:-0.898710pt;}
._1_c01283{width:1.141333pt;}
._5_c01283{width:2.429333pt;}
._e_c01283{width:3.840000pt;}
._d_c01283{width:4.928000pt;}
._6_c01283{width:11.264000pt;}
._a_c01283{width:12.717376pt;}
._9_c01283{width:13.738667pt;}
._11_c01283{width:19.072000pt;}
._7_c01283{width:20.480000pt;}
._8_c01283{width:21.685333pt;}
._f_c01283{width:24.256000pt;}
._10_c01283{width:26.189376pt;}
._c_c01283{width:29.122710pt;}
._b_c01283{width:30.016000pt;}
.fs0_c01283{font-size:58.880000pt;}
.fs2_c01283{font-size:64.000000pt;}
.fs1_c01283{font-size:74.880000pt;}
.y0_c01283{bottom:0.000000pt;}
.y2_c01283{bottom:51.232000pt;}
.y1_c01283{bottom:69.152000pt;}
.y33_c01283{bottom:127.072000pt;}
.y32_c01283{bottom:145.466667pt;}
.y31_c01283{bottom:164.026667pt;}
.y30_c01283{bottom:182.426667pt;}
.y2f_c01283{bottom:200.826667pt;}
.y2e_c01283{bottom:219.066667pt;}
.y2d_c01283{bottom:237.466667pt;}
.y2c_c01283{bottom:256.066667pt;}
.y2b_c01283{bottom:274.466667pt;}
.y2a_c01283{bottom:292.706667pt;}
.y29_c01283{bottom:311.266667pt;}
.y28_c01283{bottom:329.666667pt;}
.y27_c01283{bottom:347.906667pt;}
.y26_c01283{bottom:366.306667pt;}
.y25_c01283{bottom:384.706667pt;}
.y24_c01283{bottom:403.266667pt;}
.y23_c01283{bottom:421.506667pt;}
.y22_c01283{bottom:439.906667pt;}
.y21_c01283{bottom:458.306667pt;}
.y20_c01283{bottom:476.866667pt;}
.y1f_c01283{bottom:495.266667pt;}
.y1e_c01283{bottom:513.693333pt;}
.y1d_c01283{bottom:531.933333pt;}
.y1c_c01283{bottom:550.333333pt;}
.y1b_c01283{bottom:568.893333pt;}
.y1a_c01283{bottom:587.293333pt;}
.y19_c01283{bottom:605.533333pt;}
.y18_c01283{bottom:623.933333pt;}
.y17_c01283{bottom:642.333333pt;}
.y16_c01283{bottom:660.733333pt;}
.y15_c01283{bottom:679.293333pt;}
.y14_c01283{bottom:697.693333pt;}
.y13_c01283{bottom:715.933333pt;}
.y12_c01283{bottom:734.333333pt;}
.y11_c01283{bottom:752.733333pt;}
.y10_c01283{bottom:771.173333pt;}
.yf_c01283{bottom:789.733333pt;}
.ye_c01283{bottom:808.133333pt;}
.yd_c01283{bottom:826.373333pt;}
.yc_c01283{bottom:844.773333pt;}
.yb_c01283{bottom:863.013333pt;}
.ya_c01283{bottom:881.573333pt;}
.y9_c01283{bottom:899.813333pt;}
.y8_c01283{bottom:918.213333pt;}
.y7_c01283{bottom:936.613333pt;}
.y6_c01283{bottom:955.173333pt;}
.y5_c01283{bottom:973.413333pt;}
.y4_c01283{bottom:991.813333pt;}
.y3_c01283{bottom:1010.880000pt;}
.h2_c01283{height:44.648750pt;}
.h5_c01283{height:57.218750pt;}
.h4_c01283{height:57.375000pt;}
.h3_c01283{height:78.097500pt;}
.h0_c01283{height:1122.560000pt;}
.h1_c01283{height:1122.666667pt;}
.w0_c01283{width:793.760000pt;}
.w1_c01283{width:794.000000pt;}
.x0_c01283{left:0.000000pt;}
.x1_c01283{left:113.472000pt;}
}





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

.ir_c01284:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01284;src:url('chunks/assets/font_960b1188675f798cc3174999.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01284;src:url('chunks/assets/font_fc0818461eb4ff6bd84dea08.woff2')format("woff");}.ff2_c01284{font-family:ff2_c01284;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01284;src:url('chunks/assets/font_62755900156eb264f4ab3380.woff2')format("woff");}.ff3_c01284{font-family:ff3_c01284;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01284;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff4_c01284{font-family:ff4_c01284;line-height:1.113281;font-style:normal;font-weight: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_c01284;src:url('chunks/assets/font_8a59a644e99abdd68f7bfd47.woff2')format("woff");}.ff5_c01284{font-family:ff5_c01284;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;}
.m0_c01284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01284{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_c01284{vertical-align:0.000000px;}
.ls1_c01284{letter-spacing:-0.576000px;}
.ls0_c01284{letter-spacing:0.000000px;}
.sc__c01284{text-shadow:none;}
.sc0_c01284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01284{-webkit-text-stroke:0px transparent;}
.sc0_c01284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01284{word-spacing:-20.016000px;}
.ws1_c01284{word-spacing:0.000000px;}
._b_c01284{margin-left:-3.888000px;}
._7_c01284{margin-left:-2.880000px;}
._4_c01284{margin-left:-1.463976px;}
._8_c01284{width:1.008000px;}
._2_c01284{width:2.160000px;}
._3_c01284{width:3.540000px;}
._6_c01284{width:4.871952px;}
._5_c01284{width:5.952000px;}
._e_c01284{width:7.512264px;}
._a_c01284{width:9.119952px;}
._9_c01284{width:10.368000px;}
._c_c01284{width:11.592000px;}
._d_c01284{width:14.100000px;}
._f_c01284{width:15.204000px;}
._1_c01284{width:30.096000px;}
._0_c01284{width:31.104000px;}
.fc0_c01284{color:rgb(0,0,0);}
.fs2_c01284{font-size:48.240000px;}
.fs0_c01284{font-size:66.240000px;}
.fs1_c01284{font-size:72.000000px;}
.fs3_c01284{font-size:84.240000px;}
.y0_c01284{bottom:0.000000px;}
.y2_c01284{bottom:57.636000px;}
.y1_c01284{bottom:77.796000px;}
.y34_c01284{bottom:122.256000px;}
.y33_c01284{bottom:142.956000px;}
.y32_c01284{bottom:163.830000px;}
.y31_c01284{bottom:184.350000px;}
.y30_c01284{bottom:205.050000px;}
.y2f_c01284{bottom:225.750000px;}
.y2e_c01284{bottom:246.630000px;}
.y2d_c01284{bottom:267.150000px;}
.y2c_c01284{bottom:287.895000px;}
.y2b_c01284{bottom:308.595000px;}
.y2a_c01284{bottom:329.475000px;}
.y29_c01284{bottom:350.175000px;}
.y28_c01284{bottom:370.695000px;}
.y27_c01284{bottom:391.395000px;}
.y26_c01284{bottom:412.095000px;}
.y25_c01284{bottom:432.975000px;}
.y24_c01284{bottom:453.495000px;}
.y23_c01284{bottom:474.195000px;}
.y22_c01284{bottom:495.435000px;}
.y21_c01284{bottom:519.015000px;}
.y20_c01284{bottom:539.715000px;}
.y1f_c01284{bottom:566.385000px;}
.y1e_c01284{bottom:581.145000px;}
.y1d_c01284{bottom:601.845000px;}
.y1c_c01284{bottom:622.545000px;}
.y1b_c01284{bottom:643.245000px;}
.y1a_c01284{bottom:663.945000px;}
.y19_c01284{bottom:684.645000px;}
.y18_c01284{bottom:705.525000px;}
.y17_c01284{bottom:726.225000px;}
.y16_c01284{bottom:746.745000px;}
.y15_c01284{bottom:767.445000px;}
.y14_c01284{bottom:788.325000px;}
.y13_c01284{bottom:808.845000px;}
.y12_c01284{bottom:829.725000px;}
.y11_c01284{bottom:850.290000px;}
.y10_c01284{bottom:870.990000px;}
.yf_c01284{bottom:891.870000px;}
.ye_c01284{bottom:912.390000px;}
.yd_c01284{bottom:933.090000px;}
.yc_c01284{bottom:953.970000px;}
.yb_c01284{bottom:974.670000px;}
.ya_c01284{bottom:995.190000px;}
.y9_c01284{bottom:1015.890000px;}
.y8_c01284{bottom:1036.590000px;}
.y7_c01284{bottom:1057.290000px;}
.y6_c01284{bottom:1077.990000px;}
.y5_c01284{bottom:1098.870000px;}
.y4_c01284{bottom:1119.570000px;}
.y3_c01284{bottom:1140.120000px;}
.h5_c01284{height:43.246406px;}
.h2_c01284{height:50.229844px;}
.h3_c01284{height:64.546875px;}
.h4_c01284{height:65.003906px;}
.h6_c01284{height:87.859687px;}
.h0_c01284{height:1262.880000px;}
.h1_c01284{height:1263.000000px;}
.w0_c01284{width:892.980000px;}
.w1_c01284{width:893.250000px;}
.x0_c01284{left:0.000000px;}
.x2_c01284{left:127.656000px;}
.x1_c01284{left:740.490000px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.ls1_c01284{letter-spacing:-0.512000pt;}
.ls0_c01284{letter-spacing:0.000000pt;}
.ws0_c01284{word-spacing:-17.792000pt;}
.ws1_c01284{word-spacing:0.000000pt;}
._b_c01284{margin-left:-3.456000pt;}
._7_c01284{margin-left:-2.560000pt;}
._4_c01284{margin-left:-1.301312pt;}
._8_c01284{width:0.896000pt;}
._2_c01284{width:1.920000pt;}
._3_c01284{width:3.146667pt;}
._6_c01284{width:4.330624pt;}
._5_c01284{width:5.290667pt;}
._e_c01284{width:6.677568pt;}
._a_c01284{width:8.106624pt;}
._9_c01284{width:9.216000pt;}
._c_c01284{width:10.304000pt;}
._d_c01284{width:12.533333pt;}
._f_c01284{width:13.514667pt;}
._1_c01284{width:26.752000pt;}
._0_c01284{width:27.648000pt;}
.fs2_c01284{font-size:42.880000pt;}
.fs0_c01284{font-size:58.880000pt;}
.fs1_c01284{font-size:64.000000pt;}
.fs3_c01284{font-size:74.880000pt;}
.y0_c01284{bottom:0.000000pt;}
.y2_c01284{bottom:51.232000pt;}
.y1_c01284{bottom:69.152000pt;}
.y34_c01284{bottom:108.672000pt;}
.y33_c01284{bottom:127.072000pt;}
.y32_c01284{bottom:145.626667pt;}
.y31_c01284{bottom:163.866667pt;}
.y30_c01284{bottom:182.266667pt;}
.y2f_c01284{bottom:200.666667pt;}
.y2e_c01284{bottom:219.226667pt;}
.y2d_c01284{bottom:237.466667pt;}
.y2c_c01284{bottom:255.906667pt;}
.y2b_c01284{bottom:274.306667pt;}
.y2a_c01284{bottom:292.866667pt;}
.y29_c01284{bottom:311.266667pt;}
.y28_c01284{bottom:329.506667pt;}
.y27_c01284{bottom:347.906667pt;}
.y26_c01284{bottom:366.306667pt;}
.y25_c01284{bottom:384.866667pt;}
.y24_c01284{bottom:403.106667pt;}
.y23_c01284{bottom:421.506667pt;}
.y22_c01284{bottom:440.386667pt;}
.y21_c01284{bottom:461.346667pt;}
.y20_c01284{bottom:479.746667pt;}
.y1f_c01284{bottom:503.453333pt;}
.y1e_c01284{bottom:516.573333pt;}
.y1d_c01284{bottom:534.973333pt;}
.y1c_c01284{bottom:553.373333pt;}
.y1b_c01284{bottom:571.773333pt;}
.y1a_c01284{bottom:590.173333pt;}
.y19_c01284{bottom:608.573333pt;}
.y18_c01284{bottom:627.133333pt;}
.y17_c01284{bottom:645.533333pt;}
.y16_c01284{bottom:663.773333pt;}
.y15_c01284{bottom:682.173333pt;}
.y14_c01284{bottom:700.733333pt;}
.y13_c01284{bottom:718.973333pt;}
.y12_c01284{bottom:737.533333pt;}
.y11_c01284{bottom:755.813333pt;}
.y10_c01284{bottom:774.213333pt;}
.yf_c01284{bottom:792.773333pt;}
.ye_c01284{bottom:811.013333pt;}
.yd_c01284{bottom:829.413333pt;}
.yc_c01284{bottom:847.973333pt;}
.yb_c01284{bottom:866.373333pt;}
.ya_c01284{bottom:884.613333pt;}
.y9_c01284{bottom:903.013333pt;}
.y8_c01284{bottom:921.413333pt;}
.y7_c01284{bottom:939.813333pt;}
.y6_c01284{bottom:958.213333pt;}
.y5_c01284{bottom:976.773333pt;}
.y4_c01284{bottom:995.173333pt;}
.y3_c01284{bottom:1013.440000pt;}
.h5_c01284{height:38.441250pt;}
.h2_c01284{height:44.648750pt;}
.h3_c01284{height:57.375000pt;}
.h4_c01284{height:57.781250pt;}
.h6_c01284{height:78.097500pt;}
.h0_c01284{height:1122.560000pt;}
.h1_c01284{height:1122.666667pt;}
.w0_c01284{width:793.760000pt;}
.w1_c01284{width:794.000000pt;}
.x0_c01284{left:0.000000pt;}
.x2_c01284{left:113.472000pt;}
.x1_c01284{left:658.213333pt;}
}





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

.ir_c01285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01285;src:url('chunks/assets/font_e57e95ff0ac80b822786e108.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01285;src:url('chunks/assets/font_f76afde553e449988f3b2b97.woff2')format("woff");}.ff2_c01285{font-family:ff2_c01285;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01285;src:url('chunks/assets/font_da525084385597c5a827dff8.woff2')format("woff");}.ff3_c01285{font-family:ff3_c01285;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01285{vertical-align:0.000000px;}
.ls2_c01285{letter-spacing:-0.576000px;}
.ls1_c01285{letter-spacing:0.000000px;}
.ls0_c01285{letter-spacing:0.144000px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01285{word-spacing:-20.016000px;}
.ws1_c01285{word-spacing:0.000000px;}
._c_c01285{margin-left:-5.328000px;}
._b_c01285{margin-left:-3.888000px;}
._d_c01285{margin-left:-2.760000px;}
._1_c01285{margin-left:-1.584000px;}
._2_c01285{width:1.440000px;}
._0_c01285{width:2.736000px;}
._8_c01285{width:4.752000px;}
._a_c01285{width:6.528000px;}
._3_c01285{width:7.632000px;}
._4_c01285{width:8.772000px;}
._6_c01285{width:10.944000px;}
._5_c01285{width:12.312000px;}
._7_c01285{width:13.752000px;}
._9_c01285{width:48.744000px;}
.fc0_c01285{color:rgb(0,0,0);}
.fs0_c01285{font-size:66.240000px;}
.fs1_c01285{font-size:72.000000px;}
.y0_c01285{bottom:0.000000px;}
.y2_c01285{bottom:57.636000px;}
.y1_c01285{bottom:77.796000px;}
.y34_c01285{bottom:125.676000px;}
.y33_c01285{bottom:146.376000px;}
.y32_c01285{bottom:167.070000px;}
.y31_c01285{bottom:187.770000px;}
.y30_c01285{bottom:208.470000px;}
.y2f_c01285{bottom:229.170000px;}
.y2e_c01285{bottom:250.050000px;}
.y2d_c01285{bottom:270.570000px;}
.y2c_c01285{bottom:291.495000px;}
.y2b_c01285{bottom:312.195000px;}
.y2a_c01285{bottom:332.715000px;}
.y29_c01285{bottom:353.415000px;}
.y28_c01285{bottom:374.115000px;}
.y27_c01285{bottom:394.995000px;}
.y26_c01285{bottom:415.515000px;}
.y25_c01285{bottom:436.215000px;}
.y24_c01285{bottom:456.915000px;}
.y23_c01285{bottom:477.615000px;}
.y22_c01285{bottom:498.495000px;}
.y21_c01285{bottom:519.195000px;}
.y20_c01285{bottom:539.715000px;}
.y1f_c01285{bottom:560.595000px;}
.y1e_c01285{bottom:581.145000px;}
.y1d_c01285{bottom:601.845000px;}
.y1c_c01285{bottom:622.545000px;}
.y1b_c01285{bottom:643.425000px;}
.y1a_c01285{bottom:663.945000px;}
.y19_c01285{bottom:684.645000px;}
.y18_c01285{bottom:705.345000px;}
.y17_c01285{bottom:726.225000px;}
.y16_c01285{bottom:746.745000px;}
.y15_c01285{bottom:767.445000px;}
.y14_c01285{bottom:788.325000px;}
.y13_c01285{bottom:808.845000px;}
.y12_c01285{bottom:829.545000px;}
.y11_c01285{bottom:850.290000px;}
.y10_c01285{bottom:871.170000px;}
.yf_c01285{bottom:891.870000px;}
.ye_c01285{bottom:912.390000px;}
.yd_c01285{bottom:933.090000px;}
.yc_c01285{bottom:953.970000px;}
.yb_c01285{bottom:974.670000px;}
.ya_c01285{bottom:995.190000px;}
.y9_c01285{bottom:1015.890000px;}
.y8_c01285{bottom:1036.590000px;}
.y7_c01285{bottom:1057.470000px;}
.y6_c01285{bottom:1077.990000px;}
.y5_c01285{bottom:1098.690000px;}
.y4_c01285{bottom:1119.570000px;}
.y3_c01285{bottom:1140.300000px;}
.h2_c01285{height:50.229844px;}
.h3_c01285{height:64.546875px;}
.h0_c01285{height:1262.880000px;}
.h1_c01285{height:1263.000000px;}
.w0_c01285{width:892.980000px;}
.w1_c01285{width:893.250000px;}
.x0_c01285{left:0.000000px;}
.x1_c01285{left:127.656000px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls2_c01285{letter-spacing:-0.512000pt;}
.ls1_c01285{letter-spacing:0.000000pt;}
.ls0_c01285{letter-spacing:0.128000pt;}
.ws0_c01285{word-spacing:-17.792000pt;}
.ws1_c01285{word-spacing:0.000000pt;}
._c_c01285{margin-left:-4.736000pt;}
._b_c01285{margin-left:-3.456000pt;}
._d_c01285{margin-left:-2.453333pt;}
._1_c01285{margin-left:-1.408000pt;}
._2_c01285{width:1.280000pt;}
._0_c01285{width:2.432000pt;}
._8_c01285{width:4.224000pt;}
._a_c01285{width:5.802667pt;}
._3_c01285{width:6.784000pt;}
._4_c01285{width:7.797333pt;}
._6_c01285{width:9.728000pt;}
._5_c01285{width:10.944000pt;}
._7_c01285{width:12.224000pt;}
._9_c01285{width:43.328000pt;}
.fs0_c01285{font-size:58.880000pt;}
.fs1_c01285{font-size:64.000000pt;}
.y0_c01285{bottom:0.000000pt;}
.y2_c01285{bottom:51.232000pt;}
.y1_c01285{bottom:69.152000pt;}
.y34_c01285{bottom:111.712000pt;}
.y33_c01285{bottom:130.112000pt;}
.y32_c01285{bottom:148.506667pt;}
.y31_c01285{bottom:166.906667pt;}
.y30_c01285{bottom:185.306667pt;}
.y2f_c01285{bottom:203.706667pt;}
.y2e_c01285{bottom:222.266667pt;}
.y2d_c01285{bottom:240.506667pt;}
.y2c_c01285{bottom:259.106667pt;}
.y2b_c01285{bottom:277.506667pt;}
.y2a_c01285{bottom:295.746667pt;}
.y29_c01285{bottom:314.146667pt;}
.y28_c01285{bottom:332.546667pt;}
.y27_c01285{bottom:351.106667pt;}
.y26_c01285{bottom:369.346667pt;}
.y25_c01285{bottom:387.746667pt;}
.y24_c01285{bottom:406.146667pt;}
.y23_c01285{bottom:424.546667pt;}
.y22_c01285{bottom:443.106667pt;}
.y21_c01285{bottom:461.506667pt;}
.y20_c01285{bottom:479.746667pt;}
.y1f_c01285{bottom:498.306667pt;}
.y1e_c01285{bottom:516.573333pt;}
.y1d_c01285{bottom:534.973333pt;}
.y1c_c01285{bottom:553.373333pt;}
.y1b_c01285{bottom:571.933333pt;}
.y1a_c01285{bottom:590.173333pt;}
.y19_c01285{bottom:608.573333pt;}
.y18_c01285{bottom:626.973333pt;}
.y17_c01285{bottom:645.533333pt;}
.y16_c01285{bottom:663.773333pt;}
.y15_c01285{bottom:682.173333pt;}
.y14_c01285{bottom:700.733333pt;}
.y13_c01285{bottom:718.973333pt;}
.y12_c01285{bottom:737.373333pt;}
.y11_c01285{bottom:755.813333pt;}
.y10_c01285{bottom:774.373333pt;}
.yf_c01285{bottom:792.773333pt;}
.ye_c01285{bottom:811.013333pt;}
.yd_c01285{bottom:829.413333pt;}
.yc_c01285{bottom:847.973333pt;}
.yb_c01285{bottom:866.373333pt;}
.ya_c01285{bottom:884.613333pt;}
.y9_c01285{bottom:903.013333pt;}
.y8_c01285{bottom:921.413333pt;}
.y7_c01285{bottom:939.973333pt;}
.y6_c01285{bottom:958.213333pt;}
.y5_c01285{bottom:976.613333pt;}
.y4_c01285{bottom:995.173333pt;}
.y3_c01285{bottom:1013.600000pt;}
.h2_c01285{height:44.648750pt;}
.h3_c01285{height:57.375000pt;}
.h0_c01285{height:1122.560000pt;}
.h1_c01285{height:1122.666667pt;}
.w0_c01285{width:793.760000pt;}
.w1_c01285{width:794.000000pt;}
.x0_c01285{left:0.000000pt;}
.x1_c01285{left:113.472000pt;}
}





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

.ir_c01286:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01286;src:url('chunks/assets/font_1f9193ce3825705007dbcf35.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01286;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff2_c01286{font-family:ff2_c01286;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01286;src:url('chunks/assets/font_8387b39b928745e05910c6ec.woff2')format("woff");}.ff3_c01286{font-family:ff3_c01286;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01286;src:url('chunks/assets/font_171468788fed6ab2c443ccdb.woff2')format("woff");}.ff4_c01286{font-family:ff4_c01286;line-height:1.104492;font-style:normal;font-weight: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_c01286;src:url('chunks/assets/font_6bbd4c89eb28b69e492efd06.woff2')format("woff");}.ff5_c01286{font-family:ff5_c01286;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;}
.m0_c01286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01286{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_c01286{vertical-align:0.000000px;}
.ls2_c01286{letter-spacing:-0.576000px;}
.ls1_c01286{letter-spacing:0.000000px;}
.ls0_c01286{letter-spacing:0.144000px;}
.ls3_c01286{letter-spacing:0.288000px;}
.sc__c01286{text-shadow:none;}
.sc0_c01286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01286{-webkit-text-stroke:0px transparent;}
.sc0_c01286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01286{word-spacing:-20.304000px;}
.ws0_c01286{word-spacing:-20.016000px;}
.ws2_c01286{word-spacing:0.000000px;}
._1_c01286{margin-left:-1.152000px;}
._3_c01286{width:1.020000px;}
._a_c01286{width:2.172000px;}
._b_c01286{width:3.528000px;}
._4_c01286{width:9.000000px;}
._2_c01286{width:10.440000px;}
._0_c01286{width:11.520000px;}
._c_c01286{width:13.104000px;}
._6_c01286{width:15.624000px;}
._5_c01286{width:16.776000px;}
._7_c01286{width:18.912000px;}
._8_c01286{width:41.688000px;}
._9_c01286{width:43.536000px;}
.fc0_c01286{color:rgb(0,0,0);}
.fs0_c01286{font-size:66.240000px;}
.fs1_c01286{font-size:72.000000px;}
.fs2_c01286{font-size:84.240000px;}
.y0_c01286{bottom:0.000000px;}
.y2_c01286{bottom:57.636000px;}
.y1_c01286{bottom:77.796000px;}
.y33_c01286{bottom:143.136000px;}
.y32_c01286{bottom:163.830000px;}
.y31_c01286{bottom:184.350000px;}
.y30_c01286{bottom:205.230000px;}
.y2f_c01286{bottom:225.750000px;}
.y2e_c01286{bottom:246.450000px;}
.y2d_c01286{bottom:267.330000px;}
.y2c_c01286{bottom:288.075000px;}
.y2b_c01286{bottom:308.595000px;}
.y2a_c01286{bottom:329.295000px;}
.y29_c01286{bottom:349.995000px;}
.y28_c01286{bottom:370.875000px;}
.y27_c01286{bottom:391.575000px;}
.y26_c01286{bottom:412.095000px;}
.y25_c01286{bottom:432.795000px;}
.y24_c01286{bottom:453.675000px;}
.y23_c01286{bottom:474.375000px;}
.y22_c01286{bottom:494.895000px;}
.y21_c01286{bottom:516.135000px;}
.y20_c01286{bottom:539.895000px;}
.y1f_c01286{bottom:560.595000px;}
.y1e_c01286{bottom:581.325000px;}
.y1d_c01286{bottom:601.845000px;}
.y1c_c01286{bottom:622.545000px;}
.y1b_c01286{bottom:643.245000px;}
.y1a_c01286{bottom:663.945000px;}
.y19_c01286{bottom:684.645000px;}
.y18_c01286{bottom:705.345000px;}
.y17_c01286{bottom:726.045000px;}
.y16_c01286{bottom:746.745000px;}
.y15_c01286{bottom:767.445000px;}
.y14_c01286{bottom:788.325000px;}
.y13_c01286{bottom:808.845000px;}
.y12_c01286{bottom:829.545000px;}
.y11_c01286{bottom:850.470000px;}
.y10_c01286{bottom:870.990000px;}
.yf_c01286{bottom:891.870000px;}
.ye_c01286{bottom:912.390000px;}
.yd_c01286{bottom:933.090000px;}
.yc_c01286{bottom:953.970000px;}
.yb_c01286{bottom:974.490000px;}
.ya_c01286{bottom:995.190000px;}
.y9_c01286{bottom:1016.070000px;}
.y8_c01286{bottom:1036.590000px;}
.y7_c01286{bottom:1057.290000px;}
.y6_c01286{bottom:1078.170000px;}
.y5_c01286{bottom:1098.690000px;}
.y4_c01286{bottom:1119.390000px;}
.y3_c01286{bottom:1140.120000px;}
.h2_c01286{height:50.229844px;}
.h5_c01286{height:64.371094px;}
.h4_c01286{height:64.546875px;}
.h3_c01286{height:65.003906px;}
.h6_c01286{height:87.859687px;}
.h0_c01286{height:1262.880000px;}
.h1_c01286{height:1263.000000px;}
.w0_c01286{width:892.980000px;}
.w1_c01286{width:893.250000px;}
.x0_c01286{left:0.000000px;}
.x2_c01286{left:127.656000px;}
.x1_c01286{left:740.490000px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls2_c01286{letter-spacing:-0.512000pt;}
.ls1_c01286{letter-spacing:0.000000pt;}
.ls0_c01286{letter-spacing:0.128000pt;}
.ls3_c01286{letter-spacing:0.256000pt;}
.ws1_c01286{word-spacing:-18.048000pt;}
.ws0_c01286{word-spacing:-17.792000pt;}
.ws2_c01286{word-spacing:0.000000pt;}
._1_c01286{margin-left:-1.024000pt;}
._3_c01286{width:0.906667pt;}
._a_c01286{width:1.930667pt;}
._b_c01286{width:3.136000pt;}
._4_c01286{width:8.000000pt;}
._2_c01286{width:9.280000pt;}
._0_c01286{width:10.240000pt;}
._c_c01286{width:11.648000pt;}
._6_c01286{width:13.888000pt;}
._5_c01286{width:14.912000pt;}
._7_c01286{width:16.810667pt;}
._8_c01286{width:37.056000pt;}
._9_c01286{width:38.698667pt;}
.fs0_c01286{font-size:58.880000pt;}
.fs1_c01286{font-size:64.000000pt;}
.fs2_c01286{font-size:74.880000pt;}
.y0_c01286{bottom:0.000000pt;}
.y2_c01286{bottom:51.232000pt;}
.y1_c01286{bottom:69.152000pt;}
.y33_c01286{bottom:127.232000pt;}
.y32_c01286{bottom:145.626667pt;}
.y31_c01286{bottom:163.866667pt;}
.y30_c01286{bottom:182.426667pt;}
.y2f_c01286{bottom:200.666667pt;}
.y2e_c01286{bottom:219.066667pt;}
.y2d_c01286{bottom:237.626667pt;}
.y2c_c01286{bottom:256.066667pt;}
.y2b_c01286{bottom:274.306667pt;}
.y2a_c01286{bottom:292.706667pt;}
.y29_c01286{bottom:311.106667pt;}
.y28_c01286{bottom:329.666667pt;}
.y27_c01286{bottom:348.066667pt;}
.y26_c01286{bottom:366.306667pt;}
.y25_c01286{bottom:384.706667pt;}
.y24_c01286{bottom:403.266667pt;}
.y23_c01286{bottom:421.666667pt;}
.y22_c01286{bottom:439.906667pt;}
.y21_c01286{bottom:458.786667pt;}
.y20_c01286{bottom:479.906667pt;}
.y1f_c01286{bottom:498.306667pt;}
.y1e_c01286{bottom:516.733333pt;}
.y1d_c01286{bottom:534.973333pt;}
.y1c_c01286{bottom:553.373333pt;}
.y1b_c01286{bottom:571.773333pt;}
.y1a_c01286{bottom:590.173333pt;}
.y19_c01286{bottom:608.573333pt;}
.y18_c01286{bottom:626.973333pt;}
.y17_c01286{bottom:645.373333pt;}
.y16_c01286{bottom:663.773333pt;}
.y15_c01286{bottom:682.173333pt;}
.y14_c01286{bottom:700.733333pt;}
.y13_c01286{bottom:718.973333pt;}
.y12_c01286{bottom:737.373333pt;}
.y11_c01286{bottom:755.973333pt;}
.y10_c01286{bottom:774.213333pt;}
.yf_c01286{bottom:792.773333pt;}
.ye_c01286{bottom:811.013333pt;}
.yd_c01286{bottom:829.413333pt;}
.yc_c01286{bottom:847.973333pt;}
.yb_c01286{bottom:866.213333pt;}
.ya_c01286{bottom:884.613333pt;}
.y9_c01286{bottom:903.173333pt;}
.y8_c01286{bottom:921.413333pt;}
.y7_c01286{bottom:939.813333pt;}
.y6_c01286{bottom:958.373333pt;}
.y5_c01286{bottom:976.613333pt;}
.y4_c01286{bottom:995.013333pt;}
.y3_c01286{bottom:1013.440000pt;}
.h2_c01286{height:44.648750pt;}
.h5_c01286{height:57.218750pt;}
.h4_c01286{height:57.375000pt;}
.h3_c01286{height:57.781250pt;}
.h6_c01286{height:78.097500pt;}
.h0_c01286{height:1122.560000pt;}
.h1_c01286{height:1122.666667pt;}
.w0_c01286{width:793.760000pt;}
.w1_c01286{width:794.000000pt;}
.x0_c01286{left:0.000000pt;}
.x2_c01286{left:113.472000pt;}
.x1_c01286{left:658.213333pt;}
}





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

.ir_c01287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01287;src:url('chunks/assets/font_b7a48e088b1e2bf8b81077ef.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01287;src:url('chunks/assets/font_4a4e30519c3dcb69f309eb93.woff2')format("woff");}.ff2_c01287{font-family:ff2_c01287;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01287;src:url('chunks/assets/font_607c5e8791968ff61730ddf3.woff2')format("woff");}.ff3_c01287{font-family:ff3_c01287;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01287;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff4_c01287{font-family:ff4_c01287;line-height:1.113281;font-style:normal;font-weight: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_c01287;src:url('chunks/assets/font_c3876b6d1188cf5f7ae106f7.woff2')format("woff");}.ff5_c01287{font-family:ff5_c01287;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;}
.m0_c01287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01287{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_c01287{vertical-align:0.000000px;}
.ls2_c01287{letter-spacing:-0.144000px;}
.ls1_c01287{letter-spacing:0.000000px;}
.ls0_c01287{letter-spacing:0.288000px;}
.sc__c01287{text-shadow:none;}
.sc0_c01287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01287{-webkit-text-stroke:0px transparent;}
.sc0_c01287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01287{word-spacing:-20.304000px;}
.ws2_c01287{word-spacing:-20.016000px;}
.ws0_c01287{word-spacing:-19.872000px;}
.ws3_c01287{word-spacing:0.000000px;}
._c_c01287{margin-left:-2.544216px;}
._0_c01287{margin-left:-1.224000px;}
._3_c01287{width:1.956024px;}
._6_c01287{width:3.096000px;}
._a_c01287{width:5.616000px;}
._2_c01287{width:8.568000px;}
._1_c01287{width:9.576000px;}
._4_c01287{width:10.847976px;}
._9_c01287{width:12.168000px;}
._b_c01287{width:13.512000px;}
._5_c01287{width:18.936000px;}
._8_c01287{width:28.152000px;}
._7_c01287{width:29.592000px;}
.fc0_c01287{color:rgb(0,0,0);}
.fs0_c01287{font-size:66.240000px;}
.fs1_c01287{font-size:72.000000px;}
.fs2_c01287{font-size:84.240000px;}
.y0_c01287{bottom:0.000000px;}
.y2_c01287{bottom:57.636000px;}
.y1_c01287{bottom:77.796000px;}
.y34_c01287{bottom:122.256000px;}
.y33_c01287{bottom:142.956000px;}
.y32_c01287{bottom:163.650000px;}
.y31_c01287{bottom:184.350000px;}
.y30_c01287{bottom:205.050000px;}
.y2f_c01287{bottom:225.930000px;}
.y2e_c01287{bottom:246.630000px;}
.y2d_c01287{bottom:267.150000px;}
.y2c_c01287{bottom:287.895000px;}
.y2b_c01287{bottom:308.775000px;}
.y2a_c01287{bottom:329.295000px;}
.y29_c01287{bottom:350.175000px;}
.y28_c01287{bottom:370.695000px;}
.y27_c01287{bottom:391.395000px;}
.y26_c01287{bottom:412.275000px;}
.y25_c01287{bottom:432.975000px;}
.y24_c01287{bottom:453.495000px;}
.y23_c01287{bottom:474.375000px;}
.y22_c01287{bottom:495.075000px;}
.y21_c01287{bottom:515.595000px;}
.y20_c01287{bottom:536.295000px;}
.y1f_c01287{bottom:557.535000px;}
.y1e_c01287{bottom:581.145000px;}
.y1d_c01287{bottom:601.845000px;}
.y1c_c01287{bottom:622.545000px;}
.y1b_c01287{bottom:643.245000px;}
.y1a_c01287{bottom:663.945000px;}
.y19_c01287{bottom:684.645000px;}
.y18_c01287{bottom:705.345000px;}
.y17_c01287{bottom:726.045000px;}
.y16_c01287{bottom:746.745000px;}
.y15_c01287{bottom:767.445000px;}
.y14_c01287{bottom:788.145000px;}
.y13_c01287{bottom:808.845000px;}
.y12_c01287{bottom:829.545000px;}
.y11_c01287{bottom:850.470000px;}
.y10_c01287{bottom:870.990000px;}
.yf_c01287{bottom:891.870000px;}
.ye_c01287{bottom:912.390000px;}
.yd_c01287{bottom:933.270000px;}
.yc_c01287{bottom:953.790000px;}
.yb_c01287{bottom:974.490000px;}
.ya_c01287{bottom:995.190000px;}
.y9_c01287{bottom:1015.890000px;}
.y8_c01287{bottom:1036.590000px;}
.y7_c01287{bottom:1057.290000px;}
.y6_c01287{bottom:1077.990000px;}
.y5_c01287{bottom:1098.870000px;}
.y4_c01287{bottom:1119.570000px;}
.y3_c01287{bottom:1140.120000px;}
.h2_c01287{height:50.229844px;}
.h3_c01287{height:64.546875px;}
.h4_c01287{height:65.003906px;}
.h5_c01287{height:87.859687px;}
.h0_c01287{height:1262.880000px;}
.h1_c01287{height:1263.000000px;}
.w0_c01287{width:892.980000px;}
.w1_c01287{width:893.250000px;}
.x0_c01287{left:0.000000px;}
.x1_c01287{left:127.656000px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls2_c01287{letter-spacing:-0.128000pt;}
.ls1_c01287{letter-spacing:0.000000pt;}
.ls0_c01287{letter-spacing:0.256000pt;}
.ws1_c01287{word-spacing:-18.048000pt;}
.ws2_c01287{word-spacing:-17.792000pt;}
.ws0_c01287{word-spacing:-17.664000pt;}
.ws3_c01287{word-spacing:0.000000pt;}
._c_c01287{margin-left:-2.261525pt;}
._0_c01287{margin-left:-1.088000pt;}
._3_c01287{width:1.738688pt;}
._6_c01287{width:2.752000pt;}
._a_c01287{width:4.992000pt;}
._2_c01287{width:7.616000pt;}
._1_c01287{width:8.512000pt;}
._4_c01287{width:9.642645pt;}
._9_c01287{width:10.816000pt;}
._b_c01287{width:12.010667pt;}
._5_c01287{width:16.832000pt;}
._8_c01287{width:25.024000pt;}
._7_c01287{width:26.304000pt;}
.fs0_c01287{font-size:58.880000pt;}
.fs1_c01287{font-size:64.000000pt;}
.fs2_c01287{font-size:74.880000pt;}
.y0_c01287{bottom:0.000000pt;}
.y2_c01287{bottom:51.232000pt;}
.y1_c01287{bottom:69.152000pt;}
.y34_c01287{bottom:108.672000pt;}
.y33_c01287{bottom:127.072000pt;}
.y32_c01287{bottom:145.466667pt;}
.y31_c01287{bottom:163.866667pt;}
.y30_c01287{bottom:182.266667pt;}
.y2f_c01287{bottom:200.826667pt;}
.y2e_c01287{bottom:219.226667pt;}
.y2d_c01287{bottom:237.466667pt;}
.y2c_c01287{bottom:255.906667pt;}
.y2b_c01287{bottom:274.466667pt;}
.y2a_c01287{bottom:292.706667pt;}
.y29_c01287{bottom:311.266667pt;}
.y28_c01287{bottom:329.506667pt;}
.y27_c01287{bottom:347.906667pt;}
.y26_c01287{bottom:366.466667pt;}
.y25_c01287{bottom:384.866667pt;}
.y24_c01287{bottom:403.106667pt;}
.y23_c01287{bottom:421.666667pt;}
.y22_c01287{bottom:440.066667pt;}
.y21_c01287{bottom:458.306667pt;}
.y20_c01287{bottom:476.706667pt;}
.y1f_c01287{bottom:495.586667pt;}
.y1e_c01287{bottom:516.573333pt;}
.y1d_c01287{bottom:534.973333pt;}
.y1c_c01287{bottom:553.373333pt;}
.y1b_c01287{bottom:571.773333pt;}
.y1a_c01287{bottom:590.173333pt;}
.y19_c01287{bottom:608.573333pt;}
.y18_c01287{bottom:626.973333pt;}
.y17_c01287{bottom:645.373333pt;}
.y16_c01287{bottom:663.773333pt;}
.y15_c01287{bottom:682.173333pt;}
.y14_c01287{bottom:700.573333pt;}
.y13_c01287{bottom:718.973333pt;}
.y12_c01287{bottom:737.373333pt;}
.y11_c01287{bottom:755.973333pt;}
.y10_c01287{bottom:774.213333pt;}
.yf_c01287{bottom:792.773333pt;}
.ye_c01287{bottom:811.013333pt;}
.yd_c01287{bottom:829.573333pt;}
.yc_c01287{bottom:847.813333pt;}
.yb_c01287{bottom:866.213333pt;}
.ya_c01287{bottom:884.613333pt;}
.y9_c01287{bottom:903.013333pt;}
.y8_c01287{bottom:921.413333pt;}
.y7_c01287{bottom:939.813333pt;}
.y6_c01287{bottom:958.213333pt;}
.y5_c01287{bottom:976.773333pt;}
.y4_c01287{bottom:995.173333pt;}
.y3_c01287{bottom:1013.440000pt;}
.h2_c01287{height:44.648750pt;}
.h3_c01287{height:57.375000pt;}
.h4_c01287{height:57.781250pt;}
.h5_c01287{height:78.097500pt;}
.h0_c01287{height:1122.560000pt;}
.h1_c01287{height:1122.666667pt;}
.w0_c01287{width:793.760000pt;}
.w1_c01287{width:794.000000pt;}
.x0_c01287{left:0.000000pt;}
.x1_c01287{left:113.472000pt;}
}





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

.ir_c01288:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01288;src:url('chunks/assets/font_c017011d1b80cf46aef91fc3.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01288;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff2_c01288{font-family:ff2_c01288;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01288;src:url('chunks/assets/font_db12c330bb920f0fce2bb86c.woff2')format("woff");}.ff3_c01288{font-family:ff3_c01288;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01288;src:url('chunks/assets/font_b5488ba8cb7577c46bdf18e2.woff2')format("woff");}.ff4_c01288{font-family:ff4_c01288;line-height:1.104492;font-style:normal;font-weight: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_c01288;src:url('chunks/assets/font_9a068623f87b59de86112bf8.woff2')format("woff");}.ff5_c01288{font-family:ff5_c01288;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;}
.m0_c01288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01288{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_c01288{vertical-align:0.000000px;}
.ls1_c01288{letter-spacing:0.000000px;}
.ls0_c01288{letter-spacing:0.288000px;}
.sc__c01288{text-shadow:none;}
.sc0_c01288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01288{-webkit-text-stroke:0px transparent;}
.sc0_c01288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01288{word-spacing:-20.304000px;}
.ws1_c01288{word-spacing:-20.016000px;}
.ws2_c01288{word-spacing:0.000000px;}
._4_c01288{margin-left:-4.092000px;}
._3_c01288{margin-left:-3.024000px;}
._1_c01288{margin-left:-1.008000px;}
._2_c01288{width:1.020000px;}
._0_c01288{width:3.456000px;}
._5_c01288{width:8.784000px;}
._6_c01288{width:10.500000px;}
.fc0_c01288{color:rgb(0,0,0);}
.fs0_c01288{font-size:66.240000px;}
.fs1_c01288{font-size:72.000000px;}
.y0_c01288{bottom:0.000000px;}
.y2_c01288{bottom:57.636000px;}
.y1_c01288{bottom:77.796000px;}
.y34_c01288{bottom:125.856000px;}
.y33_c01288{bottom:146.556000px;}
.y32_c01288{bottom:167.250000px;}
.y31_c01288{bottom:187.950000px;}
.y30_c01288{bottom:208.650000px;}
.y2f_c01288{bottom:229.350000px;}
.y2e_c01288{bottom:250.050000px;}
.y2d_c01288{bottom:270.750000px;}
.y2c_c01288{bottom:291.495000px;}
.y2b_c01288{bottom:312.015000px;}
.y2a_c01288{bottom:332.715000px;}
.y29_c01288{bottom:353.415000px;}
.y28_c01288{bottom:374.115000px;}
.y27_c01288{bottom:394.815000px;}
.y26_c01288{bottom:415.695000px;}
.y25_c01288{bottom:436.215000px;}
.y24_c01288{bottom:456.915000px;}
.y23_c01288{bottom:477.615000px;}
.y22_c01288{bottom:498.315000px;}
.y21_c01288{bottom:519.015000px;}
.y20_c01288{bottom:539.715000px;}
.y1f_c01288{bottom:560.595000px;}
.y1e_c01288{bottom:581.325000px;}
.y1d_c01288{bottom:601.845000px;}
.y1c_c01288{bottom:622.545000px;}
.y1b_c01288{bottom:643.425000px;}
.y1a_c01288{bottom:663.945000px;}
.y19_c01288{bottom:684.825000px;}
.y18_c01288{bottom:705.525000px;}
.y17_c01288{bottom:726.045000px;}
.y16_c01288{bottom:746.745000px;}
.y15_c01288{bottom:767.625000px;}
.y14_c01288{bottom:788.145000px;}
.y13_c01288{bottom:809.025000px;}
.y12_c01288{bottom:829.545000px;}
.y11_c01288{bottom:850.290000px;}
.y10_c01288{bottom:870.990000px;}
.yf_c01288{bottom:891.690000px;}
.ye_c01288{bottom:912.390000px;}
.yd_c01288{bottom:933.090000px;}
.yc_c01288{bottom:953.790000px;}
.yb_c01288{bottom:974.490000px;}
.ya_c01288{bottom:995.190000px;}
.y9_c01288{bottom:1015.890000px;}
.y8_c01288{bottom:1036.590000px;}
.y7_c01288{bottom:1057.290000px;}
.y6_c01288{bottom:1078.170000px;}
.y5_c01288{bottom:1098.690000px;}
.y4_c01288{bottom:1119.390000px;}
.y3_c01288{bottom:1140.120000px;}
.h2_c01288{height:50.229844px;}
.h6_c01288{height:64.371094px;}
.h4_c01288{height:64.546875px;}
.h3_c01288{height:65.003906px;}
.h5_c01288{height:75.093750px;}
.h0_c01288{height:1262.880000px;}
.h1_c01288{height:1263.000000px;}
.w0_c01288{width:892.980000px;}
.w1_c01288{width:893.250000px;}
.x0_c01288{left:0.000000px;}
.x2_c01288{left:127.656000px;}
.x1_c01288{left:740.490000px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.ls1_c01288{letter-spacing:0.000000pt;}
.ls0_c01288{letter-spacing:0.256000pt;}
.ws0_c01288{word-spacing:-18.048000pt;}
.ws1_c01288{word-spacing:-17.792000pt;}
.ws2_c01288{word-spacing:0.000000pt;}
._4_c01288{margin-left:-3.637333pt;}
._3_c01288{margin-left:-2.688000pt;}
._1_c01288{margin-left:-0.896000pt;}
._2_c01288{width:0.906667pt;}
._0_c01288{width:3.072000pt;}
._5_c01288{width:7.808000pt;}
._6_c01288{width:9.333333pt;}
.fs0_c01288{font-size:58.880000pt;}
.fs1_c01288{font-size:64.000000pt;}
.y0_c01288{bottom:0.000000pt;}
.y2_c01288{bottom:51.232000pt;}
.y1_c01288{bottom:69.152000pt;}
.y34_c01288{bottom:111.872000pt;}
.y33_c01288{bottom:130.272000pt;}
.y32_c01288{bottom:148.666667pt;}
.y31_c01288{bottom:167.066667pt;}
.y30_c01288{bottom:185.466667pt;}
.y2f_c01288{bottom:203.866667pt;}
.y2e_c01288{bottom:222.266667pt;}
.y2d_c01288{bottom:240.666667pt;}
.y2c_c01288{bottom:259.106667pt;}
.y2b_c01288{bottom:277.346667pt;}
.y2a_c01288{bottom:295.746667pt;}
.y29_c01288{bottom:314.146667pt;}
.y28_c01288{bottom:332.546667pt;}
.y27_c01288{bottom:350.946667pt;}
.y26_c01288{bottom:369.506667pt;}
.y25_c01288{bottom:387.746667pt;}
.y24_c01288{bottom:406.146667pt;}
.y23_c01288{bottom:424.546667pt;}
.y22_c01288{bottom:442.946667pt;}
.y21_c01288{bottom:461.346667pt;}
.y20_c01288{bottom:479.746667pt;}
.y1f_c01288{bottom:498.306667pt;}
.y1e_c01288{bottom:516.733333pt;}
.y1d_c01288{bottom:534.973333pt;}
.y1c_c01288{bottom:553.373333pt;}
.y1b_c01288{bottom:571.933333pt;}
.y1a_c01288{bottom:590.173333pt;}
.y19_c01288{bottom:608.733333pt;}
.y18_c01288{bottom:627.133333pt;}
.y17_c01288{bottom:645.373333pt;}
.y16_c01288{bottom:663.773333pt;}
.y15_c01288{bottom:682.333333pt;}
.y14_c01288{bottom:700.573333pt;}
.y13_c01288{bottom:719.133333pt;}
.y12_c01288{bottom:737.373333pt;}
.y11_c01288{bottom:755.813333pt;}
.y10_c01288{bottom:774.213333pt;}
.yf_c01288{bottom:792.613333pt;}
.ye_c01288{bottom:811.013333pt;}
.yd_c01288{bottom:829.413333pt;}
.yc_c01288{bottom:847.813333pt;}
.yb_c01288{bottom:866.213333pt;}
.ya_c01288{bottom:884.613333pt;}
.y9_c01288{bottom:903.013333pt;}
.y8_c01288{bottom:921.413333pt;}
.y7_c01288{bottom:939.813333pt;}
.y6_c01288{bottom:958.373333pt;}
.y5_c01288{bottom:976.613333pt;}
.y4_c01288{bottom:995.013333pt;}
.y3_c01288{bottom:1013.440000pt;}
.h2_c01288{height:44.648750pt;}
.h6_c01288{height:57.218750pt;}
.h4_c01288{height:57.375000pt;}
.h3_c01288{height:57.781250pt;}
.h5_c01288{height:66.750000pt;}
.h0_c01288{height:1122.560000pt;}
.h1_c01288{height:1122.666667pt;}
.w0_c01288{width:793.760000pt;}
.w1_c01288{width:794.000000pt;}
.x0_c01288{left:0.000000pt;}
.x2_c01288{left:113.472000pt;}
.x1_c01288{left:658.213333pt;}
}





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

.ir_c01289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01289;src:url('chunks/assets/font_3084e2a39651427155d4f678.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01289;src:url('chunks/assets/font_427925f79e97fb8b7cd4b9e1.woff2')format("woff");}.ff2_c01289{font-family:ff2_c01289;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01289;src:url('chunks/assets/font_a0bcf8a0eba54e47ec500611.woff2')format("woff");}.ff3_c01289{font-family:ff3_c01289;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01289;src:url('chunks/assets/font_020d39b384810c3d1074cbaf.woff2')format("woff");}.ff4_c01289{font-family:ff4_c01289;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01289{vertical-align:0.000000px;}
.ls1_c01289{letter-spacing:-0.432000px;}
.ls0_c01289{letter-spacing:0.000000px;}
.sc__c01289{text-shadow:none;}
.sc0_c01289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01289{-webkit-text-stroke:0px transparent;}
.sc0_c01289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01289{word-spacing:-20.016000px;}
.ws1_c01289{word-spacing:0.000000px;}
._3_c01289{margin-left:-3.168000px;}
._0_c01289{margin-left:-1.095036px;}
._5_c01289{width:1.143036px;}
._8_c01289{width:2.540797px;}
._7_c01289{width:3.990072px;}
._4_c01289{width:5.040000px;}
._d_c01289{width:6.768000px;}
._a_c01289{width:9.978072px;}
._9_c01289{width:11.016000px;}
._b_c01289{width:12.240000px;}
._c_c01289{width:13.419060px;}
._e_c01289{width:14.904000px;}
._6_c01289{width:17.288940px;}
._1_c01289{width:18.870096px;}
._2_c01289{width:21.225083px;}
._f_c01289{width:26.064000px;}
.fc0_c01289{color:rgb(0,0,0);}
.fs0_c01289{font-size:66.240000px;}
.fs2_c01289{font-size:72.000000px;}
.fs1_c01289{font-size:84.240000px;}
.y0_c01289{bottom:0.000000px;}
.y2_c01289{bottom:57.636000px;}
.y1_c01289{bottom:77.796000px;}
.y34_c01289{bottom:122.436000px;}
.y33_c01289{bottom:142.956000px;}
.y32_c01289{bottom:163.650000px;}
.y31_c01289{bottom:184.350000px;}
.y30_c01289{bottom:205.050000px;}
.y2f_c01289{bottom:225.930000px;}
.y2e_c01289{bottom:246.630000px;}
.y2d_c01289{bottom:267.150000px;}
.y2c_c01289{bottom:287.895000px;}
.y2b_c01289{bottom:308.775000px;}
.y2a_c01289{bottom:329.295000px;}
.y29_c01289{bottom:349.995000px;}
.y28_c01289{bottom:370.875000px;}
.y27_c01289{bottom:391.575000px;}
.y26_c01289{bottom:412.095000px;}
.y25_c01289{bottom:432.975000px;}
.y24_c01289{bottom:453.675000px;}
.y23_c01289{bottom:474.195000px;}
.y22_c01289{bottom:494.895000px;}
.y21_c01289{bottom:515.775000px;}
.y20_c01289{bottom:536.295000px;}
.y1f_c01289{bottom:556.995000px;}
.y1e_c01289{bottom:577.905000px;}
.y1d_c01289{bottom:598.425000px;}
.y1c_c01289{bottom:619.125000px;}
.y1b_c01289{bottom:639.825000px;}
.y1a_c01289{bottom:660.705000px;}
.y19_c01289{bottom:681.405000px;}
.y18_c01289{bottom:701.925000px;}
.y17_c01289{bottom:722.625000px;}
.y16_c01289{bottom:743.505000px;}
.y15_c01289{bottom:764.205000px;}
.y14_c01289{bottom:784.725000px;}
.y13_c01289{bottom:805.425000px;}
.y12_c01289{bottom:826.305000px;}
.y11_c01289{bottom:846.825000px;}
.y10_c01289{bottom:867.570000px;}
.yf_c01289{bottom:888.450000px;}
.ye_c01289{bottom:909.150000px;}
.yd_c01289{bottom:929.670000px;}
.yc_c01289{bottom:950.550000px;}
.yb_c01289{bottom:971.070000px;}
.ya_c01289{bottom:991.590000px;}
.y9_c01289{bottom:1012.470000px;}
.y8_c01289{bottom:1033.170000px;}
.y7_c01289{bottom:1053.690000px;}
.y6_c01289{bottom:1074.570000px;}
.y5_c01289{bottom:1095.270000px;}
.y4_c01289{bottom:1115.790000px;}
.y3_c01289{bottom:1137.240000px;}
.h2_c01289{height:50.229844px;}
.h4_c01289{height:64.546875px;}
.h3_c01289{height:87.859687px;}
.h0_c01289{height:1262.880000px;}
.h1_c01289{height:1263.000000px;}
.w0_c01289{width:892.980000px;}
.w1_c01289{width:893.250000px;}
.x0_c01289{left:0.000000px;}
.x1_c01289{left:127.656000px;}
@media print{
.v0_c01289{vertical-align:0.000000pt;}
.ls1_c01289{letter-spacing:-0.384000pt;}
.ls0_c01289{letter-spacing:0.000000pt;}
.ws0_c01289{word-spacing:-17.792000pt;}
.ws1_c01289{word-spacing:0.000000pt;}
._3_c01289{margin-left:-2.816000pt;}
._0_c01289{margin-left:-0.973365pt;}
._5_c01289{width:1.016032pt;}
._8_c01289{width:2.258486pt;}
._7_c01289{width:3.546730pt;}
._4_c01289{width:4.480000pt;}
._d_c01289{width:6.016000pt;}
._a_c01289{width:8.869397pt;}
._9_c01289{width:9.792000pt;}
._b_c01289{width:10.880000pt;}
._c_c01289{width:11.928053pt;}
._e_c01289{width:13.248000pt;}
._6_c01289{width:15.367947pt;}
._1_c01289{width:16.773418pt;}
._2_c01289{width:18.866741pt;}
._f_c01289{width:23.168000pt;}
.fs0_c01289{font-size:58.880000pt;}
.fs2_c01289{font-size:64.000000pt;}
.fs1_c01289{font-size:74.880000pt;}
.y0_c01289{bottom:0.000000pt;}
.y2_c01289{bottom:51.232000pt;}
.y1_c01289{bottom:69.152000pt;}
.y34_c01289{bottom:108.832000pt;}
.y33_c01289{bottom:127.072000pt;}
.y32_c01289{bottom:145.466667pt;}
.y31_c01289{bottom:163.866667pt;}
.y30_c01289{bottom:182.266667pt;}
.y2f_c01289{bottom:200.826667pt;}
.y2e_c01289{bottom:219.226667pt;}
.y2d_c01289{bottom:237.466667pt;}
.y2c_c01289{bottom:255.906667pt;}
.y2b_c01289{bottom:274.466667pt;}
.y2a_c01289{bottom:292.706667pt;}
.y29_c01289{bottom:311.106667pt;}
.y28_c01289{bottom:329.666667pt;}
.y27_c01289{bottom:348.066667pt;}
.y26_c01289{bottom:366.306667pt;}
.y25_c01289{bottom:384.866667pt;}
.y24_c01289{bottom:403.266667pt;}
.y23_c01289{bottom:421.506667pt;}
.y22_c01289{bottom:439.906667pt;}
.y21_c01289{bottom:458.466667pt;}
.y20_c01289{bottom:476.706667pt;}
.y1f_c01289{bottom:495.106667pt;}
.y1e_c01289{bottom:513.693333pt;}
.y1d_c01289{bottom:531.933333pt;}
.y1c_c01289{bottom:550.333333pt;}
.y1b_c01289{bottom:568.733333pt;}
.y1a_c01289{bottom:587.293333pt;}
.y19_c01289{bottom:605.693333pt;}
.y18_c01289{bottom:623.933333pt;}
.y17_c01289{bottom:642.333333pt;}
.y16_c01289{bottom:660.893333pt;}
.y15_c01289{bottom:679.293333pt;}
.y14_c01289{bottom:697.533333pt;}
.y13_c01289{bottom:715.933333pt;}
.y12_c01289{bottom:734.493333pt;}
.y11_c01289{bottom:752.733333pt;}
.y10_c01289{bottom:771.173333pt;}
.yf_c01289{bottom:789.733333pt;}
.ye_c01289{bottom:808.133333pt;}
.yd_c01289{bottom:826.373333pt;}
.yc_c01289{bottom:844.933333pt;}
.yb_c01289{bottom:863.173333pt;}
.ya_c01289{bottom:881.413333pt;}
.y9_c01289{bottom:899.973333pt;}
.y8_c01289{bottom:918.373333pt;}
.y7_c01289{bottom:936.613333pt;}
.y6_c01289{bottom:955.173333pt;}
.y5_c01289{bottom:973.573333pt;}
.y4_c01289{bottom:991.813333pt;}
.y3_c01289{bottom:1010.880000pt;}
.h2_c01289{height:44.648750pt;}
.h4_c01289{height:57.375000pt;}
.h3_c01289{height:78.097500pt;}
.h0_c01289{height:1122.560000pt;}
.h1_c01289{height:1122.666667pt;}
.w0_c01289{width:793.760000pt;}
.w1_c01289{width:794.000000pt;}
.x0_c01289{left:0.000000pt;}
.x1_c01289{left:113.472000pt;}
}





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

.ir_c01290:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01290;src:url('chunks/assets/font_c2c5ebde5958a2dddcb78cfe.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01290;src:url('chunks/assets/font_6b112ed12686c6e4f1477ce9.woff2')format("woff");}.ff2_c01290{font-family:ff2_c01290;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01290;src:url('chunks/assets/font_4b0441edd3437bf0cb612acf.woff2')format("woff");}.ff3_c01290{font-family:ff3_c01290;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01290;src:url('chunks/assets/font_e2f9a5278ebbebd689c82000.woff2')format("woff");}.ff4_c01290{font-family:ff4_c01290;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01290{vertical-align:0.000000px;}
.ls4_c01290{letter-spacing:-0.576000px;}
.ls3_c01290{letter-spacing:0.000000px;}
.ls2_c01290{letter-spacing:0.144000px;}
.ls0_c01290{letter-spacing:0.216000px;}
.ls1_c01290{letter-spacing:16.704000px;}
.sc__c01290{text-shadow:none;}
.sc0_c01290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01290{-webkit-text-stroke:0px transparent;}
.sc0_c01290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01290{word-spacing:-20.232000px;}
.ws0_c01290{word-spacing:-20.016000px;}
.ws2_c01290{word-spacing:0.000000px;}
._9_c01290{margin-left:-3.587976px;}
._8_c01290{margin-left:-2.520000px;}
._1_c01290{margin-left:-1.368000px;}
._0_c01290{width:1.944000px;}
._2_c01290{width:3.672000px;}
._5_c01290{width:5.544000px;}
._4_c01290{width:6.672000px;}
._3_c01290{width:7.704000px;}
._a_c01290{width:8.880000px;}
._6_c01290{width:10.560000px;}
._b_c01290{width:12.456000px;}
._7_c01290{width:16.200000px;}
.fc0_c01290{color:rgb(0,0,0);}
.fs0_c01290{font-size:66.240000px;}
.fs1_c01290{font-size:72.000000px;}
.y0_c01290{bottom:0.000000px;}
.y2_c01290{bottom:57.636000px;}
.y1_c01290{bottom:77.796000px;}
.y34_c01290{bottom:125.676000px;}
.y33_c01290{bottom:146.376000px;}
.y32_c01290{bottom:167.070000px;}
.y31_c01290{bottom:187.770000px;}
.y30_c01290{bottom:208.470000px;}
.y2f_c01290{bottom:229.170000px;}
.y2e_c01290{bottom:249.870000px;}
.y2d_c01290{bottom:270.570000px;}
.y2c_c01290{bottom:291.315000px;}
.y2b_c01290{bottom:312.195000px;}
.y2a_c01290{bottom:332.715000px;}
.y29_c01290{bottom:353.415000px;}
.y28_c01290{bottom:374.295000px;}
.y27_c01290{bottom:394.815000px;}
.y26_c01290{bottom:415.695000px;}
.y25_c01290{bottom:436.215000px;}
.y24_c01290{bottom:456.915000px;}
.y23_c01290{bottom:477.795000px;}
.y22_c01290{bottom:498.315000px;}
.y21_c01290{bottom:519.015000px;}
.y20_c01290{bottom:539.895000px;}
.y1f_c01290{bottom:560.595000px;}
.y1e_c01290{bottom:581.145000px;}
.y1d_c01290{bottom:602.025000px;}
.y1c_c01290{bottom:622.725000px;}
.y1b_c01290{bottom:643.245000px;}
.y1a_c01290{bottom:663.945000px;}
.y19_c01290{bottom:684.825000px;}
.y18_c01290{bottom:705.345000px;}
.y17_c01290{bottom:726.045000px;}
.y16_c01290{bottom:746.925000px;}
.y15_c01290{bottom:767.445000px;}
.y14_c01290{bottom:788.145000px;}
.y13_c01290{bottom:808.845000px;}
.y12_c01290{bottom:829.545000px;}
.y11_c01290{bottom:850.290000px;}
.y10_c01290{bottom:871.170000px;}
.yf_c01290{bottom:891.690000px;}
.ye_c01290{bottom:912.390000px;}
.yd_c01290{bottom:933.270000px;}
.yc_c01290{bottom:953.790000px;}
.yb_c01290{bottom:974.670000px;}
.ya_c01290{bottom:995.370000px;}
.y9_c01290{bottom:1015.890000px;}
.y8_c01290{bottom:1036.590000px;}
.y7_c01290{bottom:1057.290000px;}
.y6_c01290{bottom:1078.170000px;}
.y5_c01290{bottom:1098.690000px;}
.y4_c01290{bottom:1119.390000px;}
.y3_c01290{bottom:1140.300000px;}
.h2_c01290{height:50.229844px;}
.h3_c01290{height:64.546875px;}
.h4_c01290{height:65.003906px;}
.h0_c01290{height:1262.880000px;}
.h1_c01290{height:1263.000000px;}
.w0_c01290{width:892.980000px;}
.w1_c01290{width:893.250000px;}
.x0_c01290{left:0.000000px;}
.x2_c01290{left:127.656000px;}
.x1_c01290{left:740.490000px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls4_c01290{letter-spacing:-0.512000pt;}
.ls3_c01290{letter-spacing:0.000000pt;}
.ls2_c01290{letter-spacing:0.128000pt;}
.ls0_c01290{letter-spacing:0.192000pt;}
.ls1_c01290{letter-spacing:14.848000pt;}
.ws1_c01290{word-spacing:-17.984000pt;}
.ws0_c01290{word-spacing:-17.792000pt;}
.ws2_c01290{word-spacing:0.000000pt;}
._9_c01290{margin-left:-3.189312pt;}
._8_c01290{margin-left:-2.240000pt;}
._1_c01290{margin-left:-1.216000pt;}
._0_c01290{width:1.728000pt;}
._2_c01290{width:3.264000pt;}
._5_c01290{width:4.928000pt;}
._4_c01290{width:5.930667pt;}
._3_c01290{width:6.848000pt;}
._a_c01290{width:7.893333pt;}
._6_c01290{width:9.386667pt;}
._b_c01290{width:11.072000pt;}
._7_c01290{width:14.400000pt;}
.fs0_c01290{font-size:58.880000pt;}
.fs1_c01290{font-size:64.000000pt;}
.y0_c01290{bottom:0.000000pt;}
.y2_c01290{bottom:51.232000pt;}
.y1_c01290{bottom:69.152000pt;}
.y34_c01290{bottom:111.712000pt;}
.y33_c01290{bottom:130.112000pt;}
.y32_c01290{bottom:148.506667pt;}
.y31_c01290{bottom:166.906667pt;}
.y30_c01290{bottom:185.306667pt;}
.y2f_c01290{bottom:203.706667pt;}
.y2e_c01290{bottom:222.106667pt;}
.y2d_c01290{bottom:240.506667pt;}
.y2c_c01290{bottom:258.946667pt;}
.y2b_c01290{bottom:277.506667pt;}
.y2a_c01290{bottom:295.746667pt;}
.y29_c01290{bottom:314.146667pt;}
.y28_c01290{bottom:332.706667pt;}
.y27_c01290{bottom:350.946667pt;}
.y26_c01290{bottom:369.506667pt;}
.y25_c01290{bottom:387.746667pt;}
.y24_c01290{bottom:406.146667pt;}
.y23_c01290{bottom:424.706667pt;}
.y22_c01290{bottom:442.946667pt;}
.y21_c01290{bottom:461.346667pt;}
.y20_c01290{bottom:479.906667pt;}
.y1f_c01290{bottom:498.306667pt;}
.y1e_c01290{bottom:516.573333pt;}
.y1d_c01290{bottom:535.133333pt;}
.y1c_c01290{bottom:553.533333pt;}
.y1b_c01290{bottom:571.773333pt;}
.y1a_c01290{bottom:590.173333pt;}
.y19_c01290{bottom:608.733333pt;}
.y18_c01290{bottom:626.973333pt;}
.y17_c01290{bottom:645.373333pt;}
.y16_c01290{bottom:663.933333pt;}
.y15_c01290{bottom:682.173333pt;}
.y14_c01290{bottom:700.573333pt;}
.y13_c01290{bottom:718.973333pt;}
.y12_c01290{bottom:737.373333pt;}
.y11_c01290{bottom:755.813333pt;}
.y10_c01290{bottom:774.373333pt;}
.yf_c01290{bottom:792.613333pt;}
.ye_c01290{bottom:811.013333pt;}
.yd_c01290{bottom:829.573333pt;}
.yc_c01290{bottom:847.813333pt;}
.yb_c01290{bottom:866.373333pt;}
.ya_c01290{bottom:884.773333pt;}
.y9_c01290{bottom:903.013333pt;}
.y8_c01290{bottom:921.413333pt;}
.y7_c01290{bottom:939.813333pt;}
.y6_c01290{bottom:958.373333pt;}
.y5_c01290{bottom:976.613333pt;}
.y4_c01290{bottom:995.013333pt;}
.y3_c01290{bottom:1013.600000pt;}
.h2_c01290{height:44.648750pt;}
.h3_c01290{height:57.375000pt;}
.h4_c01290{height:57.781250pt;}
.h0_c01290{height:1122.560000pt;}
.h1_c01290{height:1122.666667pt;}
.w0_c01290{width:793.760000pt;}
.w1_c01290{width:794.000000pt;}
.x0_c01290{left:0.000000pt;}
.x2_c01290{left:113.472000pt;}
.x1_c01290{left:658.213333pt;}
}





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

.ir_c01291:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01291;src:url('chunks/assets/font_c2c5ebde5958a2dddcb78cfe.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01291;src:url('chunks/assets/font_91d76e13a2b2503db33b1236.woff2')format("woff");}.ff2_c01291{font-family:ff2_c01291;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01291;src:url('chunks/assets/font_abf4c63a39657488f6789fe9.woff2')format("woff");}.ff3_c01291{font-family:ff3_c01291;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01291;src:url('chunks/assets/font_2cba628d1e8973d5e14542c0.woff2')format("woff");}.ff4_c01291{font-family:ff4_c01291;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01291{vertical-align:0.000000px;}
.ls0_c01291{letter-spacing:0.000000px;}
.sc__c01291{text-shadow:none;}
.sc0_c01291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01291{-webkit-text-stroke:0px transparent;}
.sc0_c01291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01291{word-spacing:-20.016000px;}
.ws1_c01291{word-spacing:0.000000px;}
._6_c01291{margin-left:-3.600000px;}
._0_c01291{margin-left:-1.666183px;}
._4_c01291{width:1.524000px;}
._3_c01291{width:3.456000px;}
._2_c01291{width:4.546183px;}
._1_c01291{width:5.616000px;}
._b_c01291{width:7.488000px;}
._9_c01291{width:12.349458px;}
._8_c01291{width:13.583952px;}
._7_c01291{width:14.592024px;}
._5_c01291{width:22.032000px;}
._a_c01291{width:26.064000px;}
.fc0_c01291{color:rgb(0,0,0);}
.fs0_c01291{font-size:66.240000px;}
.fs2_c01291{font-size:72.000000px;}
.fs1_c01291{font-size:84.240000px;}
.y0_c01291{bottom:0.000000px;}
.y2_c01291{bottom:57.636000px;}
.y1_c01291{bottom:77.796000px;}
.y34_c01291{bottom:122.256000px;}
.y33_c01291{bottom:142.956000px;}
.y32_c01291{bottom:163.650000px;}
.y31_c01291{bottom:184.350000px;}
.y30_c01291{bottom:205.230000px;}
.y2f_c01291{bottom:225.930000px;}
.y2e_c01291{bottom:246.450000px;}
.y2d_c01291{bottom:267.150000px;}
.y2c_c01291{bottom:287.895000px;}
.y2b_c01291{bottom:308.775000px;}
.y2a_c01291{bottom:329.295000px;}
.y29_c01291{bottom:349.995000px;}
.y28_c01291{bottom:370.875000px;}
.y27_c01291{bottom:391.575000px;}
.y26_c01291{bottom:412.095000px;}
.y25_c01291{bottom:432.795000px;}
.y24_c01291{bottom:453.495000px;}
.y23_c01291{bottom:474.195000px;}
.y22_c01291{bottom:495.075000px;}
.y21_c01291{bottom:515.595000px;}
.y20_c01291{bottom:536.295000px;}
.y1f_c01291{bottom:556.995000px;}
.y1e_c01291{bottom:577.905000px;}
.y1d_c01291{bottom:598.425000px;}
.y1c_c01291{bottom:619.125000px;}
.y1b_c01291{bottom:639.825000px;}
.y1a_c01291{bottom:660.525000px;}
.y19_c01291{bottom:681.405000px;}
.y18_c01291{bottom:701.925000px;}
.y17_c01291{bottom:722.625000px;}
.y16_c01291{bottom:743.505000px;}
.y15_c01291{bottom:764.205000px;}
.y14_c01291{bottom:784.725000px;}
.y13_c01291{bottom:805.605000px;}
.y12_c01291{bottom:826.305000px;}
.y11_c01291{bottom:846.825000px;}
.y10_c01291{bottom:867.570000px;}
.yf_c01291{bottom:888.450000px;}
.ye_c01291{bottom:908.970000px;}
.yd_c01291{bottom:929.670000px;}
.yc_c01291{bottom:950.550000px;}
.yb_c01291{bottom:971.070000px;}
.ya_c01291{bottom:991.590000px;}
.y9_c01291{bottom:1012.470000px;}
.y8_c01291{bottom:1033.170000px;}
.y7_c01291{bottom:1053.690000px;}
.y6_c01291{bottom:1074.570000px;}
.y5_c01291{bottom:1095.090000px;}
.y4_c01291{bottom:1115.790000px;}
.y3_c01291{bottom:1137.240000px;}
.h2_c01291{height:50.229844px;}
.h4_c01291{height:64.546875px;}
.h3_c01291{height:87.859687px;}
.h0_c01291{height:1262.880000px;}
.h1_c01291{height:1263.000000px;}
.w0_c01291{width:892.980000px;}
.w1_c01291{width:893.250000px;}
.x0_c01291{left:0.000000px;}
.x1_c01291{left:127.656000px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls0_c01291{letter-spacing:0.000000pt;}
.ws0_c01291{word-spacing:-17.792000pt;}
.ws1_c01291{word-spacing:0.000000pt;}
._6_c01291{margin-left:-3.200000pt;}
._0_c01291{margin-left:-1.481052pt;}
._4_c01291{width:1.354667pt;}
._3_c01291{width:3.072000pt;}
._2_c01291{width:4.041052pt;}
._1_c01291{width:4.992000pt;}
._b_c01291{width:6.656000pt;}
._9_c01291{width:10.977296pt;}
._8_c01291{width:12.074624pt;}
._7_c01291{width:12.970688pt;}
._5_c01291{width:19.584000pt;}
._a_c01291{width:23.168000pt;}
.fs0_c01291{font-size:58.880000pt;}
.fs2_c01291{font-size:64.000000pt;}
.fs1_c01291{font-size:74.880000pt;}
.y0_c01291{bottom:0.000000pt;}
.y2_c01291{bottom:51.232000pt;}
.y1_c01291{bottom:69.152000pt;}
.y34_c01291{bottom:108.672000pt;}
.y33_c01291{bottom:127.072000pt;}
.y32_c01291{bottom:145.466667pt;}
.y31_c01291{bottom:163.866667pt;}
.y30_c01291{bottom:182.426667pt;}
.y2f_c01291{bottom:200.826667pt;}
.y2e_c01291{bottom:219.066667pt;}
.y2d_c01291{bottom:237.466667pt;}
.y2c_c01291{bottom:255.906667pt;}
.y2b_c01291{bottom:274.466667pt;}
.y2a_c01291{bottom:292.706667pt;}
.y29_c01291{bottom:311.106667pt;}
.y28_c01291{bottom:329.666667pt;}
.y27_c01291{bottom:348.066667pt;}
.y26_c01291{bottom:366.306667pt;}
.y25_c01291{bottom:384.706667pt;}
.y24_c01291{bottom:403.106667pt;}
.y23_c01291{bottom:421.506667pt;}
.y22_c01291{bottom:440.066667pt;}
.y21_c01291{bottom:458.306667pt;}
.y20_c01291{bottom:476.706667pt;}
.y1f_c01291{bottom:495.106667pt;}
.y1e_c01291{bottom:513.693333pt;}
.y1d_c01291{bottom:531.933333pt;}
.y1c_c01291{bottom:550.333333pt;}
.y1b_c01291{bottom:568.733333pt;}
.y1a_c01291{bottom:587.133333pt;}
.y19_c01291{bottom:605.693333pt;}
.y18_c01291{bottom:623.933333pt;}
.y17_c01291{bottom:642.333333pt;}
.y16_c01291{bottom:660.893333pt;}
.y15_c01291{bottom:679.293333pt;}
.y14_c01291{bottom:697.533333pt;}
.y13_c01291{bottom:716.093333pt;}
.y12_c01291{bottom:734.493333pt;}
.y11_c01291{bottom:752.733333pt;}
.y10_c01291{bottom:771.173333pt;}
.yf_c01291{bottom:789.733333pt;}
.ye_c01291{bottom:807.973333pt;}
.yd_c01291{bottom:826.373333pt;}
.yc_c01291{bottom:844.933333pt;}
.yb_c01291{bottom:863.173333pt;}
.ya_c01291{bottom:881.413333pt;}
.y9_c01291{bottom:899.973333pt;}
.y8_c01291{bottom:918.373333pt;}
.y7_c01291{bottom:936.613333pt;}
.y6_c01291{bottom:955.173333pt;}
.y5_c01291{bottom:973.413333pt;}
.y4_c01291{bottom:991.813333pt;}
.y3_c01291{bottom:1010.880000pt;}
.h2_c01291{height:44.648750pt;}
.h4_c01291{height:57.375000pt;}
.h3_c01291{height:78.097500pt;}
.h0_c01291{height:1122.560000pt;}
.h1_c01291{height:1122.666667pt;}
.w0_c01291{width:793.760000pt;}
.w1_c01291{width:794.000000pt;}
.x0_c01291{left:0.000000pt;}
.x1_c01291{left:113.472000pt;}
}





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

.ir_c01292:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01292;src:url('chunks/assets/font_c2c5ebde5958a2dddcb78cfe.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01292;src:url('chunks/assets/font_3931bf848a632f66b02fd53c.woff2')format("woff");}.ff2_c01292{font-family:ff2_c01292;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01292;src:url('chunks/assets/font_352d8d3ba10eb12df6b2ab23.woff2')format("woff");}.ff3_c01292{font-family:ff3_c01292;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01292;src:url('chunks/assets/font_0fd8478547bb8f1d39803583.woff2')format("woff");}.ff4_c01292{font-family:ff4_c01292;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;}
.m0_c01292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01292{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_c01292{vertical-align:0.000000px;}
.ls4_c01292{letter-spacing:-0.576000px;}
.ls5_c01292{letter-spacing:-0.432000px;}
.ls3_c01292{letter-spacing:0.000000px;}
.ls1_c01292{letter-spacing:0.144000px;}
.ls2_c01292{letter-spacing:0.216000px;}
.ls0_c01292{letter-spacing:0.288000px;}
.sc__c01292{text-shadow:none;}
.sc0_c01292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01292{-webkit-text-stroke:0px transparent;}
.sc0_c01292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01292{word-spacing:-20.160000px;}
.ws0_c01292{word-spacing:-20.016000px;}
.ws2_c01292{word-spacing:0.000000px;}
._f_c01292{margin-left:-4.452000px;}
._e_c01292{margin-left:-3.384000px;}
._11_c01292{margin-left:-2.148000px;}
._2_c01292{margin-left:-1.080000px;}
._5_c01292{width:1.308024px;}
._10_c01292{width:3.720000px;}
._4_c01292{width:4.968000px;}
._3_c01292{width:6.840000px;}
._6_c01292{width:8.424000px;}
._b_c01292{width:9.576000px;}
._c_c01292{width:10.584000px;}
._d_c01292{width:12.671952px;}
._a_c01292{width:14.615928px;}
._9_c01292{width:15.816024px;}
._12_c01292{width:21.600000px;}
._1_c01292{width:22.968000px;}
._0_c01292{width:24.480000px;}
._8_c01292{width:35.424000px;}
._7_c01292{width:36.648000px;}
.fc0_c01292{color:rgb(0,0,0);}
.fs0_c01292{font-size:66.240000px;}
.fs1_c01292{font-size:72.000000px;}
.fs2_c01292{font-size:84.240000px;}
.y0_c01292{bottom:0.000000px;}
.y2_c01292{bottom:57.636000px;}
.y1_c01292{bottom:77.796000px;}
.y32_c01292{bottom:121.716000px;}
.y31_c01292{bottom:142.596000px;}
.y30_c01292{bottom:184.170000px;}
.y2f_c01292{bottom:204.870000px;}
.y2e_c01292{bottom:225.390000px;}
.y2d_c01292{bottom:246.090000px;}
.y2c_c01292{bottom:288.075000px;}
.y2b_c01292{bottom:308.775000px;}
.y2a_c01292{bottom:329.295000px;}
.y29_c01292{bottom:349.995000px;}
.y28_c01292{bottom:370.695000px;}
.y27_c01292{bottom:391.395000px;}
.y26_c01292{bottom:412.095000px;}
.y25_c01292{bottom:432.975000px;}
.y24_c01292{bottom:453.675000px;}
.y23_c01292{bottom:474.195000px;}
.y22_c01292{bottom:494.895000px;}
.y21_c01292{bottom:515.775000px;}
.y20_c01292{bottom:536.475000px;}
.y1f_c01292{bottom:556.995000px;}
.y1e_c01292{bottom:577.905000px;}
.y1d_c01292{bottom:598.605000px;}
.y1c_c01292{bottom:619.305000px;}
.y1b_c01292{bottom:639.825000px;}
.y1a_c01292{bottom:660.525000px;}
.y19_c01292{bottom:681.405000px;}
.y18_c01292{bottom:701.925000px;}
.y17_c01292{bottom:722.625000px;}
.y16_c01292{bottom:743.325000px;}
.y15_c01292{bottom:764.205000px;}
.y14_c01292{bottom:784.905000px;}
.y13_c01292{bottom:805.425000px;}
.y12_c01292{bottom:826.125000px;}
.y11_c01292{bottom:847.410000px;}
.y10_c01292{bottom:870.990000px;}
.yf_c01292{bottom:891.690000px;}
.ye_c01292{bottom:912.390000px;}
.yd_c01292{bottom:933.090000px;}
.yc_c01292{bottom:953.790000px;}
.yb_c01292{bottom:974.670000px;}
.ya_c01292{bottom:995.190000px;}
.y9_c01292{bottom:1016.070000px;}
.y8_c01292{bottom:1036.590000px;}
.y7_c01292{bottom:1057.290000px;}
.y6_c01292{bottom:1077.990000px;}
.y5_c01292{bottom:1098.870000px;}
.y4_c01292{bottom:1119.570000px;}
.y3_c01292{bottom:1140.120000px;}
.h2_c01292{height:50.229844px;}
.h5_c01292{height:64.371094px;}
.h3_c01292{height:64.546875px;}
.h4_c01292{height:87.859687px;}
.h0_c01292{height:1262.880000px;}
.h1_c01292{height:1263.000000px;}
.w0_c01292{width:892.980000px;}
.w1_c01292{width:893.250000px;}
.x0_c01292{left:0.000000px;}
.x2_c01292{left:127.656000px;}
.x1_c01292{left:740.490000px;}
@media print{
.v0_c01292{vertical-align:0.000000pt;}
.ls4_c01292{letter-spacing:-0.512000pt;}
.ls5_c01292{letter-spacing:-0.384000pt;}
.ls3_c01292{letter-spacing:0.000000pt;}
.ls1_c01292{letter-spacing:0.128000pt;}
.ls2_c01292{letter-spacing:0.192000pt;}
.ls0_c01292{letter-spacing:0.256000pt;}
.ws1_c01292{word-spacing:-17.920000pt;}
.ws0_c01292{word-spacing:-17.792000pt;}
.ws2_c01292{word-spacing:0.000000pt;}
._f_c01292{margin-left:-3.957333pt;}
._e_c01292{margin-left:-3.008000pt;}
._11_c01292{margin-left:-1.909333pt;}
._2_c01292{margin-left:-0.960000pt;}
._5_c01292{width:1.162688pt;}
._10_c01292{width:3.306667pt;}
._4_c01292{width:4.416000pt;}
._3_c01292{width:6.080000pt;}
._6_c01292{width:7.488000pt;}
._b_c01292{width:8.512000pt;}
._c_c01292{width:9.408000pt;}
._d_c01292{width:11.263957pt;}
._a_c01292{width:12.991936pt;}
._9_c01292{width:14.058688pt;}
._12_c01292{width:19.200000pt;}
._1_c01292{width:20.416000pt;}
._0_c01292{width:21.760000pt;}
._8_c01292{width:31.488000pt;}
._7_c01292{width:32.576000pt;}
.fs0_c01292{font-size:58.880000pt;}
.fs1_c01292{font-size:64.000000pt;}
.fs2_c01292{font-size:74.880000pt;}
.y0_c01292{bottom:0.000000pt;}
.y2_c01292{bottom:51.232000pt;}
.y1_c01292{bottom:69.152000pt;}
.y32_c01292{bottom:108.192000pt;}
.y31_c01292{bottom:126.752000pt;}
.y30_c01292{bottom:163.706667pt;}
.y2f_c01292{bottom:182.106667pt;}
.y2e_c01292{bottom:200.346667pt;}
.y2d_c01292{bottom:218.746667pt;}
.y2c_c01292{bottom:256.066667pt;}
.y2b_c01292{bottom:274.466667pt;}
.y2a_c01292{bottom:292.706667pt;}
.y29_c01292{bottom:311.106667pt;}
.y28_c01292{bottom:329.506667pt;}
.y27_c01292{bottom:347.906667pt;}
.y26_c01292{bottom:366.306667pt;}
.y25_c01292{bottom:384.866667pt;}
.y24_c01292{bottom:403.266667pt;}
.y23_c01292{bottom:421.506667pt;}
.y22_c01292{bottom:439.906667pt;}
.y21_c01292{bottom:458.466667pt;}
.y20_c01292{bottom:476.866667pt;}
.y1f_c01292{bottom:495.106667pt;}
.y1e_c01292{bottom:513.693333pt;}
.y1d_c01292{bottom:532.093333pt;}
.y1c_c01292{bottom:550.493333pt;}
.y1b_c01292{bottom:568.733333pt;}
.y1a_c01292{bottom:587.133333pt;}
.y19_c01292{bottom:605.693333pt;}
.y18_c01292{bottom:623.933333pt;}
.y17_c01292{bottom:642.333333pt;}
.y16_c01292{bottom:660.733333pt;}
.y15_c01292{bottom:679.293333pt;}
.y14_c01292{bottom:697.693333pt;}
.y13_c01292{bottom:715.933333pt;}
.y12_c01292{bottom:734.333333pt;}
.y11_c01292{bottom:753.253333pt;}
.y10_c01292{bottom:774.213333pt;}
.yf_c01292{bottom:792.613333pt;}
.ye_c01292{bottom:811.013333pt;}
.yd_c01292{bottom:829.413333pt;}
.yc_c01292{bottom:847.813333pt;}
.yb_c01292{bottom:866.373333pt;}
.ya_c01292{bottom:884.613333pt;}
.y9_c01292{bottom:903.173333pt;}
.y8_c01292{bottom:921.413333pt;}
.y7_c01292{bottom:939.813333pt;}
.y6_c01292{bottom:958.213333pt;}
.y5_c01292{bottom:976.773333pt;}
.y4_c01292{bottom:995.173333pt;}
.y3_c01292{bottom:1013.440000pt;}
.h2_c01292{height:44.648750pt;}
.h5_c01292{height:57.218750pt;}
.h3_c01292{height:57.375000pt;}
.h4_c01292{height:78.097500pt;}
.h0_c01292{height:1122.560000pt;}
.h1_c01292{height:1122.666667pt;}
.w0_c01292{width:793.760000pt;}
.w1_c01292{width:794.000000pt;}
.x0_c01292{left:0.000000pt;}
.x2_c01292{left:113.472000pt;}
.x1_c01292{left:658.213333pt;}
}





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

.ir_c01293:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01293;src:url('chunks/assets/font_aa0f8e54c9800a95b93c377f.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01293;src:url('chunks/assets/font_8aa3460b9aa1e75a26d6a04e.woff2')format("woff");}.ff2_c01293{font-family:ff2_c01293;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01293;src:url('chunks/assets/font_f5c78c81db2dcf3b9c89af1c.woff2')format("woff");}.ff3_c01293{font-family:ff3_c01293;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01293;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff4_c01293{font-family:ff4_c01293;line-height:1.113281;font-style:normal;font-weight: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_c01293;src:url('chunks/assets/font_16b3737496184c7d51c694e7.woff2')format("woff");}.ff5_c01293{font-family:ff5_c01293;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;}
.m0_c01293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01293{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_c01293{vertical-align:0.000000px;}
.ls0_c01293{letter-spacing:0.000000px;}
.ls1_c01293{letter-spacing:0.144000px;}
.sc__c01293{text-shadow:none;}
.sc0_c01293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01293{-webkit-text-stroke:0px transparent;}
.sc0_c01293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01293{word-spacing:-20.016000px;}
.ws1_c01293{word-spacing:0.000000px;}
._0_c01293{margin-left:-1.080000px;}
._2_c01293{width:1.020000px;}
._1_c01293{width:2.520000px;}
._a_c01293{width:3.720000px;}
._3_c01293{width:4.728024px;}
._7_c01293{width:5.831856px;}
._8_c01293{width:7.920000px;}
._6_c01293{width:13.260000px;}
._4_c01293{width:14.400000px;}
._5_c01293{width:17.712000px;}
._9_c01293{width:33.840000px;}
.fc0_c01293{color:rgb(0,0,0);}
.fs0_c01293{font-size:66.240000px;}
.fs1_c01293{font-size:72.000000px;}
.fs2_c01293{font-size:84.240000px;}
.y0_c01293{bottom:0.000000px;}
.y2_c01293{bottom:57.636000px;}
.y1_c01293{bottom:77.796000px;}
.y33_c01293{bottom:142.956000px;}
.y32_c01293{bottom:163.830000px;}
.y31_c01293{bottom:184.350000px;}
.y30_c01293{bottom:205.050000px;}
.y2f_c01293{bottom:225.930000px;}
.y2e_c01293{bottom:246.630000px;}
.y2d_c01293{bottom:267.150000px;}
.y2c_c01293{bottom:288.075000px;}
.y2b_c01293{bottom:308.775000px;}
.y2a_c01293{bottom:329.295000px;}
.y29_c01293{bottom:350.175000px;}
.y28_c01293{bottom:370.875000px;}
.y27_c01293{bottom:391.395000px;}
.y26_c01293{bottom:412.275000px;}
.y25_c01293{bottom:432.975000px;}
.y24_c01293{bottom:453.495000px;}
.y23_c01293{bottom:474.735000px;}
.y22_c01293{bottom:498.315000px;}
.y21_c01293{bottom:519.015000px;}
.y20_c01293{bottom:539.715000px;}
.y1f_c01293{bottom:560.415000px;}
.y1e_c01293{bottom:581.145000px;}
.y1d_c01293{bottom:601.845000px;}
.y1c_c01293{bottom:622.545000px;}
.y1b_c01293{bottom:643.245000px;}
.y1a_c01293{bottom:663.945000px;}
.y19_c01293{bottom:684.825000px;}
.y18_c01293{bottom:705.345000px;}
.y17_c01293{bottom:726.045000px;}
.y16_c01293{bottom:746.925000px;}
.y15_c01293{bottom:767.445000px;}
.y14_c01293{bottom:788.145000px;}
.y13_c01293{bottom:808.845000px;}
.y12_c01293{bottom:829.545000px;}
.y11_c01293{bottom:850.290000px;}
.y10_c01293{bottom:871.170000px;}
.yf_c01293{bottom:891.870000px;}
.ye_c01293{bottom:912.390000px;}
.yd_c01293{bottom:933.090000px;}
.yc_c01293{bottom:953.970000px;}
.yb_c01293{bottom:974.490000px;}
.ya_c01293{bottom:995.190000px;}
.y9_c01293{bottom:1015.890000px;}
.y8_c01293{bottom:1036.770000px;}
.y7_c01293{bottom:1057.470000px;}
.y6_c01293{bottom:1077.990000px;}
.y5_c01293{bottom:1098.690000px;}
.y4_c01293{bottom:1119.570000px;}
.y3_c01293{bottom:1140.300000px;}
.h2_c01293{height:50.229844px;}
.h3_c01293{height:64.546875px;}
.h4_c01293{height:65.003906px;}
.h5_c01293{height:87.859687px;}
.h0_c01293{height:1262.880000px;}
.h1_c01293{height:1263.000000px;}
.w0_c01293{width:892.980000px;}
.w1_c01293{width:893.250000px;}
.x0_c01293{left:0.000000px;}
.x1_c01293{left:127.656000px;}
@media print{
.v0_c01293{vertical-align:0.000000pt;}
.ls0_c01293{letter-spacing:0.000000pt;}
.ls1_c01293{letter-spacing:0.128000pt;}
.ws0_c01293{word-spacing:-17.792000pt;}
.ws1_c01293{word-spacing:0.000000pt;}
._0_c01293{margin-left:-0.960000pt;}
._2_c01293{width:0.906667pt;}
._1_c01293{width:2.240000pt;}
._a_c01293{width:3.306667pt;}
._3_c01293{width:4.202688pt;}
._7_c01293{width:5.183872pt;}
._8_c01293{width:7.040000pt;}
._6_c01293{width:11.786667pt;}
._4_c01293{width:12.800000pt;}
._5_c01293{width:15.744000pt;}
._9_c01293{width:30.080000pt;}
.fs0_c01293{font-size:58.880000pt;}
.fs1_c01293{font-size:64.000000pt;}
.fs2_c01293{font-size:74.880000pt;}
.y0_c01293{bottom:0.000000pt;}
.y2_c01293{bottom:51.232000pt;}
.y1_c01293{bottom:69.152000pt;}
.y33_c01293{bottom:127.072000pt;}
.y32_c01293{bottom:145.626667pt;}
.y31_c01293{bottom:163.866667pt;}
.y30_c01293{bottom:182.266667pt;}
.y2f_c01293{bottom:200.826667pt;}
.y2e_c01293{bottom:219.226667pt;}
.y2d_c01293{bottom:237.466667pt;}
.y2c_c01293{bottom:256.066667pt;}
.y2b_c01293{bottom:274.466667pt;}
.y2a_c01293{bottom:292.706667pt;}
.y29_c01293{bottom:311.266667pt;}
.y28_c01293{bottom:329.666667pt;}
.y27_c01293{bottom:347.906667pt;}
.y26_c01293{bottom:366.466667pt;}
.y25_c01293{bottom:384.866667pt;}
.y24_c01293{bottom:403.106667pt;}
.y23_c01293{bottom:421.986667pt;}
.y22_c01293{bottom:442.946667pt;}
.y21_c01293{bottom:461.346667pt;}
.y20_c01293{bottom:479.746667pt;}
.y1f_c01293{bottom:498.146667pt;}
.y1e_c01293{bottom:516.573333pt;}
.y1d_c01293{bottom:534.973333pt;}
.y1c_c01293{bottom:553.373333pt;}
.y1b_c01293{bottom:571.773333pt;}
.y1a_c01293{bottom:590.173333pt;}
.y19_c01293{bottom:608.733333pt;}
.y18_c01293{bottom:626.973333pt;}
.y17_c01293{bottom:645.373333pt;}
.y16_c01293{bottom:663.933333pt;}
.y15_c01293{bottom:682.173333pt;}
.y14_c01293{bottom:700.573333pt;}
.y13_c01293{bottom:718.973333pt;}
.y12_c01293{bottom:737.373333pt;}
.y11_c01293{bottom:755.813333pt;}
.y10_c01293{bottom:774.373333pt;}
.yf_c01293{bottom:792.773333pt;}
.ye_c01293{bottom:811.013333pt;}
.yd_c01293{bottom:829.413333pt;}
.yc_c01293{bottom:847.973333pt;}
.yb_c01293{bottom:866.213333pt;}
.ya_c01293{bottom:884.613333pt;}
.y9_c01293{bottom:903.013333pt;}
.y8_c01293{bottom:921.573333pt;}
.y7_c01293{bottom:939.973333pt;}
.y6_c01293{bottom:958.213333pt;}
.y5_c01293{bottom:976.613333pt;}
.y4_c01293{bottom:995.173333pt;}
.y3_c01293{bottom:1013.600000pt;}
.h2_c01293{height:44.648750pt;}
.h3_c01293{height:57.375000pt;}
.h4_c01293{height:57.781250pt;}
.h5_c01293{height:78.097500pt;}
.h0_c01293{height:1122.560000pt;}
.h1_c01293{height:1122.666667pt;}
.w0_c01293{width:793.760000pt;}
.w1_c01293{width:794.000000pt;}
.x0_c01293{left:0.000000pt;}
.x1_c01293{left:113.472000pt;}
}





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

.ir_c01294:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01294;src:url('chunks/assets/font_60a3578b49d9a5ae6c12fbf5.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01294;src:url('chunks/assets/font_e8cad7c3f2e125a90389c236.woff2')format("woff");}.ff2_c01294{font-family:ff2_c01294;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01294;src:url('chunks/assets/font_46f11e834bc9c17852c26b1b.woff2')format("woff");}.ff3_c01294{font-family:ff3_c01294;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01294;src:url('chunks/assets/font_0e81840b5a3da2e94e7b4bb5.woff2')format("woff");}.ff4_c01294{font-family:ff4_c01294;line-height:1.113281;font-style:normal;font-weight: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_c01294;src:url('chunks/assets/font_f91c5c262872631d83a0fe18.woff2')format("woff");}.ff5_c01294{font-family:ff5_c01294;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;}
.m0_c01294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01294{vertical-align:0.000000px;}
.ls1_c01294{letter-spacing:-0.576000px;}
.ls0_c01294{letter-spacing:0.000000px;}
.sc__c01294{text-shadow:none;}
.sc0_c01294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01294{-webkit-text-stroke:0px transparent;}
.sc0_c01294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01294{word-spacing:-20.016000px;}
.ws1_c01294{word-spacing:0.000000px;}
._5_c01294{margin-left:-4.608000px;}
._6_c01294{margin-left:-3.384000px;}
._2_c01294{margin-left:-1.224000px;}
._1_c01294{width:1.020024px;}
._4_c01294{width:2.592000px;}
._3_c01294{width:3.648024px;}
._0_c01294{width:5.040000px;}
._b_c01294{width:15.696000px;}
._a_c01294{width:16.992000px;}
._9_c01294{width:23.544000px;}
._7_c01294{width:31.032000px;}
._8_c01294{width:32.400000px;}
.fc0_c01294{color:rgb(0,0,0);}
.fs0_c01294{font-size:66.240000px;}
.fs1_c01294{font-size:72.000000px;}
.fs2_c01294{font-size:84.240000px;}
.y0_c01294{bottom:0.000000px;}
.y2_c01294{bottom:57.636000px;}
.y1_c01294{bottom:77.796000px;}
.y34_c01294{bottom:122.256000px;}
.y33_c01294{bottom:142.956000px;}
.y32_c01294{bottom:163.650000px;}
.y31_c01294{bottom:184.350000px;}
.y30_c01294{bottom:205.050000px;}
.y2f_c01294{bottom:225.750000px;}
.y2e_c01294{bottom:246.450000px;}
.y2d_c01294{bottom:267.150000px;}
.y2c_c01294{bottom:287.895000px;}
.y2b_c01294{bottom:308.595000px;}
.y2a_c01294{bottom:329.295000px;}
.y29_c01294{bottom:350.175000px;}
.y28_c01294{bottom:370.875000px;}
.y27_c01294{bottom:391.395000px;}
.y26_c01294{bottom:412.275000px;}
.y25_c01294{bottom:432.975000px;}
.y24_c01294{bottom:453.495000px;}
.y23_c01294{bottom:474.375000px;}
.y22_c01294{bottom:495.075000px;}
.y21_c01294{bottom:515.595000px;}
.y20_c01294{bottom:536.835000px;}
.y1f_c01294{bottom:560.415000px;}
.y1e_c01294{bottom:581.145000px;}
.y1d_c01294{bottom:601.845000px;}
.y1c_c01294{bottom:622.545000px;}
.y1b_c01294{bottom:643.245000px;}
.y1a_c01294{bottom:663.945000px;}
.y19_c01294{bottom:684.645000px;}
.y18_c01294{bottom:705.345000px;}
.y17_c01294{bottom:726.045000px;}
.y16_c01294{bottom:746.925000px;}
.y15_c01294{bottom:767.625000px;}
.y14_c01294{bottom:788.145000px;}
.y13_c01294{bottom:808.845000px;}
.y12_c01294{bottom:829.545000px;}
.y11_c01294{bottom:850.290000px;}
.y10_c01294{bottom:870.990000px;}
.yf_c01294{bottom:891.870000px;}
.ye_c01294{bottom:912.570000px;}
.yd_c01294{bottom:933.090000px;}
.yc_c01294{bottom:953.790000px;}
.yb_c01294{bottom:974.490000px;}
.ya_c01294{bottom:995.190000px;}
.y9_c01294{bottom:1015.890000px;}
.y8_c01294{bottom:1036.590000px;}
.y7_c01294{bottom:1057.470000px;}
.y6_c01294{bottom:1078.170000px;}
.y5_c01294{bottom:1098.690000px;}
.y4_c01294{bottom:1119.570000px;}
.y3_c01294{bottom:1140.120000px;}
.h2_c01294{height:50.229844px;}
.h3_c01294{height:64.546875px;}
.h4_c01294{height:65.003906px;}
.h5_c01294{height:75.093750px;}
.h6_c01294{height:87.859687px;}
.h0_c01294{height:1262.880000px;}
.h1_c01294{height:1263.000000px;}
.w0_c01294{width:892.980000px;}
.w1_c01294{width:893.250000px;}
.x0_c01294{left:0.000000px;}
.x2_c01294{left:127.656000px;}
.x1_c01294{left:740.490000px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls1_c01294{letter-spacing:-0.512000pt;}
.ls0_c01294{letter-spacing:0.000000pt;}
.ws0_c01294{word-spacing:-17.792000pt;}
.ws1_c01294{word-spacing:0.000000pt;}
._5_c01294{margin-left:-4.096000pt;}
._6_c01294{margin-left:-3.008000pt;}
._2_c01294{margin-left:-1.088000pt;}
._1_c01294{width:0.906688pt;}
._4_c01294{width:2.304000pt;}
._3_c01294{width:3.242688pt;}
._0_c01294{width:4.480000pt;}
._b_c01294{width:13.952000pt;}
._a_c01294{width:15.104000pt;}
._9_c01294{width:20.928000pt;}
._7_c01294{width:27.584000pt;}
._8_c01294{width:28.800000pt;}
.fs0_c01294{font-size:58.880000pt;}
.fs1_c01294{font-size:64.000000pt;}
.fs2_c01294{font-size:74.880000pt;}
.y0_c01294{bottom:0.000000pt;}
.y2_c01294{bottom:51.232000pt;}
.y1_c01294{bottom:69.152000pt;}
.y34_c01294{bottom:108.672000pt;}
.y33_c01294{bottom:127.072000pt;}
.y32_c01294{bottom:145.466667pt;}
.y31_c01294{bottom:163.866667pt;}
.y30_c01294{bottom:182.266667pt;}
.y2f_c01294{bottom:200.666667pt;}
.y2e_c01294{bottom:219.066667pt;}
.y2d_c01294{bottom:237.466667pt;}
.y2c_c01294{bottom:255.906667pt;}
.y2b_c01294{bottom:274.306667pt;}
.y2a_c01294{bottom:292.706667pt;}
.y29_c01294{bottom:311.266667pt;}
.y28_c01294{bottom:329.666667pt;}
.y27_c01294{bottom:347.906667pt;}
.y26_c01294{bottom:366.466667pt;}
.y25_c01294{bottom:384.866667pt;}
.y24_c01294{bottom:403.106667pt;}
.y23_c01294{bottom:421.666667pt;}
.y22_c01294{bottom:440.066667pt;}
.y21_c01294{bottom:458.306667pt;}
.y20_c01294{bottom:477.186667pt;}
.y1f_c01294{bottom:498.146667pt;}
.y1e_c01294{bottom:516.573333pt;}
.y1d_c01294{bottom:534.973333pt;}
.y1c_c01294{bottom:553.373333pt;}
.y1b_c01294{bottom:571.773333pt;}
.y1a_c01294{bottom:590.173333pt;}
.y19_c01294{bottom:608.573333pt;}
.y18_c01294{bottom:626.973333pt;}
.y17_c01294{bottom:645.373333pt;}
.y16_c01294{bottom:663.933333pt;}
.y15_c01294{bottom:682.333333pt;}
.y14_c01294{bottom:700.573333pt;}
.y13_c01294{bottom:718.973333pt;}
.y12_c01294{bottom:737.373333pt;}
.y11_c01294{bottom:755.813333pt;}
.y10_c01294{bottom:774.213333pt;}
.yf_c01294{bottom:792.773333pt;}
.ye_c01294{bottom:811.173333pt;}
.yd_c01294{bottom:829.413333pt;}
.yc_c01294{bottom:847.813333pt;}
.yb_c01294{bottom:866.213333pt;}
.ya_c01294{bottom:884.613333pt;}
.y9_c01294{bottom:903.013333pt;}
.y8_c01294{bottom:921.413333pt;}
.y7_c01294{bottom:939.973333pt;}
.y6_c01294{bottom:958.373333pt;}
.y5_c01294{bottom:976.613333pt;}
.y4_c01294{bottom:995.173333pt;}
.y3_c01294{bottom:1013.440000pt;}
.h2_c01294{height:44.648750pt;}
.h3_c01294{height:57.375000pt;}
.h4_c01294{height:57.781250pt;}
.h5_c01294{height:66.750000pt;}
.h6_c01294{height:78.097500pt;}
.h0_c01294{height:1122.560000pt;}
.h1_c01294{height:1122.666667pt;}
.w0_c01294{width:793.760000pt;}
.w1_c01294{width:794.000000pt;}
.x0_c01294{left:0.000000pt;}
.x2_c01294{left:113.472000pt;}
.x1_c01294{left:658.213333pt;}
}





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

.ir_c01295:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01295;src:url('chunks/assets/font_602747b0910f526cf399f6be.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01295;src:url('chunks/assets/font_d471fffe81b3227bf833cef7.woff2')format("woff");}.ff2_c01295{font-family:ff2_c01295;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01295;src:url('chunks/assets/font_fd06f45960a0352bfbe22f45.woff2')format("woff");}.ff3_c01295{font-family:ff3_c01295;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01295;src:url('chunks/assets/font_744305c040afa267cf124d1e.woff2')format("woff");}.ff4_c01295{font-family:ff4_c01295;line-height:1.104492;font-style:normal;font-weight: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_c01295;src:url('chunks/assets/font_0e81840b5a3da2e94e7b4bb5.woff2')format("woff");}.ff5_c01295{font-family:ff5_c01295;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01295{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_c01295{vertical-align:0.000000px;}
.ls1_c01295{letter-spacing:-0.576000px;}
.ls0_c01295{letter-spacing:0.000000px;}
.ls2_c01295{letter-spacing:0.144000px;}
.sc__c01295{text-shadow:none;}
.sc0_c01295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01295{-webkit-text-stroke:0px transparent;}
.sc0_c01295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01295{word-spacing:-20.016000px;}
.ws1_c01295{word-spacing:0.000000px;}
._1_c01295{margin-left:-4.392000px;}
._2_c01295{margin-left:-3.367764px;}
._0_c01295{margin-left:-1.516236px;}
._4_c01295{width:1.348236px;}
._7_c01295{width:2.543293px;}
._5_c01295{width:3.600000px;}
._3_c01295{width:5.040000px;}
._b_c01295{width:6.552000px;}
._c_c01295{width:7.731528px;}
._6_c01295{width:10.008000px;}
._a_c01295{width:11.016000px;}
._8_c01295{width:12.456000px;}
._9_c01295{width:13.624236px;}
.fc0_c01295{color:rgb(0,0,0);}
.fs0_c01295{font-size:66.240000px;}
.fs2_c01295{font-size:72.000000px;}
.fs1_c01295{font-size:84.240000px;}
.y0_c01295{bottom:0.000000px;}
.y1_c01295{bottom:77.796000px;}
.y1d_c01295{bottom:201.630000px;}
.y1c_c01295{bottom:222.510000px;}
.y1b_c01295{bottom:263.910000px;}
.y1a_c01295{bottom:284.655000px;}
.y19_c01295{bottom:325.875000px;}
.y18_c01295{bottom:346.755000px;}
.y17_c01295{bottom:388.515000px;}
.y16_c01295{bottom:494.895000px;}
.y15_c01295{bottom:536.295000px;}
.y14_c01295{bottom:598.605000px;}
.y13_c01295{bottom:619.125000px;}
.y12_c01295{bottom:639.825000px;}
.y11_c01295{bottom:681.405000px;}
.y10_c01295{bottom:702.105000px;}
.yf_c01295{bottom:743.325000px;}
.ye_c01295{bottom:764.205000px;}
.yd_c01295{bottom:805.605000px;}
.yc_c01295{bottom:826.305000px;}
.yb_c01295{bottom:867.570000px;}
.ya_c01295{bottom:888.450000px;}
.y9_c01295{bottom:908.970000px;}
.y8_c01295{bottom:950.550000px;}
.y7_c01295{bottom:971.070000px;}
.y6_c01295{bottom:1012.470000px;}
.y5_c01295{bottom:1033.170000px;}
.y4_c01295{bottom:1074.390000px;}
.y3_c01295{bottom:1095.270000px;}
.y2_c01295{bottom:1137.240000px;}
.h2_c01295{height:50.229844px;}
.h4_c01295{height:64.546875px;}
.h5_c01295{height:65.003906px;}
.h3_c01295{height:87.859687px;}
.h0_c01295{height:1262.880000px;}
.h1_c01295{height:1263.000000px;}
.w0_c01295{width:892.980000px;}
.w1_c01295{width:893.250000px;}
.x0_c01295{left:0.000000px;}
.x1_c01295{left:127.656000px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls1_c01295{letter-spacing:-0.512000pt;}
.ls0_c01295{letter-spacing:0.000000pt;}
.ls2_c01295{letter-spacing:0.128000pt;}
.ws0_c01295{word-spacing:-17.792000pt;}
.ws1_c01295{word-spacing:0.000000pt;}
._1_c01295{margin-left:-3.904000pt;}
._2_c01295{margin-left:-2.993568pt;}
._0_c01295{margin-left:-1.347765pt;}
._4_c01295{width:1.198432pt;}
._7_c01295{width:2.260705pt;}
._5_c01295{width:3.200000pt;}
._3_c01295{width:4.480000pt;}
._b_c01295{width:5.824000pt;}
._c_c01295{width:6.872470pt;}
._6_c01295{width:8.896000pt;}
._a_c01295{width:9.792000pt;}
._8_c01295{width:11.072000pt;}
._9_c01295{width:12.110432pt;}
.fs0_c01295{font-size:58.880000pt;}
.fs2_c01295{font-size:64.000000pt;}
.fs1_c01295{font-size:74.880000pt;}
.y0_c01295{bottom:0.000000pt;}
.y1_c01295{bottom:69.152000pt;}
.y1d_c01295{bottom:179.226667pt;}
.y1c_c01295{bottom:197.786667pt;}
.y1b_c01295{bottom:234.586667pt;}
.y1a_c01295{bottom:253.026667pt;}
.y19_c01295{bottom:289.666667pt;}
.y18_c01295{bottom:308.226667pt;}
.y17_c01295{bottom:345.346667pt;}
.y16_c01295{bottom:439.906667pt;}
.y15_c01295{bottom:476.706667pt;}
.y14_c01295{bottom:532.093333pt;}
.y13_c01295{bottom:550.333333pt;}
.y12_c01295{bottom:568.733333pt;}
.y11_c01295{bottom:605.693333pt;}
.y10_c01295{bottom:624.093333pt;}
.yf_c01295{bottom:660.733333pt;}
.ye_c01295{bottom:679.293333pt;}
.yd_c01295{bottom:716.093333pt;}
.yc_c01295{bottom:734.493333pt;}
.yb_c01295{bottom:771.173333pt;}
.ya_c01295{bottom:789.733333pt;}
.y9_c01295{bottom:807.973333pt;}
.y8_c01295{bottom:844.933333pt;}
.y7_c01295{bottom:863.173333pt;}
.y6_c01295{bottom:899.973333pt;}
.y5_c01295{bottom:918.373333pt;}
.y4_c01295{bottom:955.013333pt;}
.y3_c01295{bottom:973.573333pt;}
.y2_c01295{bottom:1010.880000pt;}
.h2_c01295{height:44.648750pt;}
.h4_c01295{height:57.375000pt;}
.h5_c01295{height:57.781250pt;}
.h3_c01295{height:78.097500pt;}
.h0_c01295{height:1122.560000pt;}
.h1_c01295{height:1122.666667pt;}
.w0_c01295{width:793.760000pt;}
.w1_c01295{width:794.000000pt;}
.x0_c01295{left:0.000000pt;}
.x1_c01295{left:113.472000pt;}
}





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

.ir_c01296:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01296;src:url('chunks/assets/font_1a88051d46f5bb58bde303e8.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01296;src:url('chunks/assets/font_020869dcf86eebd5a60e8d60.woff2')format("woff");}.ff2_c01296{font-family:ff2_c01296;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01296;src:url('chunks/assets/font_a82b21688ced3f481db1620a.woff2')format("woff");}.ff3_c01296{font-family:ff3_c01296;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01296;src:url('chunks/assets/font_89fc0f71bd015d74775b4321.woff2')format("woff");}.ff4_c01296{font-family:ff4_c01296;line-height:1.104492;font-style:normal;font-weight: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_c01296;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff5_c01296{font-family:ff5_c01296;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01296{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_c01296{vertical-align:0.000000px;}
.ls2_c01296{letter-spacing:-0.576000px;}
.ls1_c01296{letter-spacing:0.000000px;}
.ls0_c01296{letter-spacing:0.216000px;}
.sc__c01296{text-shadow:none;}
.sc0_c01296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01296{-webkit-text-stroke:0px transparent;}
.sc0_c01296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01296{word-spacing:-20.016000px;}
.ws1_c01296{word-spacing:0.000000px;}
._9_c01296{margin-left:-4.176000px;}
._8_c01296{margin-left:-3.096000px;}
._0_c01296{margin-left:-1.095036px;}
._3_c01296{width:1.182072px;}
._c_c01296{width:2.442623px;}
._1_c01296{width:3.456000px;}
._2_c01296{width:4.692000px;}
._4_c01296{width:6.312000px;}
._d_c01296{width:8.136000px;}
._b_c01296{width:12.687036px;}
._a_c01296{width:13.896000px;}
._6_c01296{width:16.356000px;}
._7_c01296{width:17.367036px;}
._5_c01296{width:18.576000px;}
.fc0_c01296{color:rgb(0,0,0);}
.fs0_c01296{font-size:66.240000px;}
.fs2_c01296{font-size:72.000000px;}
.fs1_c01296{font-size:84.240000px;}
.y0_c01296{bottom:0.000000px;}
.y2_c01296{bottom:57.636000px;}
.y1_c01296{bottom:77.796000px;}
.y34_c01296{bottom:115.596000px;}
.y33_c01296{bottom:136.296000px;}
.y32_c01296{bottom:156.810000px;}
.y31_c01296{bottom:177.510000px;}
.y30_c01296{bottom:198.210000px;}
.y2f_c01296{bottom:219.090000px;}
.y2e_c01296{bottom:239.610000px;}
.y2d_c01296{bottom:260.130000px;}
.y2c_c01296{bottom:281.010000px;}
.y2b_c01296{bottom:301.755000px;}
.y2a_c01296{bottom:322.275000px;}
.y29_c01296{bottom:343.695000px;}
.y28_c01296{bottom:367.815000px;}
.y27_c01296{bottom:391.395000px;}
.y26_c01296{bottom:412.095000px;}
.y25_c01296{bottom:432.795000px;}
.y24_c01296{bottom:453.495000px;}
.y23_c01296{bottom:474.195000px;}
.y22_c01296{bottom:494.895000px;}
.y21_c01296{bottom:515.595000px;}
.y20_c01296{bottom:536.295000px;}
.y1f_c01296{bottom:556.995000px;}
.y1e_c01296{bottom:577.725000px;}
.y1d_c01296{bottom:598.425000px;}
.y1c_c01296{bottom:619.125000px;}
.y1b_c01296{bottom:640.005000px;}
.y1a_c01296{bottom:660.525000px;}
.y19_c01296{bottom:681.225000px;}
.y18_c01296{bottom:701.925000px;}
.y17_c01296{bottom:722.625000px;}
.y16_c01296{bottom:743.325000px;}
.y15_c01296{bottom:764.205000px;}
.y14_c01296{bottom:784.905000px;}
.y13_c01296{bottom:805.425000px;}
.y12_c01296{bottom:826.305000px;}
.y11_c01296{bottom:847.005000px;}
.y10_c01296{bottom:867.570000px;}
.yf_c01296{bottom:888.270000px;}
.ye_c01296{bottom:908.970000px;}
.yd_c01296{bottom:929.670000px;}
.yc_c01296{bottom:950.370000px;}
.yb_c01296{bottom:971.070000px;}
.ya_c01296{bottom:991.590000px;}
.y9_c01296{bottom:1012.470000px;}
.y8_c01296{bottom:1033.170000px;}
.y7_c01296{bottom:1053.690000px;}
.y6_c01296{bottom:1074.570000px;}
.y5_c01296{bottom:1095.270000px;}
.y4_c01296{bottom:1115.790000px;}
.y3_c01296{bottom:1137.240000px;}
.h2_c01296{height:50.229844px;}
.h4_c01296{height:64.546875px;}
.h5_c01296{height:65.003906px;}
.h3_c01296{height:87.859687px;}
.h0_c01296{height:1262.880000px;}
.h1_c01296{height:1263.000000px;}
.w0_c01296{width:892.980000px;}
.w1_c01296{width:893.250000px;}
.x0_c01296{left:0.000000px;}
.x2_c01296{left:127.656000px;}
.x1_c01296{left:740.490000px;}
@media print{
.v0_c01296{vertical-align:0.000000pt;}
.ls2_c01296{letter-spacing:-0.512000pt;}
.ls1_c01296{letter-spacing:0.000000pt;}
.ls0_c01296{letter-spacing:0.192000pt;}
.ws0_c01296{word-spacing:-17.792000pt;}
.ws1_c01296{word-spacing:0.000000pt;}
._9_c01296{margin-left:-3.712000pt;}
._8_c01296{margin-left:-2.752000pt;}
._0_c01296{margin-left:-0.973365pt;}
._3_c01296{width:1.050730pt;}
._c_c01296{width:2.171220pt;}
._1_c01296{width:3.072000pt;}
._2_c01296{width:4.170667pt;}
._4_c01296{width:5.610667pt;}
._d_c01296{width:7.232000pt;}
._b_c01296{width:11.277365pt;}
._a_c01296{width:12.352000pt;}
._6_c01296{width:14.538667pt;}
._7_c01296{width:15.437365pt;}
._5_c01296{width:16.512000pt;}
.fs0_c01296{font-size:58.880000pt;}
.fs2_c01296{font-size:64.000000pt;}
.fs1_c01296{font-size:74.880000pt;}
.y0_c01296{bottom:0.000000pt;}
.y2_c01296{bottom:51.232000pt;}
.y1_c01296{bottom:69.152000pt;}
.y34_c01296{bottom:102.752000pt;}
.y33_c01296{bottom:121.152000pt;}
.y32_c01296{bottom:139.386667pt;}
.y31_c01296{bottom:157.786667pt;}
.y30_c01296{bottom:176.186667pt;}
.y2f_c01296{bottom:194.746667pt;}
.y2e_c01296{bottom:212.986667pt;}
.y2d_c01296{bottom:231.226667pt;}
.y2c_c01296{bottom:249.786667pt;}
.y2b_c01296{bottom:268.226667pt;}
.y2a_c01296{bottom:286.466667pt;}
.y29_c01296{bottom:305.506667pt;}
.y28_c01296{bottom:326.946667pt;}
.y27_c01296{bottom:347.906667pt;}
.y26_c01296{bottom:366.306667pt;}
.y25_c01296{bottom:384.706667pt;}
.y24_c01296{bottom:403.106667pt;}
.y23_c01296{bottom:421.506667pt;}
.y22_c01296{bottom:439.906667pt;}
.y21_c01296{bottom:458.306667pt;}
.y20_c01296{bottom:476.706667pt;}
.y1f_c01296{bottom:495.106667pt;}
.y1e_c01296{bottom:513.533333pt;}
.y1d_c01296{bottom:531.933333pt;}
.y1c_c01296{bottom:550.333333pt;}
.y1b_c01296{bottom:568.893333pt;}
.y1a_c01296{bottom:587.133333pt;}
.y19_c01296{bottom:605.533333pt;}
.y18_c01296{bottom:623.933333pt;}
.y17_c01296{bottom:642.333333pt;}
.y16_c01296{bottom:660.733333pt;}
.y15_c01296{bottom:679.293333pt;}
.y14_c01296{bottom:697.693333pt;}
.y13_c01296{bottom:715.933333pt;}
.y12_c01296{bottom:734.493333pt;}
.y11_c01296{bottom:752.893333pt;}
.y10_c01296{bottom:771.173333pt;}
.yf_c01296{bottom:789.573333pt;}
.ye_c01296{bottom:807.973333pt;}
.yd_c01296{bottom:826.373333pt;}
.yc_c01296{bottom:844.773333pt;}
.yb_c01296{bottom:863.173333pt;}
.ya_c01296{bottom:881.413333pt;}
.y9_c01296{bottom:899.973333pt;}
.y8_c01296{bottom:918.373333pt;}
.y7_c01296{bottom:936.613333pt;}
.y6_c01296{bottom:955.173333pt;}
.y5_c01296{bottom:973.573333pt;}
.y4_c01296{bottom:991.813333pt;}
.y3_c01296{bottom:1010.880000pt;}
.h2_c01296{height:44.648750pt;}
.h4_c01296{height:57.375000pt;}
.h5_c01296{height:57.781250pt;}
.h3_c01296{height:78.097500pt;}
.h0_c01296{height:1122.560000pt;}
.h1_c01296{height:1122.666667pt;}
.w0_c01296{width:793.760000pt;}
.w1_c01296{width:794.000000pt;}
.x0_c01296{left:0.000000pt;}
.x2_c01296{left:113.472000pt;}
.x1_c01296{left:658.213333pt;}
}





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

.ir_c01297:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01297;src:url('chunks/assets/font_e8cb334abc2600ac07005ddf.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01297;src:url('chunks/assets/font_a07b24b344e53b0d7b670861.woff2')format("woff");}.ff2_c01297{font-family:ff2_c01297;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01297;src:url('chunks/assets/font_551917b286dd01178dfaea7e.woff2')format("woff");}.ff3_c01297{font-family:ff3_c01297;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01297;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff4_c01297{font-family:ff4_c01297;line-height:1.113281;font-style:normal;font-weight: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_c01297;src:url('chunks/assets/font_149881c20a98bc21c7ee2efd.woff2')format("woff");}.ff5_c01297{font-family:ff5_c01297;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;}
.m0_c01297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01297{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_c01297{vertical-align:0.000000px;}
.ls2_c01297{letter-spacing:0.000000px;}
.ls1_c01297{letter-spacing:0.216000px;}
.ls0_c01297{letter-spacing:0.288000px;}
.sc__c01297{text-shadow:none;}
.sc0_c01297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01297{-webkit-text-stroke:0px transparent;}
.sc0_c01297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01297{word-spacing:-20.304000px;}
.ws0_c01297{word-spacing:-20.016000px;}
.ws2_c01297{word-spacing:0.000000px;}
._8_c01297{margin-left:-4.007952px;}
._7_c01297{margin-left:-2.664000px;}
._2_c01297{margin-left:-1.068000px;}
._5_c01297{width:1.127976px;}
._3_c01297{width:4.392000px;}
._4_c01297{width:6.348000px;}
._9_c01297{width:21.744000px;}
._6_c01297{width:33.612013px;}
._1_c01297{width:36.144000px;}
._0_c01297{width:37.584000px;}
.fc0_c01297{color:rgb(0,0,0);}
.fs0_c01297{font-size:66.240000px;}
.fs1_c01297{font-size:72.000000px;}
.fs2_c01297{font-size:84.240000px;}
.y0_c01297{bottom:0.000000px;}
.y2_c01297{bottom:57.636000px;}
.y1_c01297{bottom:77.796000px;}
.y33_c01297{bottom:115.956000px;}
.y32_c01297{bottom:140.076000px;}
.y31_c01297{bottom:164.190000px;}
.y30_c01297{bottom:188.310000px;}
.y2f_c01297{bottom:212.430000px;}
.y2e_c01297{bottom:236.730000px;}
.y2d_c01297{bottom:260.850000px;}
.y2c_c01297{bottom:284.475000px;}
.y2b_c01297{bottom:305.175000px;}
.y2a_c01297{bottom:325.875000px;}
.y29_c01297{bottom:346.575000px;}
.y28_c01297{bottom:367.275000px;}
.y27_c01297{bottom:387.975000px;}
.y26_c01297{bottom:408.675000px;}
.y25_c01297{bottom:429.375000px;}
.y24_c01297{bottom:450.075000px;}
.y23_c01297{bottom:470.775000px;}
.y22_c01297{bottom:491.655000px;}
.y21_c01297{bottom:512.175000px;}
.y20_c01297{bottom:532.875000px;}
.y1f_c01297{bottom:553.755000px;}
.y1e_c01297{bottom:574.305000px;}
.y1d_c01297{bottom:595.005000px;}
.y1c_c01297{bottom:615.705000px;}
.y1b_c01297{bottom:636.225000px;}
.y1a_c01297{bottom:656.925000px;}
.y19_c01297{bottom:677.625000px;}
.y18_c01297{bottom:698.325000px;}
.y17_c01297{bottom:719.745000px;}
.y16_c01297{bottom:743.865000px;}
.y15_c01297{bottom:767.445000px;}
.y14_c01297{bottom:788.145000px;}
.y13_c01297{bottom:808.845000px;}
.y12_c01297{bottom:829.725000px;}
.y11_c01297{bottom:850.290000px;}
.y10_c01297{bottom:870.990000px;}
.yf_c01297{bottom:891.690000px;}
.ye_c01297{bottom:912.390000px;}
.yd_c01297{bottom:933.090000px;}
.yc_c01297{bottom:953.970000px;}
.yb_c01297{bottom:974.490000px;}
.ya_c01297{bottom:995.190000px;}
.y9_c01297{bottom:1015.890000px;}
.y8_c01297{bottom:1036.590000px;}
.y7_c01297{bottom:1057.290000px;}
.y6_c01297{bottom:1078.170000px;}
.y5_c01297{bottom:1098.690000px;}
.y4_c01297{bottom:1119.570000px;}
.y3_c01297{bottom:1140.300000px;}
.h2_c01297{height:50.229844px;}
.h5_c01297{height:64.371094px;}
.h3_c01297{height:64.546875px;}
.h4_c01297{height:65.003906px;}
.h6_c01297{height:75.093750px;}
.h7_c01297{height:87.859687px;}
.h0_c01297{height:1262.880000px;}
.h1_c01297{height:1263.000000px;}
.w0_c01297{width:892.980000px;}
.w1_c01297{width:893.250000px;}
.x0_c01297{left:0.000000px;}
.x1_c01297{left:127.656000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls2_c01297{letter-spacing:0.000000pt;}
.ls1_c01297{letter-spacing:0.192000pt;}
.ls0_c01297{letter-spacing:0.256000pt;}
.ws1_c01297{word-spacing:-18.048000pt;}
.ws0_c01297{word-spacing:-17.792000pt;}
.ws2_c01297{word-spacing:0.000000pt;}
._8_c01297{margin-left:-3.562624pt;}
._7_c01297{margin-left:-2.368000pt;}
._2_c01297{margin-left:-0.949333pt;}
._5_c01297{width:1.002645pt;}
._3_c01297{width:3.904000pt;}
._4_c01297{width:5.642667pt;}
._9_c01297{width:19.328000pt;}
._6_c01297{width:29.877345pt;}
._1_c01297{width:32.128000pt;}
._0_c01297{width:33.408000pt;}
.fs0_c01297{font-size:58.880000pt;}
.fs1_c01297{font-size:64.000000pt;}
.fs2_c01297{font-size:74.880000pt;}
.y0_c01297{bottom:0.000000pt;}
.y2_c01297{bottom:51.232000pt;}
.y1_c01297{bottom:69.152000pt;}
.y33_c01297{bottom:103.072000pt;}
.y32_c01297{bottom:124.512000pt;}
.y31_c01297{bottom:145.946667pt;}
.y30_c01297{bottom:167.386667pt;}
.y2f_c01297{bottom:188.826667pt;}
.y2e_c01297{bottom:210.426667pt;}
.y2d_c01297{bottom:231.866667pt;}
.y2c_c01297{bottom:252.866667pt;}
.y2b_c01297{bottom:271.266667pt;}
.y2a_c01297{bottom:289.666667pt;}
.y29_c01297{bottom:308.066667pt;}
.y28_c01297{bottom:326.466667pt;}
.y27_c01297{bottom:344.866667pt;}
.y26_c01297{bottom:363.266667pt;}
.y25_c01297{bottom:381.666667pt;}
.y24_c01297{bottom:400.066667pt;}
.y23_c01297{bottom:418.466667pt;}
.y22_c01297{bottom:437.026667pt;}
.y21_c01297{bottom:455.266667pt;}
.y20_c01297{bottom:473.666667pt;}
.y1f_c01297{bottom:492.226667pt;}
.y1e_c01297{bottom:510.493333pt;}
.y1d_c01297{bottom:528.893333pt;}
.y1c_c01297{bottom:547.293333pt;}
.y1b_c01297{bottom:565.533333pt;}
.y1a_c01297{bottom:583.933333pt;}
.y19_c01297{bottom:602.333333pt;}
.y18_c01297{bottom:620.733333pt;}
.y17_c01297{bottom:639.773333pt;}
.y16_c01297{bottom:661.213333pt;}
.y15_c01297{bottom:682.173333pt;}
.y14_c01297{bottom:700.573333pt;}
.y13_c01297{bottom:718.973333pt;}
.y12_c01297{bottom:737.533333pt;}
.y11_c01297{bottom:755.813333pt;}
.y10_c01297{bottom:774.213333pt;}
.yf_c01297{bottom:792.613333pt;}
.ye_c01297{bottom:811.013333pt;}
.yd_c01297{bottom:829.413333pt;}
.yc_c01297{bottom:847.973333pt;}
.yb_c01297{bottom:866.213333pt;}
.ya_c01297{bottom:884.613333pt;}
.y9_c01297{bottom:903.013333pt;}
.y8_c01297{bottom:921.413333pt;}
.y7_c01297{bottom:939.813333pt;}
.y6_c01297{bottom:958.373333pt;}
.y5_c01297{bottom:976.613333pt;}
.y4_c01297{bottom:995.173333pt;}
.y3_c01297{bottom:1013.600000pt;}
.h2_c01297{height:44.648750pt;}
.h5_c01297{height:57.218750pt;}
.h3_c01297{height:57.375000pt;}
.h4_c01297{height:57.781250pt;}
.h6_c01297{height:66.750000pt;}
.h7_c01297{height:78.097500pt;}
.h0_c01297{height:1122.560000pt;}
.h1_c01297{height:1122.666667pt;}
.w0_c01297{width:793.760000pt;}
.w1_c01297{width:794.000000pt;}
.x0_c01297{left:0.000000pt;}
.x1_c01297{left:113.472000pt;}
}





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

.ir_c01298:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01298;src:url('chunks/assets/font_dbea620caa5d03e496791eab.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01298;src:url('chunks/assets/font_f32ca3a5cadfc8be499e4187.woff2')format("woff");}.ff2_c01298{font-family:ff2_c01298;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01298;src:url('chunks/assets/font_a1cf98b7523e48e94e94dc7e.woff2')format("woff");}.ff3_c01298{font-family:ff3_c01298;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01298;src:url('chunks/assets/font_bee4bd9c44ceb2bf23500b26.woff2')format("woff");}.ff4_c01298{font-family:ff4_c01298;line-height:1.104492;font-style:normal;font-weight: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_c01298;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff5_c01298{font-family:ff5_c01298;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01298{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_c01298{vertical-align:0.000000px;}
.ls1_c01298{letter-spacing:-0.576000px;}
.ls0_c01298{letter-spacing:0.000000px;}
.sc__c01298{text-shadow:none;}
.sc0_c01298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01298{-webkit-text-stroke:0px transparent;}
.sc0_c01298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01298{word-spacing:-20.016000px;}
.ws1_c01298{word-spacing:0.000000px;}
._1_c01298{margin-left:-3.672000px;}
._5_c01298{margin-left:-2.141785px;}
._0_c01298{margin-left:-1.095036px;}
._2_c01298{width:1.251036px;}
._3_c01298{width:3.600000px;}
._4_c01298{width:4.928964px;}
._6_c01298{width:13.392000px;}
._9_c01298{width:15.264000px;}
._8_c01298{width:16.416000px;}
._b_c01298{width:18.000000px;}
._a_c01298{width:33.912000px;}
._7_c01298{width:49.320000px;}
.fc0_c01298{color:rgb(0,0,0);}
.fs0_c01298{font-size:66.240000px;}
.fs2_c01298{font-size:72.000000px;}
.fs1_c01298{font-size:84.240000px;}
.y0_c01298{bottom:0.000000px;}
.y2_c01298{bottom:57.636000px;}
.y1_c01298{bottom:77.796000px;}
.y33_c01298{bottom:139.536000px;}
.y32_c01298{bottom:160.410000px;}
.y31_c01298{bottom:181.110000px;}
.y30_c01298{bottom:201.630000px;}
.y2f_c01298{bottom:222.510000px;}
.y2e_c01298{bottom:243.210000px;}
.y2d_c01298{bottom:263.910000px;}
.y2c_c01298{bottom:284.475000px;}
.y2b_c01298{bottom:305.715000px;}
.y2a_c01298{bottom:329.475000px;}
.y29_c01298{bottom:350.175000px;}
.y28_c01298{bottom:370.875000px;}
.y27_c01298{bottom:391.395000px;}
.y26_c01298{bottom:412.095000px;}
.y25_c01298{bottom:432.795000px;}
.y24_c01298{bottom:453.495000px;}
.y23_c01298{bottom:474.195000px;}
.y22_c01298{bottom:494.895000px;}
.y21_c01298{bottom:515.775000px;}
.y20_c01298{bottom:536.295000px;}
.y1f_c01298{bottom:556.995000px;}
.y1e_c01298{bottom:577.725000px;}
.y1d_c01298{bottom:598.425000px;}
.y1c_c01298{bottom:619.125000px;}
.y1b_c01298{bottom:639.825000px;}
.y1a_c01298{bottom:660.705000px;}
.y19_c01298{bottom:681.405000px;}
.y18_c01298{bottom:701.925000px;}
.y17_c01298{bottom:722.625000px;}
.y16_c01298{bottom:743.505000px;}
.y15_c01298{bottom:764.025000px;}
.y14_c01298{bottom:784.905000px;}
.y13_c01298{bottom:805.605000px;}
.y12_c01298{bottom:826.125000px;}
.y11_c01298{bottom:847.005000px;}
.y10_c01298{bottom:867.750000px;}
.yf_c01298{bottom:888.270000px;}
.ye_c01298{bottom:909.150000px;}
.yd_c01298{bottom:929.850000px;}
.yc_c01298{bottom:950.370000px;}
.yb_c01298{bottom:971.070000px;}
.ya_c01298{bottom:991.590000px;}
.y9_c01298{bottom:1012.470000px;}
.y8_c01298{bottom:1033.170000px;}
.y7_c01298{bottom:1053.690000px;}
.y6_c01298{bottom:1074.390000px;}
.y5_c01298{bottom:1095.270000px;}
.y4_c01298{bottom:1115.790000px;}
.y3_c01298{bottom:1137.240000px;}
.h2_c01298{height:50.229844px;}
.h6_c01298{height:64.371094px;}
.h4_c01298{height:64.546875px;}
.h5_c01298{height:65.003906px;}
.h3_c01298{height:87.859687px;}
.h0_c01298{height:1262.880000px;}
.h1_c01298{height:1263.000000px;}
.w0_c01298{width:892.980000px;}
.w1_c01298{width:893.250000px;}
.x0_c01298{left:0.000000px;}
.x2_c01298{left:127.656000px;}
.x1_c01298{left:740.490000px;}
@media print{
.v0_c01298{vertical-align:0.000000pt;}
.ls1_c01298{letter-spacing:-0.512000pt;}
.ls0_c01298{letter-spacing:0.000000pt;}
.ws0_c01298{word-spacing:-17.792000pt;}
.ws1_c01298{word-spacing:0.000000pt;}
._1_c01298{margin-left:-3.264000pt;}
._5_c01298{margin-left:-1.903809pt;}
._0_c01298{margin-left:-0.973365pt;}
._2_c01298{width:1.112032pt;}
._3_c01298{width:3.200000pt;}
._4_c01298{width:4.381302pt;}
._6_c01298{width:11.904000pt;}
._9_c01298{width:13.568000pt;}
._8_c01298{width:14.592000pt;}
._b_c01298{width:16.000000pt;}
._a_c01298{width:30.144000pt;}
._7_c01298{width:43.840000pt;}
.fs0_c01298{font-size:58.880000pt;}
.fs2_c01298{font-size:64.000000pt;}
.fs1_c01298{font-size:74.880000pt;}
.y0_c01298{bottom:0.000000pt;}
.y2_c01298{bottom:51.232000pt;}
.y1_c01298{bottom:69.152000pt;}
.y33_c01298{bottom:124.032000pt;}
.y32_c01298{bottom:142.586667pt;}
.y31_c01298{bottom:160.986667pt;}
.y30_c01298{bottom:179.226667pt;}
.y2f_c01298{bottom:197.786667pt;}
.y2e_c01298{bottom:216.186667pt;}
.y2d_c01298{bottom:234.586667pt;}
.y2c_c01298{bottom:252.866667pt;}
.y2b_c01298{bottom:271.746667pt;}
.y2a_c01298{bottom:292.866667pt;}
.y29_c01298{bottom:311.266667pt;}
.y28_c01298{bottom:329.666667pt;}
.y27_c01298{bottom:347.906667pt;}
.y26_c01298{bottom:366.306667pt;}
.y25_c01298{bottom:384.706667pt;}
.y24_c01298{bottom:403.106667pt;}
.y23_c01298{bottom:421.506667pt;}
.y22_c01298{bottom:439.906667pt;}
.y21_c01298{bottom:458.466667pt;}
.y20_c01298{bottom:476.706667pt;}
.y1f_c01298{bottom:495.106667pt;}
.y1e_c01298{bottom:513.533333pt;}
.y1d_c01298{bottom:531.933333pt;}
.y1c_c01298{bottom:550.333333pt;}
.y1b_c01298{bottom:568.733333pt;}
.y1a_c01298{bottom:587.293333pt;}
.y19_c01298{bottom:605.693333pt;}
.y18_c01298{bottom:623.933333pt;}
.y17_c01298{bottom:642.333333pt;}
.y16_c01298{bottom:660.893333pt;}
.y15_c01298{bottom:679.133333pt;}
.y14_c01298{bottom:697.693333pt;}
.y13_c01298{bottom:716.093333pt;}
.y12_c01298{bottom:734.333333pt;}
.y11_c01298{bottom:752.893333pt;}
.y10_c01298{bottom:771.333333pt;}
.yf_c01298{bottom:789.573333pt;}
.ye_c01298{bottom:808.133333pt;}
.yd_c01298{bottom:826.533333pt;}
.yc_c01298{bottom:844.773333pt;}
.yb_c01298{bottom:863.173333pt;}
.ya_c01298{bottom:881.413333pt;}
.y9_c01298{bottom:899.973333pt;}
.y8_c01298{bottom:918.373333pt;}
.y7_c01298{bottom:936.613333pt;}
.y6_c01298{bottom:955.013333pt;}
.y5_c01298{bottom:973.573333pt;}
.y4_c01298{bottom:991.813333pt;}
.y3_c01298{bottom:1010.880000pt;}
.h2_c01298{height:44.648750pt;}
.h6_c01298{height:57.218750pt;}
.h4_c01298{height:57.375000pt;}
.h5_c01298{height:57.781250pt;}
.h3_c01298{height:78.097500pt;}
.h0_c01298{height:1122.560000pt;}
.h1_c01298{height:1122.666667pt;}
.w0_c01298{width:793.760000pt;}
.w1_c01298{width:794.000000pt;}
.x0_c01298{left:0.000000pt;}
.x2_c01298{left:113.472000pt;}
.x1_c01298{left:658.213333pt;}
}





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

.ir_c01299:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01299;src:url('chunks/assets/font_7248a18c0fce9c8d94f985b7.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01299;src:url('chunks/assets/font_5e460a02ffb30e31a8c11805.woff2')format("woff");}.ff2_c01299{font-family:ff2_c01299;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01299;src:url('chunks/assets/font_28deea1da3516672ccd977a7.woff2')format("woff");}.ff3_c01299{font-family:ff3_c01299;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01299;src:url('chunks/assets/font_f1d05014617a2a67fff04045.woff2')format("woff");}.ff4_c01299{font-family:ff4_c01299;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01299{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_c01299{vertical-align:0.000000px;}
.ls2_c01299{letter-spacing:-0.576000px;}
.ls0_c01299{letter-spacing:0.000000px;}
.ls1_c01299{letter-spacing:0.216000px;}
.sc__c01299{text-shadow:none;}
.sc0_c01299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01299{-webkit-text-stroke:0px transparent;}
.sc0_c01299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01299{word-spacing:-20.016000px;}
.ws1_c01299{word-spacing:0.000000px;}
._d_c01299{margin-left:-4.775976px;}
._8_c01299{margin-left:-3.456000px;}
._1_c01299{margin-left:-1.296000px;}
._2_c01299{width:1.080000px;}
._e_c01299{width:2.363976px;}
._7_c01299{width:4.788000px;}
._6_c01299{width:5.964000px;}
._5_c01299{width:7.560000px;}
._4_c01299{width:9.216000px;}
._3_c01299{width:10.296000px;}
._9_c01299{width:12.024000px;}
._a_c01299{width:14.112000px;}
._c_c01299{width:15.336000px;}
._b_c01299{width:16.620000px;}
._0_c01299{width:21.960000px;}
.fc0_c01299{color:rgb(0,0,0);}
.fs0_c01299{font-size:66.240000px;}
.fs1_c01299{font-size:72.000000px;}
.y0_c01299{bottom:0.000000px;}
.y2_c01299{bottom:57.636000px;}
.y1_c01299{bottom:77.796000px;}
.y33_c01299{bottom:146.376000px;}
.y32_c01299{bottom:167.070000px;}
.y31_c01299{bottom:187.770000px;}
.y30_c01299{bottom:208.470000px;}
.y2f_c01299{bottom:229.170000px;}
.y2e_c01299{bottom:249.870000px;}
.y2d_c01299{bottom:270.570000px;}
.y2c_c01299{bottom:291.315000px;}
.y2b_c01299{bottom:312.015000px;}
.y2a_c01299{bottom:332.715000px;}
.y29_c01299{bottom:353.415000px;}
.y28_c01299{bottom:374.115000px;}
.y27_c01299{bottom:394.815000px;}
.y26_c01299{bottom:415.515000px;}
.y25_c01299{bottom:436.395000px;}
.y24_c01299{bottom:456.915000px;}
.y23_c01299{bottom:477.795000px;}
.y22_c01299{bottom:498.315000px;}
.y21_c01299{bottom:519.015000px;}
.y20_c01299{bottom:539.715000px;}
.y1f_c01299{bottom:560.415000px;}
.y1e_c01299{bottom:581.145000px;}
.y1d_c01299{bottom:602.025000px;}
.y1c_c01299{bottom:622.545000px;}
.y1b_c01299{bottom:643.425000px;}
.y1a_c01299{bottom:664.125000px;}
.y19_c01299{bottom:684.645000px;}
.y18_c01299{bottom:705.345000px;}
.y17_c01299{bottom:726.045000px;}
.y16_c01299{bottom:746.745000px;}
.y15_c01299{bottom:767.445000px;}
.y14_c01299{bottom:788.325000px;}
.y13_c01299{bottom:808.845000px;}
.y12_c01299{bottom:829.545000px;}
.y11_c01299{bottom:850.470000px;}
.y10_c01299{bottom:871.170000px;}
.yf_c01299{bottom:891.690000px;}
.ye_c01299{bottom:912.390000px;}
.yd_c01299{bottom:933.090000px;}
.yc_c01299{bottom:953.790000px;}
.yb_c01299{bottom:974.490000px;}
.ya_c01299{bottom:995.190000px;}
.y9_c01299{bottom:1016.070000px;}
.y8_c01299{bottom:1036.770000px;}
.y7_c01299{bottom:1057.290000px;}
.y6_c01299{bottom:1078.170000px;}
.y5_c01299{bottom:1098.870000px;}
.y4_c01299{bottom:1119.390000px;}
.y3_c01299{bottom:1140.120000px;}
.h2_c01299{height:50.229844px;}
.h3_c01299{height:64.546875px;}
.h4_c01299{height:65.003906px;}
.h0_c01299{height:1262.880000px;}
.h1_c01299{height:1263.000000px;}
.w0_c01299{width:892.980000px;}
.w1_c01299{width:893.250000px;}
.x0_c01299{left:0.000000px;}
.x1_c01299{left:127.656000px;}
@media print{
.v0_c01299{vertical-align:0.000000pt;}
.ls2_c01299{letter-spacing:-0.512000pt;}
.ls0_c01299{letter-spacing:0.000000pt;}
.ls1_c01299{letter-spacing:0.192000pt;}
.ws0_c01299{word-spacing:-17.792000pt;}
.ws1_c01299{word-spacing:0.000000pt;}
._d_c01299{margin-left:-4.245312pt;}
._8_c01299{margin-left:-3.072000pt;}
._1_c01299{margin-left:-1.152000pt;}
._2_c01299{width:0.960000pt;}
._e_c01299{width:2.101312pt;}
._7_c01299{width:4.256000pt;}
._6_c01299{width:5.301333pt;}
._5_c01299{width:6.720000pt;}
._4_c01299{width:8.192000pt;}
._3_c01299{width:9.152000pt;}
._9_c01299{width:10.688000pt;}
._a_c01299{width:12.544000pt;}
._c_c01299{width:13.632000pt;}
._b_c01299{width:14.773333pt;}
._0_c01299{width:19.520000pt;}
.fs0_c01299{font-size:58.880000pt;}
.fs1_c01299{font-size:64.000000pt;}
.y0_c01299{bottom:0.000000pt;}
.y2_c01299{bottom:51.232000pt;}
.y1_c01299{bottom:69.152000pt;}
.y33_c01299{bottom:130.112000pt;}
.y32_c01299{bottom:148.506667pt;}
.y31_c01299{bottom:166.906667pt;}
.y30_c01299{bottom:185.306667pt;}
.y2f_c01299{bottom:203.706667pt;}
.y2e_c01299{bottom:222.106667pt;}
.y2d_c01299{bottom:240.506667pt;}
.y2c_c01299{bottom:258.946667pt;}
.y2b_c01299{bottom:277.346667pt;}
.y2a_c01299{bottom:295.746667pt;}
.y29_c01299{bottom:314.146667pt;}
.y28_c01299{bottom:332.546667pt;}
.y27_c01299{bottom:350.946667pt;}
.y26_c01299{bottom:369.346667pt;}
.y25_c01299{bottom:387.906667pt;}
.y24_c01299{bottom:406.146667pt;}
.y23_c01299{bottom:424.706667pt;}
.y22_c01299{bottom:442.946667pt;}
.y21_c01299{bottom:461.346667pt;}
.y20_c01299{bottom:479.746667pt;}
.y1f_c01299{bottom:498.146667pt;}
.y1e_c01299{bottom:516.573333pt;}
.y1d_c01299{bottom:535.133333pt;}
.y1c_c01299{bottom:553.373333pt;}
.y1b_c01299{bottom:571.933333pt;}
.y1a_c01299{bottom:590.333333pt;}
.y19_c01299{bottom:608.573333pt;}
.y18_c01299{bottom:626.973333pt;}
.y17_c01299{bottom:645.373333pt;}
.y16_c01299{bottom:663.773333pt;}
.y15_c01299{bottom:682.173333pt;}
.y14_c01299{bottom:700.733333pt;}
.y13_c01299{bottom:718.973333pt;}
.y12_c01299{bottom:737.373333pt;}
.y11_c01299{bottom:755.973333pt;}
.y10_c01299{bottom:774.373333pt;}
.yf_c01299{bottom:792.613333pt;}
.ye_c01299{bottom:811.013333pt;}
.yd_c01299{bottom:829.413333pt;}
.yc_c01299{bottom:847.813333pt;}
.yb_c01299{bottom:866.213333pt;}
.ya_c01299{bottom:884.613333pt;}
.y9_c01299{bottom:903.173333pt;}
.y8_c01299{bottom:921.573333pt;}
.y7_c01299{bottom:939.813333pt;}
.y6_c01299{bottom:958.373333pt;}
.y5_c01299{bottom:976.773333pt;}
.y4_c01299{bottom:995.013333pt;}
.y3_c01299{bottom:1013.440000pt;}
.h2_c01299{height:44.648750pt;}
.h3_c01299{height:57.375000pt;}
.h4_c01299{height:57.781250pt;}
.h0_c01299{height:1122.560000pt;}
.h1_c01299{height:1122.666667pt;}
.w0_c01299{width:793.760000pt;}
.w1_c01299{width:794.000000pt;}
.x0_c01299{left:0.000000pt;}
.x1_c01299{left:113.472000pt;}
}





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

.ir_c01300:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01300;src:url('chunks/assets/font_94ea8845d806fd7339b38932.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01300;src:url('chunks/assets/font_04fdc548dff320bd36ec49a2.woff2')format("woff");}.ff2_c01300{font-family:ff2_c01300;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01300;src:url('chunks/assets/font_b786c7cf0906df0011f84aec.woff2')format("woff");}.ff3_c01300{font-family:ff3_c01300;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01300;src:url('chunks/assets/font_6e65e501734cc4467e7d47b3.woff2')format("woff");}.ff4_c01300{font-family:ff4_c01300;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01300{vertical-align:0.000000px;}
.ls1_c01300{letter-spacing:0.000000px;}
.ls0_c01300{letter-spacing:0.256200px;}
.sc__c01300{text-shadow:none;}
.sc0_c01300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01300{-webkit-text-stroke:0px transparent;}
.sc0_c01300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01300{word-spacing:-20.016000px;}
.ws0_c01300{word-spacing:-15.226440px;}
.ws2_c01300{word-spacing:0.000000px;}
._5_c01300{margin-left:-4.429259px;}
._4_c01300{margin-left:-3.312000px;}
._0_c01300{margin-left:-1.183572px;}
._3_c01300{width:1.008000px;}
._6_c01300{width:2.251596px;}
._2_c01300{width:4.536000px;}
._1_c01300{width:5.616000px;}
._d_c01300{width:8.352000px;}
._7_c01300{width:9.360000px;}
._8_c01300{width:10.596000px;}
._a_c01300{width:15.552000px;}
._9_c01300{width:16.560000px;}
._b_c01300{width:26.640000px;}
._c_c01300{width:28.531572px;}
._e_c01300{width:844.140000px;}
.fc0_c01300{color:rgb(0,0,0);}
.fs0_c01300{font-size:66.240000px;}
.fs1_c01300{font-size:72.000000px;}
.y0_c01300{bottom:0.000000px;}
.y2_c01300{bottom:57.636000px;}
.y1_c01300{bottom:77.796000px;}
.y18_c01300{bottom:681.045000px;}
.y17_c01300{bottom:701.745000px;}
.y16_c01300{bottom:722.445000px;}
.y15_c01300{bottom:743.145000px;}
.y14_c01300{bottom:763.845000px;}
.y13_c01300{bottom:784.545000px;}
.y12_c01300{bottom:805.425000px;}
.y11_c01300{bottom:825.945000px;}
.y10_c01300{bottom:846.645000px;}
.yf_c01300{bottom:867.570000px;}
.ye_c01300{bottom:888.090000px;}
.yd_c01300{bottom:908.790000px;}
.yc_c01300{bottom:929.670000px;}
.yb_c01300{bottom:950.190000px;}
.ya_c01300{bottom:971.070000px;}
.y9_c01300{bottom:991.770000px;}
.y8_c01300{bottom:1012.290000px;}
.y7_c01300{bottom:1033.170000px;}
.y6_c01300{bottom:1053.870000px;}
.y5_c01300{bottom:1092.210000px;}
.y4_c01300{bottom:1115.970000px;}
.y3_c01300{bottom:1139.940000px;}
.h2_c01300{height:50.229844px;}
.h4_c01300{height:64.546875px;}
.h3_c01300{height:75.093750px;}
.h0_c01300{height:1262.880000px;}
.h1_c01300{height:1263.000000px;}
.w0_c01300{width:892.980000px;}
.w1_c01300{width:893.250000px;}
.x0_c01300{left:0.000000px;}
.x2_c01300{left:127.656000px;}
.x1_c01300{left:740.490000px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls1_c01300{letter-spacing:0.000000pt;}
.ls0_c01300{letter-spacing:0.227733pt;}
.ws1_c01300{word-spacing:-17.792000pt;}
.ws0_c01300{word-spacing:-13.534613pt;}
.ws2_c01300{word-spacing:0.000000pt;}
._5_c01300{margin-left:-3.937119pt;}
._4_c01300{margin-left:-2.944000pt;}
._0_c01300{margin-left:-1.052064pt;}
._3_c01300{width:0.896000pt;}
._6_c01300{width:2.001419pt;}
._2_c01300{width:4.032000pt;}
._1_c01300{width:4.992000pt;}
._d_c01300{width:7.424000pt;}
._7_c01300{width:8.320000pt;}
._8_c01300{width:9.418667pt;}
._a_c01300{width:13.824000pt;}
._9_c01300{width:14.720000pt;}
._b_c01300{width:23.680000pt;}
._c_c01300{width:25.361398pt;}
._e_c01300{width:750.346667pt;}
.fs0_c01300{font-size:58.880000pt;}
.fs1_c01300{font-size:64.000000pt;}
.y0_c01300{bottom:0.000000pt;}
.y2_c01300{bottom:51.232000pt;}
.y1_c01300{bottom:69.152000pt;}
.y18_c01300{bottom:605.373333pt;}
.y17_c01300{bottom:623.773333pt;}
.y16_c01300{bottom:642.173333pt;}
.y15_c01300{bottom:660.573333pt;}
.y14_c01300{bottom:678.973333pt;}
.y13_c01300{bottom:697.373333pt;}
.y12_c01300{bottom:715.933333pt;}
.y11_c01300{bottom:734.173333pt;}
.y10_c01300{bottom:752.573333pt;}
.yf_c01300{bottom:771.173333pt;}
.ye_c01300{bottom:789.413333pt;}
.yd_c01300{bottom:807.813333pt;}
.yc_c01300{bottom:826.373333pt;}
.yb_c01300{bottom:844.613333pt;}
.ya_c01300{bottom:863.173333pt;}
.y9_c01300{bottom:881.573333pt;}
.y8_c01300{bottom:899.813333pt;}
.y7_c01300{bottom:918.373333pt;}
.y6_c01300{bottom:936.773333pt;}
.y5_c01300{bottom:970.853333pt;}
.y4_c01300{bottom:991.973333pt;}
.y3_c01300{bottom:1013.280000pt;}
.h2_c01300{height:44.648750pt;}
.h4_c01300{height:57.375000pt;}
.h3_c01300{height:66.750000pt;}
.h0_c01300{height:1122.560000pt;}
.h1_c01300{height:1122.666667pt;}
.w0_c01300{width:793.760000pt;}
.w1_c01300{width:794.000000pt;}
.x0_c01300{left:0.000000pt;}
.x2_c01300{left:113.472000pt;}
.x1_c01300{left:658.213333pt;}
}





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

.ir_c01301:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01301;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01301{vertical-align:0.000000px;}
.ls0_c01301{letter-spacing:0.000000px;}
.sc__c01301{text-shadow:none;}
.sc0_c01301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01301{-webkit-text-stroke:0px transparent;}
.sc0_c01301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01301{word-spacing:0.288000px;}
.fc0_c01301{color:rgb(0,0,0);}
.fs0_c01301{font-size:66.240000px;}
.y0_c01301{bottom:0.000000px;}
.y1_c01301{bottom:77.796000px;}
.h2_c01301{height:50.229844px;}
.h0_c01301{height:1262.880000px;}
.h1_c01301{height:1263.000000px;}
.w0_c01301{width:892.980000px;}
.w1_c01301{width:893.250000px;}
.x0_c01301{left:0.000000px;}
.x1_c01301{left:127.656000px;}
@media print{
.v0_c01301{vertical-align:0.000000pt;}
.ls0_c01301{letter-spacing:0.000000pt;}
.ws0_c01301{word-spacing:0.256000pt;}
.fs0_c01301{font-size:58.880000pt;}
.y0_c01301{bottom:0.000000pt;}
.y1_c01301{bottom:69.152000pt;}
.h2_c01301{height:44.648750pt;}
.h0_c01301{height:1122.560000pt;}
.h1_c01301{height:1122.666667pt;}
.w0_c01301{width:793.760000pt;}
.w1_c01301{width:794.000000pt;}
.x0_c01301{left:0.000000pt;}
.x1_c01301{left:113.472000pt;}
}





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

.ir_c01302:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01302;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01302{vertical-align:0.000000px;}
.ls0_c01302{letter-spacing:0.000000px;}
.sc__c01302{text-shadow:none;}
.sc0_c01302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01302{-webkit-text-stroke:0px transparent;}
.sc0_c01302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01302{word-spacing:-0.408000px;}
.fc0_c01302{color:rgb(0,0,0);}
.fs0_c01302{font-size:66.240000px;}
.y0_c01302{bottom:0.000000px;}
.y1_c01302{bottom:77.796000px;}
.h2_c01302{height:50.229844px;}
.h0_c01302{height:1262.880000px;}
.h1_c01302{height:1263.000000px;}
.w0_c01302{width:892.980000px;}
.w1_c01302{width:893.250000px;}
.x0_c01302{left:0.000000px;}
.x1_c01302{left:740.490000px;}
@media print{
.v0_c01302{vertical-align:0.000000pt;}
.ls0_c01302{letter-spacing:0.000000pt;}
.ws0_c01302{word-spacing:-0.362667pt;}
.fs0_c01302{font-size:58.880000pt;}
.y0_c01302{bottom:0.000000pt;}
.y1_c01302{bottom:69.152000pt;}
.h2_c01302{height:44.648750pt;}
.h0_c01302{height:1122.560000pt;}
.h1_c01302{height:1122.666667pt;}
.w0_c01302{width:793.760000pt;}
.w1_c01302{width:794.000000pt;}
.x0_c01302{left:0.000000pt;}
.x1_c01302{left:658.213333pt;}
}





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

.ir_c01303:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01303;src:url('chunks/assets/font_0b8acf75f4f449e61ffe621e.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01303{vertical-align:0.000000px;}
.ls0_c01303{letter-spacing:0.000000px;}
.sc__c01303{text-shadow:none;}
.sc0_c01303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01303{-webkit-text-stroke:0px transparent;}
.sc0_c01303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01303{word-spacing:0.288000px;}
.fc0_c01303{color:rgb(0,0,0);}
.fs0_c01303{font-size:66.240000px;}
.y0_c01303{bottom:0.000000px;}
.y1_c01303{bottom:77.796000px;}
.h2_c01303{height:50.229844px;}
.h0_c01303{height:1262.880000px;}
.h1_c01303{height:1263.000000px;}
.w0_c01303{width:892.980000px;}
.w1_c01303{width:893.250000px;}
.x0_c01303{left:0.000000px;}
.x1_c01303{left:127.656000px;}
@media print{
.v0_c01303{vertical-align:0.000000pt;}
.ls0_c01303{letter-spacing:0.000000pt;}
.ws0_c01303{word-spacing:0.256000pt;}
.fs0_c01303{font-size:58.880000pt;}
.y0_c01303{bottom:0.000000pt;}
.y1_c01303{bottom:69.152000pt;}
.h2_c01303{height:44.648750pt;}
.h0_c01303{height:1122.560000pt;}
.h1_c01303{height:1122.666667pt;}
.w0_c01303{width:793.760000pt;}
.w1_c01303{width:794.000000pt;}
.x0_c01303{left:0.000000pt;}
.x1_c01303{left:113.472000pt;}
}




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